/**
 * Legacy global styles. Do not add new rules here.
 * New UI: use Tailwind or CSS modules. See docs/FRONTEND_STACK.md.
 */
/* Project font from public/font */
@font-face {
  font-family: "Canva Sans";
  src: url("/font/Canva-Sans-Regular.ttf.eot");
  src: url("/font/Canva-Sans-Regular.ttf.woff") format("woff"),
       url("/font/Canva-Sans-Regular.ttf.svg#Canva-Sans-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.page-loading-logo {
    width: auto;
    object-fit: contain;
    max-height: 56px;
    animation: page-loading-logo-pulse 1.2s ease-in-out infinite;
}

#spinner .page-loading-logo {
    max-height: 80px;
}

@keyframes page-loading-logo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
.need-help-whatsapp {
    width: auto;
    height: auto;
    min-height: 45px;
    padding: 0.6rem 1rem;
    border-radius: 0;
}

/*** Primary / badge color override ***/
.text-primary {
    color: #eaac00 !important;
}

.border-primary {
    border-color: #eaac00 !important;
}

.bg-primary.text-white,
.bg-primary .text-white {
    color: var(--bs-white) !important;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

/* Badge for "Established 1999" */
.badge-established-1999 {
    display: inline-block;
    background-color: #eaac00;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.btn.btn-primary {
    background: #eaac00 !important;
    border-color: #eaac00 !important;
    color: var(--bs-white) !important;
    font-family: "Canva Sans", sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: #eaac00 !important;
    border-color: #eaac00 !important;
    color: var(--bs-white);
}

.btn.btn-secondary {
    background: #eaac00 !important;
    border: 1px solid #eaac00 !important;
    color: var(--bs-white);
    font-family: "Canva Sans", sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    background: #eaac00 !important;
    border-color: #eaac00 !important;
    color: var(--bs-white);
}

/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}

