/*
 * Section: Front storefront
 * Used by: templates/front-layout-home.html and templates/front-layout-inner-page.html
 * Purpose: storefront pages, category filters, banners, product cards, footer/header styling
 */
@charset "ISO-8859-1";

body{
    font-family: 'Roboto', sans-serif;

}



<!-- Nav Bar -->
.navbar {
    min-height: 80px;
}

.navbar-brand {
    padding: 0 15px;
    height: 80px;
    line-height: 80px;
}

.navbar-toggle {
    /* (80px - button height 34px) / 2 = 23px */
    margin-top: 23px;
    padding: 9px 10px !important;
}

@media (min-width: 768px) {
    .navbar-nav > li > a {
        /* (80px - line-height of 27px) / 2 = 26.5px */
        padding-top: 26.5px;
        padding-bottom: 26.5px;
        line-height: 27px;
    }
}


.banner{
    background: url(/img/slide-1.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 300px;

}

.review-inline-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0.85rem 0 1rem;
}

.review-star-row,
.review-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: #f59f00;
}

.review-star-row .bi,
.review-card-rating .bi {
    font-size: 1rem;
}

.product-rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: #fff7e6;
    border: 1px solid #f2d5a3;
    border-radius: 999px;
    font-size: 0.92rem;
    color: #7a4c00;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
    color: #6c757d;
}

.review-summary-panel,
.review-form-card,
.review-list-shell,
.customer-review-editor {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.review-summary-panel {
    background: linear-gradient(135deg, #fff7e6 0%, #ffffff 100%);
    border-color: #f1d8a9;
}

.review-average-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-average-score {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #a35a00;
}

.review-breakdown-row {
    display: grid;
    grid-template-columns: 72px 1fr 42px;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.85rem;
}

.review-breakdown-label,
.review-breakdown-count,
.review-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.review-breakdown-progress {
    height: 0.55rem;
    border-radius: 999px;
    background: #f1f3f5;
}

.review-breakdown-progress .progress-bar {
    border-radius: 999px;
}

.review-recommendation {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1e5ca;
    color: #5c3d00;
}

.review-form-heading {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.review-form-stack .form-control,
.review-form-stack .form-select {
    border-radius: 14px;
}

.review-form-stack textarea {
    min-height: 120px;
    resize: vertical;
}

.star-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.35rem;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.8rem;
    color: #ced4da;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #f59f00;
    transform: translateY(-1px);
}

.review-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #effaf5;
    color: #157347;
    border: 1px solid rgba(21, 115, 71, 0.18);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.review-empty-state,
.review-gate-state,
.review-editor-lock,
.review-empty-note {
    border: 1px dashed #d0d7de;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    background: #f8f9fa;
    color: #495057;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #6ea8fe);
    color: #ffffff;
    font-weight: 700;
}

.public-review-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid #ece4d3;
    border-radius: 22px;
    padding: 1.25rem;
}

.review-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.45rem;
}

.customer-review-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .review-summary-panel,
    .review-form-card,
    .review-list-shell,
    .customer-review-editor {
        padding: 1.1rem;
        border-radius: 20px;
    }

    .review-average-score {
        font-size: 2.45rem;
    }

    .review-breakdown-row {
        grid-template-columns: 62px 1fr 36px;
        gap: 0.5rem;
    }

    .star-rating-input label {
        font-size: 1.55rem;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* regular */
    color: #282828;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.8px;
    background-color:#f0f2f5;
}

.vendor-shell__sidebar {
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding-right: 0.25rem;
    scrollbar-gutter: stable;
}

.vendor-shell__sidebar::-webkit-scrollbar {
    width: 0.45rem;
}

.vendor-shell__sidebar::-webkit-scrollbar-thumb {
    background: rgba(108, 117, 125, 0.45);
    border-radius: 999px;
}

.vendor-shell__sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.vendor-shell__content {
    min-width: 0;
}

.vendor-sidebar-menu {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.vendor-sidebar-menu .card-header {
    padding: 1rem 1.1rem;
    color: #495057;
}

.vendor-sidebar-menu .list-group-item {
    padding: 0;
    border-color: #eef1f4;
}

.vendor-sidebar-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.1rem;
    color: #343a40;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.vendor-sidebar-menu .nav-link i {
    font-size: 1rem;
    color: #cd0c2b;
}

.vendor-sidebar-menu .nav-link:hover,
.vendor-sidebar-menu .nav-link:focus {
    background: #fff1f3;
    color: #b42336;
}

@media (max-width: 991.98px) {
    .vendor-shell__sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

/* Category dropdown button */
#dr-menu button {
    background: #fed700;
    border-color: transparent;
    color: #222;
    font-size: 14px;
    font-family: 'Roboto', sans-serif; /* Use Roboto */
    font-weight: 500; /* Medium weight */
    padding: 12px 15px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 50px;
}

/* Navbar */
.navbar-custom {
    height: 60px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif; /* Use Roboto */
    font-weight: 500; /* Medium weight */
    transition: all 0.3s ease-in-out;
    padding: 0 0 0 0;
}

/* Navbar links */
.navbar-custom .nav-link {
    color: #fff; /* default white */
    transition: color 0.3s ease-in-out; /* smooth color transition */
}

/* Hover effect */
.navbar-custom .nav-link:hover {
    color: #fed700!important; /* yellow on hover */
}
.custom-icon {
    font-size: 15px; /* increase size */
    color: #222;        /* icon color */
    font-weight: 500;   /* this will NOT affect the icon's thickness */
}

/* Category dropdown on hover (desktop only) */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
.breadcrumb_section{
    background-color: #F1F1F1;
}

/*// featured category frot page */
.featured-cat-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* Snap effect */
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.featured-cat-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.featured-cat-item {
    flex-shrink: 0;
    width: 120px; /* adjust as needed */
    scroll-snap-align: start;
}

.featured-cat-img {
    width: 100px;
    height: 100px;
    border: 3px solid #ddd;
    transition: all 0.3s ease-in-out;
}
.featured-cat-img:hover {
    border-color: #bb2d3b;
}

.featured-cat-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #222;

    transition: color 0.3s ease-in-out;
}
.featured-cat-text:hover {
    color: #bb2d3b;
}

/* Scroll arrows */
.featured-cat-prev, .featured-cat-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}
.featured-cat-prev {
    left: 0;
}
.featured-cat-next {
    right: 0;
}
.featured-cat-prev:hover, .featured-cat-next:hover {
    background: rgba(254,215,0,0.9);
}

.featured-cat-carousel.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

/* Responsive: 1 row on mobile */
@media (max-width: 576px) {
    .featured-cat-carousel {
        grid-template-rows: 1fr;
    }
}
.section_title {
    font-weight: 600;
    font-size: 1.2rem;
}

.featured-cat-container .btn span {
    color: red;          /* arrows always red */
    transition: transform 0.2s ease;
}

.featured-cat-container .btn:hover span {
    transform: scale(1.2);
}
/*end feature cat*/


/*section title*/

.section_title{
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    margin: 0 20px;
    margin-top: 10px;
    margin-bottom: 2px;
    font-weight: 600;

}

.section-title-square {
    display: inline-block;
    width: 18px;           /* size of the square */
    height: 18px;
    background-color: #cd0c2b;
    margin-right: 8px;     /* space between square and text */
    vertical-align: middle;
    border-radius: 2px;    /* optional: slightly rounded corners */
}

/*banner effect*/



.banner-effect {
    position: relative;
    overflow: hidden;
    display: block;
}

.banner-effect a {
    display: block;
    position: relative;
    z-index: 0;
}

.banner-effect a::before,
.banner-effect a::after {
    background-color: rgba(229, 229, 229, 0.6);
    content: "";
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    transition: all 0.9s ease 0s;
    width: 100%;
    z-index: 1;
}

.banner-effect a::before {
    border-top: 1px solid rgba(229, 229, 229, 0.6);
    transform: translate(0%, 105%);
}

.banner-effect a::after {
    border-bottom: 1px solid rgba(229, 229, 229, 0.6);
    transform: translate(0%, -105%);
}

.banner-effect:hover a::before,
.banner-effect:hover a::after {
    opacity: 0;
    transform: translate(0px, 0px);
}


.trending-products .nav-pills .nav-link {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #333;
}

.trending-products .nav-pills .nav-link.active {
    background-color: #dc3545; /* active bg */
    color: #fff;               /* active text */
}
/*category title*/




/* Style dropdown category items */
.main-category .dropdown-item {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    position: relative;
    padding-left: 2.5rem; /* space for prefix box */
    border-bottom: 1px solid #f8d7da; /* light red bottom border */
}

/* Prefix square box */
.main-category .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid #cd0c2b; /* red border */
    border-radius: 0px;     /* square with slightly rounded corners */
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Red center dot inside the box */
.main-category .dropdown-item::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #cd0c2b;
    border-radius: 0%; /* circle */
    margin-left: 4px;   /* center inside box */
}