/* White header: mobile layout (logo left, icons right; search in grey bar) */
@media (max-width: 992px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    /* White header bar: always visible (no d-none), constrained to viewport */
    .header-white-bar,
    .container-fluid.px-5.py-4.header-white-bar {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1.5rem 0.75rem !important;
        min-height: 88px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        background-color: #fff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .header-white-bar .row,
    .header-white-bar .header-white-row {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0.5rem !important;
        min-width: 0 !important;
        position: relative !important;
    }
    /* Left spacer so logo can be centered and icons stay right */
    .header-white-bar .header-white-row::before {
        content: '' !important;
        flex: 1 1 0% !important;
        min-width: 0 !important;
        order: -1;
    }
    /* Logo column: no width so it doesn't take space; logo content is positioned from row */
    .header-white-bar .header-white-logo,
    .header-white-logo {
        position: static !important;
        flex: 0 0 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        overflow: visible !important;
        text-align: left !important;
    }
    /* Logo content: align to left on mobile */
    .header-white-bar .header-white-logo .d-inline-flex {
        position: absolute !important;
        left: 0 !important;
        transform: none !important;
        top: 0 !important;
        bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .header-white-bar .header-white-logo .navbar-brand,
    .header-white-bar .header-white-logo img,
    .header-white-logo .navbar-brand,
    .header-white-logo img {
        max-width: 100% !important;
        height: auto !important;
    }
    /* Hide search in white header on mobile (search is in grey bar) */
    .header-white-bar .header-white-search,
    .header-white-bar .col-md-4:nth-child(2) {
        display: none !important;
    }
    /* Force cart + fav icons column visible on mobile (override any Bootstrap display/visibility) */
    body .header-white-bar .header-white-icons,
    body .header-white-bar .col-md-4.header-white-icons,
    .header-white-bar .header-white-icons,
    .header-white-icons,
    .header-white-bar .col-md-4.header-white-icons {
        display: flex !important;
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        margin-left: auto !important;
        padding: 0 !important;
        max-width: 80px !important;
        min-width: 72px !important;
        box-sizing: border-box !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .header-white-bar .header-white-icons .d-inline-flex {
        display: inline-flex !important;
        visibility: visible !important;
    }
    .header-white-bar .header-white-icons.d-none,
    .header-white-bar .header-white-icons.d-lg-block {
        display: flex !important;
    }
    .header-white-bar .header-white-icons a,
    .header-white-bar .header-white-icons .rounded-circle,
    body .header-white-bar .header-white-icons a {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    /* Smaller header icons on mobile so they fit in viewport */
    .header-white-bar .header-white-icons .btn-md-square,
    .header-white-bar .header-white-icons .rounded-circle.border {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
    }
    .header-white-bar .header-white-icons .btn-md-square i,
    .header-white-bar .header-white-icons .rounded-circle i {
        font-size: 0.75rem !important;
    }
    .header-white-bar .header-white-icons a,
    .header-white-bar .header-white-icons a .rounded-circle,
    .header-white-bar .header-white-icons i {
        color: #6c757d !important;
    }
    .header-white-bar .header-white-icons a.me-3,
    .header-white-bar .header-white-icons a.me-2 {
        margin-right: 0.35rem !important;
    }
    .header-white-bar .header-white-icons .d-inline-flex {
        gap: 0.25rem;
    }
    .header-white-bar .row {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    /* Icons column stays right; logo column is out of flow (absolute) so no flex needed */
    .header-white-bar .col-md-4:last-child,
    .header-white-bar .col-md-4.header-white-icons {
        flex: 0 0 auto !important;
        max-width: none !important;
    }
    .header-white-bar .col-md-4:first-child {
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        flex: 0 0 0 !important;
        min-width: 0 !important;
        width: 0 !important;
        overflow: visible !important;
    }
    .header-white-bar .col-md-4:last-child {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .header-white-bar .row .col-md-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .header-white-bar .d-flex.rounded-pill {
        max-width: 100%;
        margin: 0.5rem 0;
    }
    .header-white-bar .form-select {
        min-width: 100px;
    }
    .nav-bar-mobile-row {
        align-items: center;
    }
    .nav-bar-mobile-search {
        align-self: center;
        flex-shrink: 1;
        min-width: 0;
    }
    /* Hide logo in grey nav bar on mobile (logo is in white header above) */
    .nav-bar .navbar .navbar-brand.d-lg-none {
        display: none !important;
    }
    .nav-bar .row.bg-primary,
    .nav-bar .navbar.bg-primary {
        min-height: 44px !important;
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }
    .nav-bar-mobile-row {
        display: flex !important;
        align-items: flex-start;
        flex-wrap: nowrap;
    }
}

/* Extra-small: keep white header icons inside viewport */
@media (max-width: 576px) {
    .header-white-bar,
    .container-fluid.px-5.py-4.header-white-bar {
        padding: 1.5rem 0.5rem !important;
        min-height: 84px !important;
    }
    .header-white-bar .header-white-icons,
    .header-white-bar .col-md-4.header-white-icons {
        max-width: 72px !important;
    }
}

/* Mobile search bar: small, left of hamburger */
/* Grey bar mobile search: same as desktop (input + category + button) but smaller to fit */
.nav-bar-mobile-search .btn-primary,
.nav-bar-mobile-search .nav-bar-mobile-search-btn {
    background-color: #eaac00 !important;
    border-color: #eaac00 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding: 0.35rem 0.6rem !important;
    font-size: 0.8rem !important;
}
.nav-bar-mobile-search .btn-primary:hover,
.nav-bar-mobile-search .nav-bar-mobile-search-btn:hover {
    background-color: #eaac00 !important;
    border-color: #eaac00 !important;
}
.nav-bar-mobile-search-inner {
    max-width: 100%;
    min-height: 30px;
    align-items: center;
    border-radius: 6px !important;
}
.nav-bar-mobile-search .form-control,
.nav-bar-mobile-search .nav-bar-mobile-search-input {
    border-radius: 0 !important;
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}
.nav-bar-mobile-search .nav-bar-mobile-search-btn {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}
.nav-bar-mobile-search .form-control,
.nav-bar-mobile-search .nav-bar-mobile-search-input {
    border: 0 !important;
    padding: 0.25rem 0.4rem !important;
    font-size: 0.8rem !important;
    min-width: 50px !important;
    height: 30px !important;
}
.nav-bar-mobile-search .form-control::placeholder,
.nav-bar-mobile-search .nav-bar-mobile-search-input::placeholder {
    color: #6c757d;
}
.nav-bar-mobile-search .form-select,
.nav-bar-mobile-search .nav-bar-mobile-search-select {
    border: 0 !important;
    border-left: 1px solid rgba(0,0,0,0.1) !important;
    padding: 0.25rem 0.4rem !important;
    font-size: 0.8rem !important;
    width: auto !important;
    min-width: 100px !important;
    max-width: 130px !important;
    height: 30px !important;
}
.nav-bar-mobile-search .btn-primary,
.nav-bar-mobile-search .nav-bar-mobile-search-btn {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.8rem !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
@media (max-width: 992px) {
    .nav-bar-mobile-search-inner {
        min-height: 28px;
    }
    .nav-bar-mobile-search .form-control,
    .nav-bar-mobile-search .nav-bar-mobile-search-input {
        padding: 0.2rem 0.35rem !important;
        font-size: 0.75rem !important;
        min-width: 45px !important;
        height: 28px !important;
    }
    .nav-bar-mobile-search .form-select,
    .nav-bar-mobile-search .nav-bar-mobile-search-select {
        padding: 0.2rem 0.35rem !important;
        font-size: 0.75rem !important;
        min-width: 95px !important;
        max-width: 125px !important;
        height: 28px !important;
    }
    .nav-bar-mobile-search .btn-primary,
    .nav-bar-mobile-search .nav-bar-mobile-search-btn {
        padding: 0.2rem 0.4rem !important;
        font-size: 0.75rem !important;
        height: 28px !important;
    }
}

/* Top banner links: keep each label on one line (e.g. Privacy Policy, Terms and Conditions) */
.header-top-links a {
    white-space: nowrap;
}

/* Desktop: ensure top links column stacks above the adjacent column so Warranty/Delivery stay clickable when they overflow */
@media (min-width: 992px) {
    .site-header .container-fluid.d-lg-block.border-bottom .row .col-lg-4:first-child {
        position: relative;
        z-index: 2;
    }
}

/* White header search bar: reduced corners (override rounded-pill) */
.header-white-bar .d-flex.rounded-pill {
    border-radius: 6px !important;
}
.header-white-bar .d-flex.rounded-pill .form-control {
    border-radius: 0 !important;
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}
.header-white-bar .d-flex.rounded-pill .form-select {
    border-radius: 0 !important;
}
.header-white-bar .d-flex.rounded-pill .btn-primary {
    border-radius: 0 !important;
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

/* Desktop: header search bar – smaller corners */
@media (min-width: 992px) {
    .header-white-bar .d-flex.rounded-pill {
        border-radius: 4px !important;
    }
    .header-white-bar .d-flex.rounded-pill .form-control {
        border-top-left-radius: 4px !important;
        border-bottom-left-radius: 4px !important;
    }
    .header-white-bar .d-flex.rounded-pill .btn-primary {
        border-top-right-radius: 4px !important;
        border-bottom-right-radius: 4px !important;
    }
}

/* Remove dropdown arrow from header search category select (white + grey bar) */
.header-white-bar .form-select,
.nav-bar-mobile-search .form-select,
.nav-bar-mobile-search .nav-bar-mobile-search-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: none !important;
}

/* Header search icon button (logo + search bar row) */
.container-fluid.px-5.py-4 .d-flex.rounded-pill .btn.btn-primary {
    background-color: #eaac00 !important;
    border-color: #eaac00 !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.container-fluid.px-5.py-4 .d-flex.rounded-pill .btn.btn-primary:hover {
    background-color: #eaac00 !important;
    border-color: #eaac00 !important;
}

/* Services bar icons (Free Return, Free Shipping, etc.) */
.services-bar {
    background-color: #444444 !important;
}

.services-bar .p-4,
.services-bar .p-4 h6,
.services-bar .p-4 p,
.services-bar .p-4 .text-uppercase {
    color: #fff !important;
}

.services-bar .p-4 i {
    color: #eaac00 !important;
}

.services-bar .p-4 .d-flex.flex-column {
    gap: 1rem;
}

/* Services bar: Alfa Slab One font; title (e.g. FREE RETURN) bold, description normal */
.services-bar .p-4,
.services-bar .p-4 h6,
.services-bar .p-4 p,
.services-bar .p-4 .text-uppercase {
    font-family: "Canva Sans", system-ui, sans-serif !important;
}
.services-bar .p-4 h6,
.services-bar .p-4 .text-uppercase {
    font-weight: 700 !important;
}
/* Description text: use a font that has a light weight so 100 actually shows thinner */
.services-bar .p-4 p,
.services-bar .p-4 .d-flex.flex-column p,
.services-bar .p-4 .mb-0 {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif !important;
    font-weight: 100 !important;
    font-style: normal;
}

.services-bar .border-start,
.services-bar .border-end {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/*** Topbar End ***/


/*** Navbar ***/
.nav-bar.sticky-top {
    z-index: 9999; /* above FAQ sticky sidebar so categories never overlay header */
}
.nav-bar .row.bg-primary,
.nav-bar .navbar.bg-primary {
    background-color: #444444 !important;
}

.nav-bar .navbar .navbar-nav .nav-link {
    color: #fff;
}

.nav-bar .navbar .navbar-nav .nav-link:hover {
    color: #fff;
}

.nav-bar .navbar .navbar-nav .nav-link.active {
    color: #eaac00 !important;
    font-weight: 600;
    border-radius: 0.25rem;
}

.nav-bar .navbar-toggler span {
    color: #fff;
}

.nav-bar .navbar-toggler h4 {
    color: #fff !important;
}

.nav-bar .navbar-toggler h4 i {
    color: #eaac00 !important;
}

.nav-bar .btn.btn-secondary {
    background-color: #eaac00 !important;
    border-color: #eaac00 !important;
    color: #fff !important;
}

.nav-bar .btn.btn-secondary:hover {
    background-color: #eaac00 !important;
    border-color: #eaac00 !important;
    color: #fff !important;
    transform: none;
    box-shadow: none;
}

.nav-bar .categories-bars .categories-bars-item {
    padding: 5px 15px;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    display: flex;
    justify-content: space-between;
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item a,
.nav-bar .categories-bars .categories-bars-item span {
    color: var(--bs-dark);
    transition: 0.5s;
}

.nav-bar .categories-bars .categories-bars-item:hover {
    background: var(--bs-primary);
}

.nav-bar .categories-bars .categories-bars-item:hover a,
.nav-bar .categories-bars .categories-bars-item:hover span {
    color: var(--bs-white);
}

.nav-bar .navbar.navbar-light {
    padding: 0 !important;
}

/* Mobile: search bar flush left, hamburger flush right */
@media (max-width: 991.98px) {
    .nav-bar .nav-bar-mobile-row .nav-bar-mobile-search {
        /* Cancel row px-5 (3rem) so search sits at visual left edge */
        margin-left: -3rem;
        padding-left: 0.5rem; /* minimal padding for tap/readability */
    }
    .nav-bar .nav-bar-mobile-row .navbar {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center;
        /* Cancel row px-5 (3rem) so toggler sits at visual right edge */
        margin-right: -3rem;
    }
    .nav-bar .nav-bar-mobile-row .navbar-toggler {
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 0.5rem 1.25rem; /* equal vertical padding; extra space from right edge */
        border: none !important;
    }
}

.nav-bar .navbar .navbar-nav .nav-link {
    padding: 18px 15px;
    font-weight: 500;
    font-family: "Canva Sans", sans-serif;
    font-size: 17px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .nav-bar .navbar .navbar-nav .nav-link {
        padding: 8px 0px;
    }
}

/* Hamburger menu & dropdown UX on mobile */
@media (max-width: 991.98px) {
    .nav-bar {
        position: relative;
    }
    .nav-bar .navbar-collapse {
        position: fixed;
        top: var(--mobile-menu-top, 120px);
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 0.75rem 1.25rem 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        background-color: #444444 !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        z-index: 999;
        max-height: calc(100vh - var(--mobile-menu-top, 120px));
        overflow-y: auto;
        box-sizing: border-box;
    }
    .nav-bar .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    .nav-bar .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-bar .navbar-nav .nav-item:last-of-type {
        border-bottom: none;
    }
    .nav-bar .navbar-nav .nav-bar-nav-divider {
        border-color: rgba(255, 255, 255, 0.2) !important;
        margin: 0.5rem 0 !important;
        opacity: 1;
    }
    .nav-bar .navbar-nav .nav-link {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1rem;
        transition: background-color 0.2s, color 0.2s;
    }
    .nav-bar .navbar-nav .nav-link:hover,
    .nav-bar .navbar-nav .nav-link:focus {
        background-color: rgba(255, 255, 255, 0.08);
        color: #eaac00;
    }
    .nav-bar .navbar-nav .nav-link.active {
        color: #eaac00 !important;
        font-weight: 600;
    }
    .nav-bar .navbar-nav .dropdown-toggle::after {
        margin-left: 0.5rem;
        transition: transform 0.25s ease;
    }
    .nav-bar .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    .nav-bar .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0;
        padding: 0.25rem 0;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none;
    }
    .nav-bar .navbar-nav .dropdown-item {
        padding: 10px 0 10px 1.25rem;
        font-size: 0.9375rem;
        color: rgba(255, 255, 255, 0.95);
        border-bottom: none;
        min-height: 44px;
        display: flex;
        align-items: center;
        transition: background-color 0.2s, color 0.2s;
    }
    .nav-bar .navbar-nav .dropdown-item:hover,
    .nav-bar .navbar-nav .dropdown-item:focus {
        background: rgba(234, 172, 0, 0.25) !important;
        color: #fff !important;
    }
    .nav-bar .navbar-nav .dropdown-item:active {
        background: rgba(234, 172, 0, 0.35) !important;
    }
    .nav-bar .navbar-nav .categories-bars .categories-bars-item a,
    .nav-bar .navbar-nav .categories-bars .categories-bars-item span {
        padding: 10px 0 10px 1.25rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.9375rem;
    }
    .nav-bar .navbar-nav .categories-bars .categories-bars-item:hover {
        background: rgba(234, 172, 0, 0.25);
    }
    .nav-bar .navbar-collapse .btn.btn-secondary {
        margin-top: 0.75rem;
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 5px 15px;
}

#allCat {
    position: absolute; 
    left: 0; 
    right: 0; 
    top: 51px; 
    z-index: 999; 
    background: var(--bs-light);
}

.nav-bar .navbar-toggler {
    border: none !important;
    border-radius: 5px !important;
    box-shadow: none !important;
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.container-fluid.carousel.bg-light,
.container-fluid.carousel .header-carousel-wrap,
.container-fluid.carousel .header-carousel.bg-light {
    background-color: #fff !important;
}

/* Header carousel – Swiper nav (replaces Owl) */
.header-carousel-wrap .swiper-button-prev,
.header-carousel-wrap .swiper-button-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 87%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaac00 !important;
    border: 1px solid #eaac00;
    color: var(--bs-white);
    transition: 0.5s;
}
.header-carousel-wrap .swiper-button-prev { right: 130px; }
.header-carousel-wrap .swiper-button-next { right: 60px; }
.header-carousel-wrap .swiper-button-prev:hover,
.header-carousel-wrap .swiper-button-next:hover {
    background: #c99700 !important;
    border-color: #c99700;
    color: var(--bs-white);
}
.header-carousel-wrap .swiper-button-prev::after,
.header-carousel-wrap .swiper-button-next::after {
    content: none;
}

/* Images fit within frame, fully visible (object-fit: contain) */
.header-carousel .carousel-img {
    max-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.header-carousel .carousel-img img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    object-position: center;
}

/* Smaller laptops (992px–1199px): keep image left, text + button right */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-carousel .header-carousel-item {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .header-carousel .carousel-img {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .header-carousel .carousel-content {
        flex: 0 0 50%;
        max-width: 50%;
        display: block;
    }
}

/* Tablet & mobile: reorder hero – headings above image, paragraph/button below; text and button left-aligned */
@media (max-width: 991.98px) {
    .header-carousel .header-carousel-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
    .header-carousel .carousel-content {
        display: contents;
    }
    .header-carousel .carousel-content-top {
        order: 1;
        padding: 1.5rem;
        text-align: left !important;
        width: 100%;
    }
    .header-carousel .carousel-img {
        order: 2;
    }
    .header-carousel .carousel-content-bottom {
        order: 3;
        padding: 0 1.5rem 1.5rem 1.5rem;
        text-align: left !important;
        width: 100%;
    }
    .header-carousel .carousel-content-bottom p,
    .header-carousel .carousel-content-bottom .btn {
        text-align: left;
    }
    .header-carousel .carousel-content-bottom .btn {
        align-self: flex-start;
    }
}

/* Mobile only: hide the H1 and badge in the hero slider */
@media (max-width: 991.98px) {
    .header-carousel .carousel-content-top h1,
    .header-carousel .carousel-content h1,
    .header-carousel .carousel-content-top .badge-established-1999,
    .header-carousel .carousel-content .badge-established-1999 {
        display: none !important;
    }
}

/* Where heading/badge are hidden: image fills full width and height of slider frame */
@media (max-width: 991.98px) {
    .header-carousel .header-carousel-item {
        min-height: 70vh;
    }
    .header-carousel .carousel-img {
        width: 100% !important;
        flex: 1 1 auto;
        min-height: 45vh;
        max-height: none;
        display: block;
        overflow: hidden;
    }
    .header-carousel .carousel-img img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover;
        object-position: center;
    }
}
.product .product-item .product-item-inner .product-item-inner-item {
    min-height: 200px;
    height: 200px;
    display: block;
    position: relative;
    background: #f8f8f8;
    overflow: hidden;
}
.product .product-item .product-item-inner .product-item-inner-item img,
.product .product-item-inner .product-item-inner-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
/* Products Offer section (index) promo boxes */
.container-fluid.bg-light.py-5 .row.g-4 a[data-inflow-offer-product] img,
.products-offer-section img {
    max-height: 140px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Offer cards (HDMI / Security Cameras): Alfa Slab One for title and discount */
/* Offer cards: Alfa Slab One for all text (home, shop desktop & mobile) */
.offer-card-link h1,
.offer-card-link h3,
.offer-card-link p,
.offer-card-link h1 span {
    font-family: "Canva Sans", serif !important;
}
.container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4 h1,
.container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4 h3,
.container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4 p,
.products-offer-section a.bg-white.rounded.p-4 h1,
.products-offer-section a.bg-white.rounded.p-4 h3,
.products-offer-section a.bg-white.rounded.p-4 p {
    font-family: "Canva Sans", serif !important;
}

/* Offer cards + product banners + shop filters: no corners */
.offer-card-link,
.offer-card-link > div,
.container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4,
.container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4 > div,
.products-offer-section a.bg-white.rounded.p-4,
.products-offer-section a.bg-white.rounded.p-4 > div,
.container-fluid.py-5 .position-relative.bg-primary.rounded,
.container-fluid.py-5 .position-relative.bg-primary.rounded > img,
.container-fluid.py-5 .product-banner-overlay,
.container-fluid.py-5 .position-relative.bg-primary.rounded .product-banner-overlay,
#shop-filters.border.rounded,
.border.bg-white.rounded.p-4 {
    border-radius: 0 !important;
}
.product-banner-card-border {
    border-radius: 0 !important;
}
.sale-banner-overlay,
.container-fluid.py-5 .position-relative.bg-primary .sale-banner-overlay,
.container-fluid.py-5 .position-relative.bg-primary > img.img-fluid.rounded,
.container-fluid.py-5 .position-relative.bg-primary img.rounded {
    border-radius: 0 !important;
}

/* Offer cards: on mobile, image on top of text */
@media (max-width: 767px) {
    .offer-card-link,
    .container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4,
    .products-offer-section a.bg-white.rounded.p-4 {
        flex-direction: column;
        text-align: center;
    }
    .offer-card-link > div:first-child,
    .container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4 > div:first-child,
    .products-offer-section a.bg-white.rounded.p-4 > div:first-child {
        order: 2;
    }
    .offer-card-link > div:last-child,
    .container-fluid.bg-light.py-5 .row.g-4 a.bg-white.rounded.p-4 > div:last-child,
    .products-offer-section a.bg-white.rounded.p-4 > div:last-child {
        order: 1;
    }
}

.featured-product-item img {
    max-height: 70px;
    max-width: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Product Banner (EOS Rebel / SALE cards): keep overlay on top of image, no corners */
.container-fluid.py-5 .position-relative.bg-primary,
.container-fluid.py-5 .position-relative.bg-primary.rounded {
    overflow: hidden;
    border-radius: 0 !important;
}
/* First card (EOS Rebel): black border around image frame */
.product-banner-card-border {
    border: 2px solid #000;
    border-radius: 0 !important;
}
.container-fluid.py-5 .position-relative.bg-primary > img,
.container-fluid.py-5 .position-relative.bg-primary.rounded > img {
    position: relative;
    z-index: 0;
}
.container-fluid.py-5 .product-banner-overlay {
    z-index: 1;
    pointer-events: auto;
}

/* Product Banner (EOS Rebel / T7i Kit): Alfa Slab One */
.container-fluid.py-5 .product-banner-overlay h3,
.container-fluid.py-5 .product-banner-overlay h3 span {
    font-family: "Canva Sans", serif !important;
}

/* Product Banner (SALE / Get UP To 50% Off): Alfa Slab One */
.container-fluid.py-5 .position-relative.bg-primary.rounded.text-center h2,
.container-fluid.py-5 .position-relative.bg-primary.rounded.text-center h4 {
    font-family: "Canva Sans", serif !important;
}

/* SALE / Get UP To 50% Off cards (shop sidebar, main banner, product banner): Alfa Slab One */
.sale-banner-overlay h2,
.sale-banner-overlay h3,
.sale-banner-overlay h4,
.sale-banner-overlay h5 {
    font-family: "Canva Sans", serif !important;
}

.carousel .carousel-header-banner {
    position: relative;
}

.carousel .carousel-banner-offer {
    position: absolute;
    top: 20px; 
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.carousel .carousel-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; 
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
/*** Carousel Header End ***/


/*** Page Header start ***/
.page-header {
    position: relative;
    width: 100vw;
    left: 50%;
    right: auto;
    margin-left: -50vw;
    padding: 50px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/pathway-lights-in-backyard-garden-of-house_1200x.jpg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.page-header .breadcrumb a,
.page-header .breadcrumb .breadcrumb-item:not(.active) {
    color: #ffc107 !important;
}
.page-header .breadcrumb a:hover {
    color: #ffda6a !important;
}
.page-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #ffc107 !important;
}
/*** Page Header end ***/

/* Legal / content pages – sleek layout */
.legal-page {
    min-height: 100vh;
}
.legal-content {
    max-width: 720px;
    margin: 0 auto;
}
.legal-content section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}
.legal-content section:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #36454f;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.legal-content h2::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background: #eaac00;
    margin-top: 0.5rem;
}
.legal-content p {
    color: #444;
    line-height: 1.75;
    margin: 0;
}
.legal-content a {
    color: #36454f;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content a:hover {
    color: #eaac00;
}

/* FAQ page – categories and accordions */
.faq-page {
    min-height: 100vh;
}
.faq-nav {
    border-color: #444444 !important;
}
/* Site header sticky on all breakpoints */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
}
/* Mobile: fixed header (sticky fails when body has overflow-x: hidden); reserve space so content isn't hidden */
@media (max-width: 991.98px) {
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1030 !important;
        background-color: #fff !important;
    }
    main {
        padding-top: 135px !important; /* white bar ~88px + nav bar ~44px */
    }
}

/* Sticky nav: sit below header on desktop (avoid overlay) */
@media (min-width: 992px) {
    .faq-nav.sticky-top {
        top: 240px !important; /* clear header + extra gap from top when scrolling */
        z-index: 1020; /* below .site-header (1030) so categories never overlay header */
    }
}
.faq-nav-link:hover {
    color: #eaac00 !important;
}
.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #444444;
    letter-spacing: 0.02em;
}
.faq-category-icon {
    width: 48px;
    height: 48px;
    background: #444444;
    color: #fff;
    font-size: 1rem;
}
.faq-category {
    scroll-margin-top: 6rem;
}
.faq-accordion .accordion-item {
    border-color: #444444 !important;
}
.faq-accordion .accordion-button {
    background-color: #fff;
    color: #eaac00 !important;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #eaac00 !important;
}
.faq-accordion .accordion-button::after {
    filter: none;
}
.faq-accordion .accordion-button:hover,
.faq-accordion .accordion-button:focus {
    color: #c99400 !important;
}
.faq-page .btn {
    border-radius: 0 !important;
}

/*** Products Start ***/
.product .row[data-inflow-products="true"] {
    row-gap: 2rem;
}

/* Our Products section: heading uses Alfa Slab One */
.container-fluid.product .tab-class .col-lg-4 h1 {
    font-family: "Canva Sans", serif !important;
}

/* Our Products section: center "Our Products" and Categories / All Products */
.container-fluid.product .tab-class .row.g-4 > .col-lg-4 {
    text-align: center;
}
.container-fluid.product .tab-class .row.g-4 > .col-lg-4 h1 {
    text-align: center !important;
}
.container-fluid.product .tab-class .row.g-4 > .col-lg-8 {
    justify-content: center !important;
}

/* Our Products: on desktop, align Categories / All Products to the right */
@media (min-width: 992px) {
    .container-fluid.product .tab-class .row.g-4 > .col-lg-8 {
        justify-content: flex-end !important;
    }
}

/* Our Products: gap between header row and product cards */
.container-fluid.product .tab-class .row.g-4 {
    margin-bottom: 2.5rem;
}

/* Our Products: black border around Categories / All Products, no rounded corners */
.categories-all-products-border {
    border: 2px solid #000;
    border-radius: 0;
    padding: 0.5rem 0.75rem;
}

/* View All Products: charcoal background (same as header), white text */
.btn-view-all-products,
a.btn-view-all-products,
.container-fluid.product .btn-view-all-products {
    background-color: #444444 !important;
    border: 1px solid #444444 !important;
    color: #fff !important;
}
.btn-view-all-products:hover,
a.btn-view-all-products:hover,
.container-fluid.product .btn-view-all-products:hover,
.btn-view-all-products:focus,
a.btn-view-all-products:focus,
.btn-view-all-products:active,
a.btn-view-all-products:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}

/* Add to Cart buttons: dark header color #444444, white text; readable size (14px) */
.product-item-add a.btn.btn-primary,
.products-mini-add a.btn.btn-primary,
.add-to-cart-wrapper.btn,
a.product-add-cart-link.btn,
a.add-to-cart-btn.btn {
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}
.product-item-add a.btn.btn-primary:hover,
.products-mini-add a.btn.btn-primary:hover,
.add-to-cart-wrapper.btn:hover,
.product-item-add a.btn.btn-primary:focus,
.products-mini-add a.btn.btn-primary:focus,
.add-to-cart-wrapper.btn:focus,
.product-item-add a.btn.btn-primary:active,
.products-mini-add a.btn.btn-primary:active,
.add-to-cart-wrapper.btn:active,
a.product-add-cart-link.btn:hover,
a.product-add-cart-link.btn:focus,
a.product-add-cart-link.btn:active,
a.add-to-cart-btn.btn:hover,
a.add-to-cart-btn.btn:focus,
a.add-to-cart-btn.btn:active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}
.product-item-add a.btn.btn-primary i,
.products-mini-add a.btn.btn-primary i,
a.product-add-cart-link.btn i,
a.add-to-cart-btn.btn i {
    color: #fff !important;
    font-size: 0.75em;
}

/* Quantity inside Add to Cart button: number + up/down arrows on the left */
.add-to-cart-wrapper {
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}
.add-to-cart-wrapper .product-add-cart-link {
    color: #fff !important;
    text-decoration: none;
    font-size: 0.875rem;
}
.add-to-cart-qty-inline {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 0.15rem;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 0.1rem 0.2rem;
}
.add-to-cart-qty-inline .qty-input {
    grid-column: 1;
    grid-row: 1 / -1;
}
.add-to-cart-qty-inline .qty-plus {
    grid-column: 2;
    grid-row: 1;
}
.add-to-cart-qty-inline .qty-minus {
    grid-column: 2;
    grid-row: 2;
}
.add-to-cart-qty-inline .qty-input {
    width: 2.2em;
    min-width: 2.2em;
    padding: 0.1rem 0.15rem;
    font-size: 0.75rem;
    text-align: center;
    border: none;
    background: transparent;
    color: #fff;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}
/* Remove browser number input spinners (the two arrows outside the box) */
.add-to-cart-qty-inline .qty-input::-webkit-inner-spin-button,
.add-to-cart-qty-inline .qty-input::-webkit-outer-spin-button,
.add-to-cart-wrapper .qty-input::-webkit-inner-spin-button,
.add-to-cart-wrapper .qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    display: none !important;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}
.add-to-cart-wrapper .qty-input {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}
.add-to-cart-qty-inline .qty-plus,
.add-to-cart-qty-inline .qty-minus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 0.65rem;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.9;
}
.add-to-cart-qty-inline .qty-plus:hover,
.add-to-cart-qty-inline .qty-minus:hover {
    opacity: 1;
}

/* Desktop: quantity box white background, arrows black; "Add to cart" text aligned right */
@media (min-width: 992px) {
    .add-to-cart-qty-inline {
        background: #fff !important;
    }
    .add-to-cart-qty-inline .qty-input {
        color: #333 !important;
    }
    .add-to-cart-qty-inline .qty-plus,
    .add-to-cart-qty-inline .qty-minus {
        color: #000 !important;
    }
    .add-to-cart-wrapper .product-add-cart-link {
        margin-left: auto;
        padding-right: 0.5rem;
    }
}

/* Mobile & tablet: quantity separate above Add to Cart, full width, - left / number / + right; one white box with #444 border (product cards + bestseller same) */
@media (max-width: 991px) {
    .product-item-add .add-to-cart-wrapper,
    .products-mini-add .product-add-row,
    .products-mini-add .add-to-cart-wrapper {
        overflow: visible;
        min-width: 0;
    }
    .product-item-add .add-to-cart-wrapper {
        width: 100%;
    }
    .add-to-cart-wrapper {
        flex-direction: column !important;
        align-items: stretch;
        width: 100%;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        gap: 0.65rem;
    }
    .add-to-cart-wrapper .product-add-cart-link {
        display: block;
        text-align: center;
        width: 100%;
        padding: 0.4rem 0.5rem !important;
        font-size: 0.875rem !important;
        background-color: #444444 !important;
        border: 1px solid #444444 !important;
        border-radius: 6px;
        color: #fff !important;
    }
    .add-to-cart-wrapper .product-add-cart-link:hover {
        background-color: #333333 !important;
        border-color: #333333 !important;
    }
    .add-to-cart-qty-inline {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: 0;
        background: #fff;
        border: 1px solid #444444;
        border-radius: 6px;
        padding: 0.25rem 0.35rem;
        gap: 0.35rem;
        overflow: visible;
    }
    .add-to-cart-qty-inline .qty-input {
        order: 0;
        grid-column: auto;
        grid-row: auto;
        flex: 1 1 auto;
        min-width: 1.75rem;
        width: 2.25rem;
        max-width: none;
        margin: 0 auto;
        background: transparent !important;
        color: #333;
        border: none !important;
        border-radius: 0;
        padding: 0.15rem 0.2rem;
        font-size: 0.8rem;
        overflow: visible;
    }
    .add-to-cart-qty-inline .qty-minus {
        order: -1;
        grid-column: auto;
        grid-row: auto;
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
        flex-shrink: 0;
        font-size: 0;
        background: transparent !important;
        border: none !important;
        border-radius: 0;
        color: #444444 !important;
    }
    .add-to-cart-qty-inline .qty-minus::after {
        content: '−';
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
    }
    .add-to-cart-qty-inline .qty-plus {
        order: 1;
        grid-column: auto;
        grid-row: auto;
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
        flex-shrink: 0;
        font-size: 0;
        background: transparent !important;
        border: none !important;
        border-radius: 0;
        color: #444444 !important;
    }
    .add-to-cart-qty-inline .qty-plus::after {
        content: '+';
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
    }
}

/* Single product page Add to cart – same charcoal, normal size */
a.add-to-cart-btn.btn {
    font-size: inherit;
    padding: 0.5rem 1.5rem;
}

/* Related products: Add to cart wrapper (qty + text) inside card link – #444444, button look */
.product-item--related .add-to-cart-wrapper {
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
    display: inline-flex;
    cursor: pointer;
}
.product-item--related .add-to-cart-wrapper:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}
.product-item--related .add-to-cart-wrapper .product-add-cart-link {
    color: #fff !important;
}

/* Single product quantity: hide number input up/down arrows, keep only + / - buttons */
.single-product-qty input[type="number"]::-webkit-inner-spin-button,
.single-product-qty input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.single-product-qty input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Our Products carousel – Swiper; cards use same design as bestseller (products-mini-item) */
.product .our-products-carousel.swiper {
    position: relative;
    padding-bottom: 60px;
}
.product .our-products-carousel .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.product .our-products-carousel .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
    min-height: 100%;
    padding: 0 5px;
}
.product .our-products-carousel .swiper-slide .products-mini-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.product .our-products-carousel .swiper-button-prev,
.product .our-products-carousel .swiper-button-next {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaac00 !important;
    border: 1px solid #eaac00;
    color: #fff;
    transition: 0.3s;
}
.product .our-products-carousel .swiper-button-next { margin-left: 52px; }
.product .our-products-carousel .swiper-button-prev::after,
.product .our-products-carousel .swiper-button-next::after { content: none; }
.product .our-products-carousel .swiper-button-prev:hover,
.product .our-products-carousel .swiper-button-next:hover {
    background: #c99700 !important;
    border-color: #c99700;
    color: #fff;
}
@media (max-width: 991.98px) {
    .product .our-products-carousel.swiper { padding-bottom: 0; }
    .product .our-products-carousel .swiper-button-prev,
    .product .our-products-carousel .swiper-button-next {
        display: none !important;
    }
}
.product .product-item {
    width: 100%;
    position: relative;
    border: 1px solid var(--bs-border-color, #dee2e6);
    border-radius: 0.375rem;
    overflow: hidden;
    background: var(--bs-white);
}
/* Product grid: all cards equal height (row uses flex, card fills column) */
.product .row .product-item,
.product [data-inflow-products="true"] .product-item,
/* Shop page: row has class "product" on the same element */
.row.product .product-item,
.row[data-inflow-products="true"] .product-item,
.shop .row .product-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product .row .product-item .product-item-inner,
.product [data-inflow-products="true"] .product-item .product-item-inner,
.row.product .product-item .product-item-inner,
.row[data-inflow-products="true"] .product-item .product-item-inner,
.shop .row .product-item .product-item-inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.product .row .product-item .product-item-add,
.product [data-inflow-products="true"] .product-item .product-item-add,
.row.product .product-item .product-item-add,
.row[data-inflow-products="true"] .product-item .product-item-add,
.shop .row .product-item .product-item-add {
    flex: 0 0 auto;
}

.product .product-item .product-item-inner {
    border: none;
    border-radius: 0;
    border-bottom: none !important;
}
.product .product-item .product-item-inner-link,
a.product-item-inner.product-item-inner-link {
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}
.product .product-item .product-item-inner-link:hover {
    color: inherit;
}

.product .product-item .product-item-add .btn,
.products .product-item .product-item-add .btn {
    border-radius: 0;
}
/* Product cards: add-to-cart and quantity same style/size as bestseller */
.product-item-add .add-to-cart-wrapper,
.products .product-item .product-item-add .add-to-cart-wrapper {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
}
.product-item-add .add-to-cart-wrapper .product-add-cart-link,
.products .product-item .product-item-add .add-to-cart-wrapper .product-add-cart-link {
    font-size: 0.875rem;
}
.product .product-item .product-item-add {
    width: 100%;
    background: var(--bs-white);
    z-index: 1;
    border: none !important;
    border-radius: 0;
    border-top: none !important;
    position: relative;
}
/* Product colour options (when API returns variants/colors) */
.product-color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    align-items: center;
}
.product-color-swatch {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.product-color-swatch:hover {
    border-color: #444;
    background: #f8f9fa;
}
.product-color-swatch--active {
    border-color: #444;
    background: #444;
    color: #fff;
}
/* Heart icon at bottom right corner of product card (index Our Products, shop grid, bestseller grid, etc.) */
.product .product-item .product-item-add .d-flex.justify-content-end,
.products .product-item .product-item-add .d-flex.justify-content-end {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
}
/* Gap between quantity row and heart (product-item cards) */
.product .product-item .product-item-add .product-qty,
.products .product-item .product-item-add .product-qty {
    margin-bottom: 2.25rem;
}
/* Shop / any page: product-item-add needs position relative when inside .products */
.products .product-item .product-item-add {
    position: relative;
}
/* All pages: products-mini-add cards (shop featured, bestseller old structure) – heart at bottom right */
.products-mini-add {
    position: relative;
}
.products-mini-add > .d-flex:last-child > a {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
}

.product .product-item .product-item-inner .product-item-inner-item {
    position: relative;
    height: 200px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new,
.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.product .product-item .product-item-inner .product-item-inner-item .product-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner img {
    transition: 0.5s;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product .product-item:hover .product-item-inner img {
    transform: scale(1.1);
}

.product .product-item .product-item-inner .product-item-inner-item .product-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.product .product-item .product-item-inner .product-item-inner-item .product-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.product .tab-class .nav .nav-item a.active {
    background: #eaac00 !important;
    border-color: #eaac00;
}

.product .tab-class .nav .nav-item a.active span {
    color: var(--bs-white) !important;
}
/*** Product End ***/


/*** ProductList Categories Start ***/
.productList .productList-carousel {
    min-height: 280px;
    height: auto !important;
}
.productList .productList-carousel .owl-stage-outer {
    overflow-x: hidden;
    overflow-y: visible !important;
}
.productList .productList-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.productList .productImg-carousel .owl-stage-outer {
    overflow-x: hidden;
    overflow-y: visible !important;
}
.productList .productImg-carousel .products-mini-item {
    height: 350px;
    min-height: 350px;
    max-height: 350px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}
.productList .productImg-carousel .products-mini-item .row {
    flex: 1;
    min-height: 0;
}

/* Product List section: "Categories" and "Shop by Category" – Alfa Slab One */
.productList .container.products-mini > .text-center.mb-5 h4,
.productList .container.products-mini > .text-center.mb-5 h1 {
    font-family: "Canva Sans", serif !important;
}

/* Categories section: grid layout (redesigned, no carousel) */
.productList .categories-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}
@media (min-width: 768px) {
    .productList .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
@media (min-width: 992px) {
    .productList .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Category card in grid: layout and typography */
.productList .categories-grid__card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.productList .categories-grid .category-card__title,
.productList .categories-grid .category-card__title a {
    font-size: 1.05rem !important;
    font-family: "Canva Sans", serif !important;
    color: #444444 !important;
}
.productList .categories-grid .category-card__title a:hover {
    color: #333333 !important;
}
/* Legacy: all cards in one row (horizontal scroll) */
.productList .productList-cards-row {
    gap: 2rem !important;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.productList .productList-cards-row .productImg-item {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 320px;
    padding: 0.5rem;
}
/* Legacy: cards per slide (if used elsewhere) */
.productList .productList-item-cards .productImg-item {
    flex: 1 1 220px;
    max-width: 320px;
    min-width: 200px;
}
.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    position: relative;
    width: calc(100% - 1px);
    transition: 0.5s;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    margin-bottom: 0;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item:hover {
    border-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.productList .productList-carousel .owl-nav .owl-prev,
.productList .productList-carousel .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: #eaac00 !important;
    border-color: #eaac00;
    color: var(--bs-white);
    transition: 0.5s;
}

.productList .productList-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .owl-nav .owl-next:hover {
    background: #eaac00 !important;
    border-color: #eaac00;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0px;
    padding: 5px 10px;
    border-radius: 30px;
    background: #eaac00 !important;
    border-color: #eaac00;
    color: var(--bs-white);
    transition: 0.5s;
    opacity: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next:hover {
    background: #eaac00 !important;
    border-color: #eaac00;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-next {
    opacity: 1;
}
/* Product List: all cards equal height (tallest card) */
.productList .productImg-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}
.productList .productImg-carousel .owl-item {
    display: flex;
    align-items: stretch;
}
.productList .productImg-carousel .productImg-item {
    display: flex;
    flex: 1;
    width: 100%;
    align-items: stretch;
}
.productList .productImg-carousel .products-mini-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.productList .productImg-carousel .products-mini-item .row {
    flex: 1 1 auto;
    min-height: 0;
}
.productList .productImg-carousel .products-mini-item .products-mini-add {
    flex: 0 0 auto;
}
/*** ProductList Categories End ***/



/*** bestseller Products Start ***/
.bestseller-section {
    margin-top: 4rem;
}

/* Bestseller Products section: heading uses Alfa Slab One */
.bestseller-section .products-mini > .text-center.mb-5 h4 {
    font-family: "Canva Sans", serif !important;
}

/* Bestseller Products: subheading same size/color as "Shop by Category" */
.bestseller-section .bestseller-products-subheading,
.bestseller-section .products-mini > .text-center.mb-5 .bestseller-products-subheading {
    font-family: "Canva Sans", serif !important;
    color: #444444;
    font-weight: 400;
}

/* Bestseller: hide subheading on mobile only */
@media (max-width: 767.98px) {
    .bestseller-section .bestseller-products-subheading {
        display: none !important;
    }
}

.products .products-mini .products-mini-item {
    position: relative;
    border-radius: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.products .products-mini .products-mini-item .products-mini-content {
    min-height: 120px;
}
.products .products-mini .products-mini-item .products-mini-card-link {
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}
.products .products-mini .products-mini-item .products-mini-card-link:hover {
    color: inherit;
}

.products .products-mini .products-mini-item .products-mini-content a.h4 {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.products .products-mini .products-mini-item .products-mini-img {
    position: relative;
    overflow: hidden;
    height: 200px;
    min-height: 200px;
    background: #f5f5f5;
}

.products .products-mini .products-mini-item .products-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img img {
    border-bottom-left-radius: 0 !important;
    transform: scale(1.3);
}

.products .products-mini .products-mini-item .products-mini-img .products-mini-icon {
    position: absolute;
    width: 50px; 
    height: 50px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item .products-mini-add {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: var(--bs-white);
    transition: 0.5s;
    z-index: 9;
    border-radius: 0;
}
/* Quantity row always below Add to Cart (full width = new row) */
.products .products-mini .products-mini-item .products-mini-add .product-qty {
    flex-basis: 100%;
    width: 100%;
}
/* Product List: add-to-cart inside price box, small button */
/* Category cards: show full category name (no ellipsis) */
.productList .products-mini-content {
    overflow: visible !important;
    min-height: 0;
}
.productList .products-mini-content a.category-card-name,
.productList .products-mini-content a.h4.category-card-name {
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}
/* Let category card row grow with content so long names aren't clipped */
.productList .productImg-carousel .products-mini-item .row {
    min-height: 0;
    overflow: visible;
}
.productList .productImg-carousel .products-mini-item .row .col-7 {
    overflow: visible;
}
.productList .products-mini-content .products-mini-add.productList-add-inline {
    margin-top: 0.35rem;
    padding-top: 0.25rem;
    border: none !important;
    background: transparent !important;
}
.productList .products-mini-content .products-mini-add.productList-add-inline .btn {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
}
/* Category card: View products button – bigger, always at bottom of card */
.productList .category-card-view-wrap {
    margin-top: auto !important;
    padding-top: 0.75rem !important;
}
.productList .category-card-view-btn {
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.25rem !important;
}
.productList .products-mini-content .products-mini-add.productList-add-inline .btn-sm-square {
    width: 2rem;
    height: 2rem;
}
/* Button + heart on same row (Product List and Bestseller) */
.products-mini-add .product-add-row {
    flex: 0 0 100%;
    width: 100%;
}
/* Product List: price black; heart on right of Add to Cart (same row), original color (primary) */
.productList .products-mini-content span.text-primary,
.productList .products-mini-content .text-primary {
    color: #000 !important;
}
.productList .products-mini-add {
    position: relative;
}
.productList .products-mini-add .product-add-row > a.text-primary {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
}
.productList .products-mini-add .product-add-row a.text-primary,
.productList .products-mini-add .product-add-row a.text-primary i {
    color: #eaac00 !important;
}
.productList .products-mini-add .product-add-row a.text-primary:hover,
.productList .products-mini-add .product-add-row a.text-primary:hover i {
    color: #c99700 !important;
}
/* Product List: quantity visible (shows 1, updates with +/-), left-aligned; gap below for heart */
.productList .products-mini-add.productList-add-inline .product-qty,
.productList .productList-qty-row {
    justify-content: flex-start !important;
    margin-bottom: 2.25rem;
}
.productList .products-mini-add.productList-add-inline .product-qty .qty-input,
.productList .productList-qty-row .qty-input {
    width: 2rem !important;
    min-width: 2rem !important;
    max-width: 2rem !important;
    font-size: 0.75rem !important;
    padding: 0.15rem 0.25rem !important;
    -moz-appearance: textfield;
    appearance: textfield;
}
.productList .productList-qty-row .qty-input::-webkit-outer-spin-button,
.productList .productList-qty-row .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.productList .products-mini-add.productList-add-inline .product-qty .qty-minus,
.productList .products-mini-add.productList-add-inline .product-qty .qty-plus,
.productList .productList-qty-row .qty-minus,
.productList .productList-qty-row .qty-plus {
    min-width: 1.25rem !important;
    padding: 0.1rem 0.25rem !important;
    font-size: 0.65rem !important;
}

/* Quantity controls under Add to Cart (all cards) */
.product-qty .qty-input {
    max-width: 3rem;
}
.product-qty .qty-minus,
.product-qty .qty-plus {
    min-width: 2rem;
}
.product-qty.product-qty-sm .qty-input {
    max-width: 2.5rem;
    font-size: 0.8rem;
}

/* Bestseller carousel only: price black; Add to Cart below price (grid uses product-card style above) */
.bestseller-section .bestseller-carousel .products-mini-content span.text-primary,
.bestseller-section .bestseller-carousel .products-mini-content .text-primary {
    color: #000 !important;
}
.bestseller-section .bestseller-carousel .products-mini-add {
    position: static;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
}
.bestseller-section .bestseller-carousel .products-mini-add .product-add-row {
    margin-top: 0.25rem;
}
.bestseller-section .bestseller-carousel .products-mini-add .product-qty,
.bestseller-section .bestseller-carousel .bestseller-qty-row {
    justify-content: flex-start !important;
}

/* Bestseller carousel – Swiper */
.products .products-mini .bestseller-carousel.swiper {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
}
.products .products-mini .bestseller-carousel .swiper-wrapper {
    display: flex;
    align-items: stretch;
}
.products .products-mini .bestseller-carousel .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
}
.products .products-mini .bestseller-carousel .bestseller-slide {
    width: 100%;
    display: flex;
    align-items: stretch;
}
.products .products-mini .bestseller-carousel .products-mini-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.products .products-mini .bestseller-carousel .products-mini-item .row {
    flex: 1 1 auto;
    min-height: 0;
}
.products .products-mini .bestseller-carousel .products-mini-item .products-mini-img-top {
    width: 100%;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    border-radius: 0;
    flex-shrink: 0;
    position: relative;
    background: #f5f5f5;
}
.products .products-mini .bestseller-carousel .products-mini-item .products-mini-img-top img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.products .products-mini .bestseller-carousel .products-mini-item:hover .products-mini-img-top img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.products .products-mini .bestseller-carousel .products-mini-item .products-mini-content {
    flex: 1 1 auto;
    min-height: 0;
}

/* Bestseller carousel only: font sizes (grid uses .inflow-products-grid / .bestseller-section .inflow-products-grid rules) */
.bestseller-section .bestseller-carousel .products-mini-content a.h4,
.products .products-mini .bestseller-carousel .products-mini-item .products-mini-content a.h4 {
    font-size: 0.7rem !important;
    line-height: 1.3;
    font-weight: 600;
}
.bestseller-section .bestseller-carousel .products-mini-content a.d-block.mb-2 {
    font-size: 0.65rem !important;
    color: #444444 !important;
}
.bestseller-section .bestseller-carousel .products-mini-content a.d-block.mb-2:hover {
    color: #333333 !important;
}
.bestseller-section .bestseller-carousel .products-mini-add .text-primary.fs-5,
.bestseller-section .bestseller-carousel .products-mini-add .text-primary {
    font-size: 1rem !important;
}
.bestseller-section .bestseller-carousel .products-mini-add .btn.btn-primary {
    font-size: 0.875rem !important;
    padding: 0.25rem 0.5rem;
}

.products .products-mini .bestseller-carousel .products-mini-item .products-mini-add {
    flex: 0 0 auto;
}
/* Bestseller: Add to Cart button under the price – block layout */
.products-mini-add-bestseller,
.products .products-mini .bestseller-carousel .products-mini-add.products-mini-add-bestseller {
    display: block !important;
}
.products-mini-add-bestseller .bestseller-price-row,
.products-mini-add-bestseller .product-add-row {
    display: block !important;
    width: 100% !important;
}
.products-mini-add-bestseller .product-add-row {
    margin-top: 0.25rem;
}

/* Product cards + Bestseller: one design for all .inflow-products-grid cards (Our Products, Shop, Related, Bestseller) */
.inflow-products-grid .products-mini-item {
    position: relative !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    transition: 0.5s !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
}
.inflow-products-grid .products-mini-item:hover {
    border-radius: 0 !important;
}
.inflow-products-grid .products-mini-item .products-mini-img-top {
    width: 100% !important;
    height: 200px !important;
    min-height: 200px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    flex-shrink: 0 !important;
    position: relative !important;
    background: #f5f5f5 !important;
}
.inflow-products-grid .products-mini-item .products-mini-img-top img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
    transform: none !important;
}
.inflow-products-grid .products-mini-item:hover .products-mini-img-top img {
    border-radius: 0 !important;
}
.inflow-products-grid .products-mini-item .products-mini-content {
    flex: 1 1 auto !important;
    min-height: 0 !important;
}
.inflow-products-grid .products-mini-item .products-mini-content a.h4 {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}
.inflow-products-grid .products-mini-item .products-mini-content a.d-block.mb-2 {
    font-size: 0.65rem !important;
    color: #444444 !important;
}
.inflow-products-grid .products-mini-item .products-mini-content a.d-block.mb-2:hover {
    color: #333333 !important;
}
.inflow-products-grid .products-mini-item .products-mini-add .text-primary {
    font-size: 1rem !important;
}
.inflow-products-grid .products-mini-item .products-mini-add .btn.btn-primary {
    font-size: 0.875rem !important;
    padding: 0.25rem 0.5rem !important;
}
.inflow-products-grid .products-mini-item .products-mini-add {
    display: block !important;
    flex-direction: column !important;
    flex: 0 0 auto !important;
    flex-wrap: nowrap !important;
    border-radius: 0 !important;
    background: var(--bs-white) !important;
}
.inflow-products-grid .products-mini-item .products-mini-add .product-add-row {
    display: block !important;
    width: 100% !important;
    margin-top: 0.25rem !important;
}

.products .products-mini .bestseller-carousel .swiper-button-prev,
.products .products-mini .bestseller-carousel .swiper-button-next {
    position: absolute;
    top: calc(50% + 125px);
    margin: 0;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--bs-primary);
    background: var(--bs-white) !important;
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: 0.3s;
}
.products .products-mini .bestseller-carousel .swiper-button-prev { left: 0; }
.products .products-mini .bestseller-carousel .swiper-button-next { right: 0; }
.products .products-mini .bestseller-carousel .swiper-button-prev::after,
.products .products-mini .bestseller-carousel .swiper-button-next::after { content: none; }
.products .products-mini .bestseller-carousel .swiper-button-prev:hover,
.products .products-mini .bestseller-carousel .swiper-button-next:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    border-color: var(--bs-primary);
}
/*** bestseller Products End ***/

/* Shop page: 3 product cards per row on desktop (not 4) */
@media (min-width: 992px) {
    .shop-products-grid .col-lg-3 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/*** Pagination Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

/* Shop product pagination (dynamic page numbers) - always visible */
.inflow-product-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 2rem;
    padding: 1rem 0;
    min-height: 50px;
}
.inflow-product-pagination .inflow-pagination-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    color: var(--bs-dark);
    background-color: #fff;
    border: 1px solid var(--bs-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: 0.2s;
}
.inflow-product-pagination .inflow-pagination-page:hover:not(.inflow-pagination-disabled) {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border-color: var(--bs-primary);
}
.inflow-product-pagination .inflow-pagination-page--active {
    background-color: #444444;
    color: #fff;
    border-color: #444444;
}
.inflow-product-pagination .inflow-pagination-disabled {
    color: #999;
    background-color: #f0f0f0;
    border-color: #ddd;
    cursor: default;
}
.inflow-product-pagination .inflow-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    color: #666;
    font-size: 1rem;
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Pagination End ***/

/*** Shop Page Start ***/
.shop .product-categories .categories-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.shop .product-categories .categories-item a {
    transition: 0.5s;
}

.shop .product-categories .categories-item a:hover {
    color: var(--bs-primary) !important;
}

.shop .product-color .product-color-item {
    display: flex;
    padding: 10px 0;
}

.shop .product-color .product-color-item a {
    transition: 0.5s;
}

.shop .product-color .product-color-item a:hover {
    color: var(--bs-secondary);
}

.shop .price {
    padding: 10px 0;
}

.shop .additional-product .additional-product-item {
    padding: 10px 0;
}

/* Shop left sidebar: smaller category names and category dropdown */
#shop-filters [data-inflow-categories="additional"] .additional-product-item label,
.shop [data-inflow-categories="additional"] .additional-product-item label,
.shop .product-categories .categories-item a {
    font-size: 0.8125rem;
}
#shop-filters select[data-inflow-categories="select"],
#shop-filters #filter-category {
    font-size: 0.8125rem;
}

/* Shop filters: on desktop always expanded; on mobile collapse */
@media (min-width: 992px) {
    #shop-filters .shop-filters-collapse {
        display: block !important;
        visibility: visible;
    }
}
/* Mobile: chevron rotates when filters expanded */
#shop-filters button[data-bs-toggle="collapse"][aria-expanded="true"] .shop-filters-chevron {
    transform: rotate(180deg);
}
.shop-filters-chevron {
    transition: transform 0.2s ease;
}

/* Featured products: heading uses Alfa Slab One */
.shop .featured-product h4,
.featured-product h4 {
    font-family: "Canva Sans", serif !important;
}

/* Featured products: View More button #eaac00 */
.featured-product a.btn-primary,
.featured-product .btn-primary {
    background-color: #eaac00 !important;
    border-color: #eaac00 !important;
    color: #fff !important;
}
.featured-product a.btn-primary:hover,
.featured-product .btn-primary:hover {
    background-color: #c99700 !important;
    border-color: #c99700 !important;
    color: #fff !important;
}

/* Featured products sidebar: keep content inside cards */
.shop .featured-product [data-inflow-featured="true"] {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.shop .featured-product .featured-product-item {
    display: flex;
    align-items: stretch;
    justify-content: start;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.shop .featured-product .featured-product-item > a {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    max-width: 100%;
}

.shop .product-tags .product-tags-items a {
    display: inline-block !important;
    background: var(--bs-white);
    color: var(--bs-dark);
    transition: 0.5;
}

.shop .product-tags .product-tags-items a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/*** Shop Page End ***/


/*** Single Products Start – Swiper ***/
.single-product .single-carousel .swiper-button-prev,
.single-product .single-carousel .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -13%;
    font-size: 22px;
    color: #eaac00 !important;
    width: 44px;
    height: 44px;
}
.single-product .single-carousel .swiper-button-prev { left: 0; }
.single-product .single-carousel .swiper-button-next { right: 0 !important; }
.single-product .single-carousel .swiper-button-prev::after,
.single-product .single-carousel .swiper-button-next::after {
    content: none;
}

.single-product .single-carousel .swiper-pagination {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.single-product .single-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--bs-primary);
    opacity: 0.5;
    transition: 0.3s;
}
.single-product .single-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}














.related-product .related-carousel .related-item {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 125px;
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 99;
}

.related-product .related-carousel .related-item:hover .related-item-add {
    background: var(--bs-white);
    margin-bottom: -125px;
    opacity: 1;
}

.related-product .related-carousel .related-item:hover .related-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new,
.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
    z-index: 5;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner img {
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner img {
    transform: scale(1.1);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-item-inner-item .related-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-details {
    opacity: 1;
}


.related-product .owl-nav .owl-prev,
.related-product .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: #eaac00 !important;
    border-color: #eaac00;
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .owl-nav .owl-prev {
    left: 0;
}

.related-product .owl-nav .owl-next {
    right: 0;
}

.related-product .owl-nav .owl-prev:hover,
.related-product .owl-nav .owl-next:hover {
    background: #eaac00 !important;
    border-color: #eaac00;
}
/*** Single Products End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

.footer .footer-links a {
    color: #fff;
    transition: 0.5s;
}
.footer .footer-links a i {
    color: #eaac00;
}

/* Footer newsletter: signup field and button – no corners, smaller size */
.footer .footer-newsletter-form input.form-control,
.footer .footer-newsletter-form button.btn {
    border-radius: 0 !important;
}
.footer .footer-newsletter-form input.form-control {
    font-size: 0.9rem;
}
.footer .footer-newsletter-form button.btn {
    font-size: 0.875rem;
}

/*** Footer End ***/


/*** copyright Start ***/
/* Prevent white strip below footer: body background matches copyright bar */
html, body {
    background-color: #eaac00;
}
/* Content area stays white so only the bottom strip is yellow */
main {
    background-color: #fff;
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #eaac00 !important;
    min-height: 1px; /* ensure background paints */
}
.copyright p,
.copyright span,
.copyright i {
    color: #000 !important;
}
.copyright a {
    color: #fff !important;
}
.copyright a:hover {
    color: #f0f0f0 !important;
}
.copyright-bar,
.copyright-bar span,
.copyright-bar a {
    color: #36454f !important;
}
.copyright-bar a.copyright-nexusbyte {
    color: #fff !important;
}
.copyright-bar a.copyright-nexusbyte:hover {
    color: #f0f0f0 !important;
}
.copyright-bar a:hover:not(.copyright-nexusbyte) {
    color: #2a353d !important;
}
/*** copyright end ***/

/* Project-wide font (public/font) – override all other font-family */
html,
body {
    font-family: "Canva Sans", system-ui, sans-serif !important;
}
/* Header: "All Categories" button text */
.nav-bar .navbar-toggler,
.nav-bar .navbar-toggler h4 {
    font-family: "Canva Sans", system-ui, sans-serif !important;
}
/* Hero slider: heading (H1) and badge */
.header-carousel .carousel-content h1,
.header-carousel .carousel-content-top h1,
.header-carousel .carousel-content .badge-established-1999,
.header-carousel .carousel-content-top .badge-established-1999 {
    font-family: "Canva Sans", system-ui, sans-serif !important;
}

/* Related Products section: Alfa Slab One */
.related-products-title,
.related-products-intro {
    font-family: "Canva Sans", system-ui, sans-serif !important;
}

/* Shop: Sort By – compact dropdown */
.sort-by-dropdown .sort-by-dropdown-btn {
    font-size: 0.8125rem;
    line-height: 1.3;
    min-height: 32px;
}
.sort-by-dropdown .sort-by-dropdown-label {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sort-by-dropdown-menu .dropdown-item {
    font-size: 0.8125rem;
    min-height: 32px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

/* Contact page – Alfa Slab One for all text */
.contact-page,
.contact-page * {
    font-family: "Canva Sans", system-ui, sans-serif !important;
}
/* About page – Alfa Slab One for all text */
.about-page,
.about-page * {
    font-family: "Canva Sans", system-ui, sans-serif !important;
}
/* About page – Font Awesome for icons */
.about-page i[class*="fa-"],
.about-page .about-why-icon,
.about-page .about-why-icon i {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}
.about-page .btn {
    border-radius: 0 !important;
}
.about-contact-form .contact-send-btn {
    background-color: #444444 !important;
    border-color: #444444 !important;
  }
.about-contact-form .contact-send-btn:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
}
/* About page – sections */
.about-why-section {
    background-color: #f2f2f2;
}
.about-why-icon {
    width: 52px;
    height: 52px;
    background-color: #444444 !important;
    min-width: 52px;
}
.about-why-card {
    border-color: #444444 !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.about-why-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}
/* About page hero: logo as-is, no wrapper effects */
/* About page logo: frame */
.about-page-logo-frame {
    padding: 2.5rem 3rem;
    border: 2px solid #36454f;
    border-radius: 12px;
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
    box-shadow: 0 4px 20px rgba(54, 69, 79, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.about-page-logo-plain {
    max-width: 100%;
    width: 100%;
    min-width: 260px;
    height: auto;
    filter: none;
    box-shadow: none;
}
@media (min-width: 992px) {
    .about-page-logo-frame {
        padding: 3rem 4rem;
    }
    .about-page-logo-plain {
        max-width: 480px;
        width: auto;
    }
}
.about-stat-circle {
    transition: transform 0.2s ease;
}
.about-stat-circle:hover {
    transform: scale(1.05);
}

/* About page – Team slider */
.about-team-card {
    border-color: #36454f !important;
}
.about-team-section .swiper-pagination-bullet-active {
    background: #36454f;
}

/* About page – Testimonials */
.about-testimonial-card {
    border-color: #36454f !important;
}

/* About page – FAQ accordion */
.about-faq-accordion .accordion-item {
    background-color: #fff;
    border-color: #36454f !important;
}
.about-faq-accordion .accordion-button {
    background-color: #fff;
    color: #eaac00 !important;
    box-shadow: none;
}
.about-faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #eaac00 !important;
}
.about-faq-accordion .accordion-button::after {
    filter: none;
}
.about-faq-accordion .accordion-button:hover,
.about-faq-accordion .accordion-button:focus {
    color: #c99400 !important;
}

/* Restore Font Awesome for icons (Alfa Slab One has no icon glyphs) */
.contact-page .contact-info-icon,
.contact-page .contact-info-icon i,
.contact-page .contact-info-icon.fas,
.contact-page .contact-info-icon .fas,
.contact-page .contact-info-icon .fa {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

/* Contact page – info cards */
.contact-info-card {
    --contact-icon-size: 48px;
    --contact-border: #444444;
    border-color: var(--contact-border) !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-info-icon {
    width: var(--contact-icon-size);
    height: var(--contact-icon-size);
    background-color: #444444 !important;
    color: #fff !important;
}
.contact-info-icon i,
.contact-info-icon .fa,
.contact-info-icon .fas {
    color: #fff !important;
}
.contact-info-label {
    color: #444444 !important;
}
.contact-sydney-time {
    color: #eaac00 !important;
}
a:hover .contact-info-card,
a:focus .contact-info-card {
    border-color: var(--contact-border, #444444) !important;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08) !important;
}

/* Contact page – Send Message button charcoal */
.contact-page .btn,
.contact-page .contact-send-btn {
    border-radius: 0 !important;
}
.contact-page .contact-send-btn {
    background-color: #444444 !important;
    border-color: #444444 !important;
  }
.contact-page .contact-send-btn:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
}

/* Checkout pages – buttons #444444, no corners */
.checkout-page .btn {
    border-radius: 0 !important;
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
}
.checkout-page .btn:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}
.checkout-page .btn-outline-secondary {
    background-color: #fff !important;
    border-color: #444444 !important;
    color: #444444 !important;
}
.checkout-page .btn-outline-secondary:hover {
    background-color: #f5f5f5 !important;
    border-color: #444444 !important;
    color: #444444 !important;
}

/* Cart page – Proceed to checkout button #444444, no corners */
a.btn.cart-proceed-btn,
.btn.cart-proceed-btn {
    border-radius: 0 !important;
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
}
a.btn.cart-proceed-btn:hover,
.btn.cart-proceed-btn:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}

/* Cart page – Apply Coupon button no corners */
.cart-apply-coupon-btn {
    border-radius: 0 !important;
}

/* Cart page – Continue shopping (empty cart) button no corners */
.cart-continue-shopping-btn {
    border-radius: 0 !important;
}

/* Login page – Log in button #444444, no corners */
button.btn.login-submit-btn {
    border-radius: 0 !important;
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
}
button.btn.login-submit-btn:hover:not(:disabled) {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}

/* Sign up page – Create account button #444444, no corners */
button.btn.signup-submit-btn {
    border-radius: 0 !important;
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
}
button.btn.signup-submit-btn:hover:not(:disabled) {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}

/* Account / user dashboard – all buttons no corners; yellow → #444444 */
.account-page .btn {
    border-radius: 0 !important;
}
.account-page .btn-primary {
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
}
.account-page .btn-primary:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #fff !important;
}
.account-page .btn-outline-primary {
    border-color: #444444 !important;
    color: #444444 !important;
    background-color: transparent !important;
}
.account-page .btn-outline-primary:hover {
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff !important;
}