/* 🔹 Hover effect */
.dropdown-item:hover {
    color: #dc3545;
    border-bottom-color: #dc3545;
}

.dropdown-item:hover::before {
    border-color: #a71d2a; /* darker red */
}

.dropdown-item:hover::after {
    background: #a71d2a; /* darker red dot */
}


/*leftside category */


.categoryTitle{
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    margin-top: 10px;
    margin-bottom: 2px;
    font-weight: 600;
}


.categoryTitle-title-square {
    display: inline-block;
    width: 18px;           /* size of the square */
    height: 18px;
    background-color: #cd0c2b;
    margin-right: 8px;     /* space between square and text */
    vertical-align: middle;
    border-radius: 2px;    /* optional: slightly rounded corners */
}


.categorySidebar .category-list li {
    position: relative;
    border-bottom: 1px solid #f8d7da; /* light red bottom border */
    padding: 8px 0 8px 2.5rem; /* space for prefix box */
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    list-style: none;
}

.categorySidebar .category-list li a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

/* Prefix square box */
.categorySidebar .category-list li::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid #cd0c2b; /* red border */
    border-radius: 0px;  /* square */
    background-color: transparent;
}

/* Red center dot */
.categorySidebar .category-list li::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #cd0c2b;
    margin-left: 4px; /* to center inside box */
}

/* Hover effects */
.categorySidebar .category-list li:hover a {
    color: #dc3545;
}

.categorySidebar .category-list li:hover {
    border-bottom-color: #dc3545;
}

.categorySidebar .category-list li:hover::before {
    border-color: #a71d2a; /* darker red */
}

.categorySidebar .category-list li:hover::after {
    background: #a71d2a; /* darker red dot */
}

.categorySidebar .category-list li.active {
    border-bottom-color: #dc3545;
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.10), rgba(255, 255, 255, 0));
}

.categorySidebar .category-list li.active a {
    color: #dc3545;
    font-weight: 600;
}

.categorySidebar .category-list li.active::before {
    border-color: #dc3545;
}

.categorySidebar .category-list li.active::after {
    background: #dc3545;
}

.category-layout-sidebar {
    display: grid;
    gap: 1rem;
}

.category-panel {
    border-radius: 18px;
    overflow: hidden;
}

.category-panel .card-header {
    padding: 1rem 1.25rem 0.75rem;
}

.category-panel .card-body {
    padding: 1rem 1.25rem 1.25rem;
}

.category-filter-offcanvas {
    background: transparent;
}

.category-filter-offcanvas .offcanvas-header {
    background: #fff;
}

.category-filter-form {
    display: grid;
    gap: 1rem;
}

.filter-group {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1d1d6;
}

.filter-group:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.filter-label {
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5f6874;
    font-weight: 700;
}

.filter-range-caption {
    font-size: 0.78rem;
    color: #6c757d;
}

.filter-panel-hint {
    font-size: 0.78rem;
    color: #6c757d;
}

.filter-choice-list {
    display: grid;
    gap: 0.55rem;
}

.filter-choice-list-inline {
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
}

.filter-choice {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 0.8rem;
    border: 1px solid #e7e9ee;
    border-radius: 14px;
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 0.92rem;
}

.filter-choice.compact {
    justify-content: center;
    text-align: center;
}

.filter-choice:hover {
    border-color: #dc3545;
    background: #fff5f6;
}

.filter-choice.active {
    border-color: #dc3545;
    background: #fff1f3;
    box-shadow: 0 10px 24px rgba(220, 53, 69, 0.10);
}

.filter-choice .form-check-input {
    margin: 0;
    accent-color: #dc3545;
}

.filter-switch-list {
    display: grid;
    gap: 0.7rem;
}

.filter-switch {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.2rem 0;
    cursor: pointer;
}

.filter-switch .form-check-input {
    margin: 0;
    accent-color: #dc3545;
}

.filter-clear-link {
    text-decoration: none;
    font-size: 0.8rem;
}

.filter-actions {
    display: grid;
    gap: 0.75rem;
}

.category-loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: #fff4f5;
    color: #b42336;
    font-size: 0.88rem;
    font-weight: 600;
}

.htmx-indicator {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.htmx-request.htmx-indicator,
.htmx-request .htmx-indicator {
    opacity: 1;
    visibility: visible;
}

.category-toolbar-card {
    border-radius: 20px;
}

.category-toolbar-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.toolbar-meta {
    color: #6c757d;
    font-size: 0.95rem;
}

.toolbar-actions .form-select,
.toolbar-actions .btn {
    min-width: 180px;
}

.filter-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: #fff1f3;
    color: #b42336;
    font-size: 0.88rem;
    font-weight: 600;
}

.subcategory-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.subcategory-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c757d;
    font-weight: 700;
}

.subcategory-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #f2c3cc;
    color: #7a1f2f;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s ease;
}

.subcategory-pill:hover,
.subcategory-pill.active {
    border-color: #dc3545;
    background: #dc3545;
    color: #fff;
}

.product-grid-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf1f5 !important;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12) !important;
}

.product-grid-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    background:
            radial-gradient(circle at top left, rgba(255, 232, 204, 0.95), rgba(255, 255, 255, 0) 50%),
            linear-gradient(180deg, #fff8ef 0%, #ffffff 82%);
    padding: 1.35rem 1.25rem 1.1rem;
    text-align: center;
    border-bottom: 1px solid #f1f3f5;
}

.product-grid-image {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s ease;
}

.product-grid-card:hover .product-grid-image {
    transform: scale(1.03);
}

.product-grid-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem 1.1rem 0.95rem;
}

.product-discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.product-status-badge-stack {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: grid;
    gap: 0.45rem;
}

.product-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
}

.product-status-badge.preorder {
    background: #f59e0b;
}

.product-grid-brand {
    margin-bottom: 0.2rem;
    color: #6c757d;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.product-grid-title {
    color: #1f2937;
    text-decoration: none;
    font-size: 0.98rem;
    line-height: 1.5;
    font-weight: 600;
    min-height: 3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.product-grid-title:hover {
    color: #dc3545;
}

.product-grid-price-stack {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid #f1f3f5;
}

.product-grid-price {
    font-size: 1.2rem;
    color: #c21f32;
    font-weight: 700;
}

.product-grid-price-old {
    margin-top: 0.2rem;
    color: #8c97a5;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.product-grid-card .card-footer {
    padding: 0 1.1rem 1.15rem;
}

.product-grid-card .card-footer .btn {
    border-radius: 999px;
    font-weight: 600;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.product-grid-empty {
    border-radius: 20px;
}

@media (min-width: 992px) {
    .category-layout-sidebar {
        position: sticky;
        top: 1.5rem;
    }

    .category-filter-offcanvas {
        position: static;
        visibility: visible;
        transform: none;
        border: 0;
    }

    .category-filter-offcanvas .offcanvas-body {
        overflow: visible;
    }
}

@media (max-width: 991.98px) {
    .category-filter-offcanvas {
        width: min(92vw, 360px);
        background: #f7f8fb;
    }

    .category-filter-offcanvas .offcanvas-body {
        overflow-y: auto;
    }

    .category-layout-sidebar {
        padding: 1rem;
    }

    .toolbar-actions .form-select,
    .toolbar-actions .btn {
        min-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .product-grid-media {
        min-height: 220px;
        padding: 1rem 0.9rem 0.85rem;
    }

    .product-grid-image {
        max-width: 180px;
        height: 180px;
    }

    .category-panel .card-body,
    .category-panel .card-header,
    .category-toolbar-card .card-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.support-box{
    margin-bottom: 24px;
    padding: 15px;
    background-color: #f7fafb;
    border-radius: 15px;
    border: 1px solid #eaebeb;



}

.support-box-inner{
    /*	@include ease3;*/
    padding: 30px;
    transition: all 0.3s ease 0s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: #f8d7da;
    border-radius: 15px;
    border: 1px dashed #000;
}




.product-card {
    border: none; /* No border on the card */
    transition: transform 0.2s, box-shadow 0.2s; /* Smooth hover effect */
}
.product-card:hover {
    border: 1px solid #007bff; /* Border color on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}
.badge-custom {
    font-size: 0.75rem;
}
.badge-container {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px; /* Space between badges */
}
.badge-hot {
    transform: rotate(45deg); /* Rotate badge */
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f00; /* Red color for Hot badge */
    color: white; /* Text color */
    padding: 0.5rem 1rem; /* Padding for the badge */
}



.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery a {
    display: block;
    width: 150px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.gallery a:hover {
    transform: scale(1.1);
}
.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Date: 2026-04-26
   Tighten typography on the product details page only.
   The global frontend body letter-spacing is too loose for dense product copy. */
.single-product-page {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: normal;
}

.single-product-page .card-header h5,
.single-product-page .product-summary .fs-5:first-child {
    font-size: 1.5rem !important;
    line-height: 1.35;
    letter-spacing: normal;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.single-product-page .product-summary,
.single-product-page .product-info-sidebar,
.single-product-page .product-detail-tabs,
.single-product-page .product-detail-tabs p,
.single-product-page .product-detail-tabs li,
.single-product-page .product-info-sidebar p,
.single-product-page .product-info-sidebar li,
.single-product-page .product-summary p,
.single-product-page .product-summary li,
.single-product-page .product-summary label,
.single-product-page .product-summary div,
.single-product-page .product-info-sidebar div {
    line-height: 1.6;
    letter-spacing: normal;
}

.single-product-page .product-summary p,
.single-product-page .product-info-sidebar p,
.single-product-page .product-detail-tabs p,
.single-product-page .product-info-sidebar li,
.single-product-page .product-detail-tabs li {
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}

.single-product-page .product-summary .fs-6,
.single-product-page .product-info-sidebar .fs-6 {
    font-size: 1rem !important;
    line-height: 1.45;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.single-product-page #productTabs {
    margin: 2rem 0 1rem !important;
}

.single-product-page #productTabs .nav-link {
    font-size: 0.98rem;
    line-height: 1.35;
    letter-spacing: normal;
    padding: 0.8rem 1.1rem;
}

.single-product-page .product-card .card-body,
.single-product-page .product-card .card-title,
.single-product-page .product-card .card-title p,
.single-product-page .product-card .btn {
    letter-spacing: normal;
    line-height: 1.45;
}

.single-product-page .product-card .card-title p {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    .single-product-page {
        font-size: 14px;
        line-height: 1.55;
    }

    .single-product-page .card-header h5,
    .single-product-page .product-summary .fs-5:first-child {
        font-size: 1.2rem !important;
    }

    .single-product-page .product-summary p,
    .single-product-page .product-info-sidebar p,
    .single-product-page .product-detail-tabs p {
        font-size: 0.95rem;
    }

    .single-product-page #productTabs .nav-link {
        font-size: 0.92rem;
        padding: 0.7rem 0.85rem;
    }
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 8, 2020, 1:36:10 PM
    Author     : User
*/




.body{font-family:'Roboto', sans-serif;
      font-size: 11px;}


.apps_title{height:48px;
            padding: 5px;
            margin-bottom: 10px;

            position: fixed; /* Set the navbar to fixed position */
            top: 0; /* Position the navbar at the top of the page */
            width: 100%; /* Full width */

            z-index: 100;
}


.apps_bottom_nav{

    height:48px;
    padding: 5px;
    position: fixed; /* Set the navbar to fixed position */
    bottom: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */

    z-index: 100; 
    font-size: 12px;

}
.mobile{
    
/*    //*/
    
}
.mobile h1{font-size: 24px;}

.mobile h2{font-size: 20px;}

.mobile h3{font-size: 16px;}
.mobile h4{font-size: 14px;}
.mobile h5{font-size: 12px;}

.mobile h6{font-size: 9px;}

.mobile p{font-size: 14px;}


.mobile_home_box_effect_count{

    -webkit-box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    -moz-box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;


}


.mobile_home_box_effect{

    -webkit-box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    -moz-box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    min-height: 80px;
    padding: 5px;

}


.mobile_effect7
{
    position:relative;
    -webkit-box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    -moz-box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    box-shadow:0 1px 6px 0 rgba(32,33,36,0.28) ;
    min-height: 300px;
}



.front_side_menu{
/*    visibility:hidden;*/
    height: 100%; /* 100% Full-height */
    width: 0px; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 300; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #fff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}




.front_side_menu .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}



.student_menu{
    height: 100%; /* 100% Full-height */
    width: 0px; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 400; /* Stay on top */
    top: 0; /* Stay at the top */
    right: 0;
    background-color: #fff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}




.student_menu .student_closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}





/*
 * Shared storefront fragment classes moved out of HTML.
 * Used by: templates/front-header.html and templates/front-footer.html
 */
.storefront-topbar {
    font-size: 12px;
}

.storefront-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.storefront-cart-dropdown-menu {
    min-width: 350px;
}

.storefront-main-nav {
    background-color: #cd0c2b;
}

.storefront-footer-top {
    background-color: #F8F8F8;
    padding: 50px 0 10px;
    border-top: 4px solid #e1e1e1;
}

.storefront-footer-headset-icon {
    font-size: 3rem;
}

.storefront-footer-bottom {
    min-height: 50px;
    padding-top: 15px;
}

.facebook-pixel-fallback {
    display: none;
}
