:root {
    --primary-color: rgb(246, 220, 0);
    --lighter-primary-color: color-mix(
        in srgb,
        var(--primary-color) 60%,
        white 40%
    );
    --light-primary-color: color-mix(
        in srgb,
        var(--primary-color) 80%,
        white 20%
    );
    --dark-primary-color: color-mix(
        in srgb,
        var(--primary-color) 80%,
        black 20%
    );
    --darker-primary-color: color-mix(
        in srgb,
        var(--primary-color) 60%,
        black 40%
    );
    --light-text: rgb(253, 241, 241);
    --dark-text: rgb(41, 38, 0);
    --light-bg: rgb(255, 252, 229);
    --darker-bg: rgb(39, 35, 13);
    --danger-color: rgb(209, 0, 0);
    --success-color: rgb(64, 224, 0);
    --warning-color: rgb(255, 159, 0);
    --info-color: rgb(0, 174, 255);
    --white: rgb(255, 255, 255);
    --dark-bg: rgb(56, 55, 49);
    --gray: rgb(80, 80, 80);
    --font-family: "Public Sans", sans-serif;
}

body,
html {
    font-family: var(--font-family);
    font-weight: 500;
}

.lighter-primary-bg {
    background-color: var(--light-text);
}

.light-primary-bg {
    background-color: var(--light-primary-color);
}

.glass-bg {
    background: linear-gradient(
        135deg,
        rgba(180, 180, 180, 0) 0%,
        rgba(180, 180, 180, 0.6) 100%
    );
    backdrop-filter: blur(16px);
}

.y-on-hover {
    transition: all 0.3s ease-in-out;
}

.y-on-hover:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
}

.active.y-on-hover:hover {
    transform: translateY(0px);
    transition: all 0.3s ease-in-out;
}

.y-on-hover-sm {
    transition: all 0.3s ease-in-out;
}

.y-on-hover-sm:hover {
    transform: translateY(-1px);
    transition: all 0.3s ease-in-out;
}

.active.y-on-hover-sm:hover {
    transform: translateY(0px);
    transition: all 0.3s ease-in-out;
}

.zoom-in-on-hover {
    transition: all 0.3s ease-in-out;
}

.zoom-in-on-hover:hover {
    transform: scale(1.03);
    transition: all 0.3s ease-in-out;
}

.active.zoom-in-on-hover:hover {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.zoom-in-on-hover-sm {
    transition: all 0.3s ease-in-out;
}

.zoom-in-on-hover-sm:hover {
    transform: scale(1.01);
    transition: all 0.3s ease-in-out;
}

.active.zoom-in-on-hover-sm:hover {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

/* ----------Navbar---------- */
.announcement-slider {
    display: flex;
    animation: slide 15s infinite;
}

.announcement-slider p {
    margin: 0;
    flex: 0 0 100%;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    33% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0%);
    }
}

.contact-header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0px !important;
}

.logo {
    width: auto;
    height: 70px;
}

.header-search {
    padding: 5px 100px;
}


.navbar {
    padding: 0px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.floating-nav {
    box-shadow: none;
}

.floating-nav:hover {
    box-shadow: none;
}

.logo {
    width: auto;
    height: 70px;
}

.header-search {
    padding: 5px 100px;
}

.navbar-nav.center-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-brand,
.nav-link {
    color: black !important;
    font-size: 1rem;
    padding: 5px 10px !important;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

.navbar-brand,
.nav-link a {
    color: black !important;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover a {
    color: var(--dark-primary-color) !important;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--dark-primary-color) !important;
    background-color: rgba(255, 255, 255, 0.61);
    transition: all 0.3s ease-in-out;
}

a.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    width: max-content;
}

.navbar-nav {
    max-width: 90vw;
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    padding: 5px 0;
}

/* Mega Menu Styles */
.megamenu-fw {
    position: static !important;
}

.megamenu-fw .dropdown-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    margin-top: 0;
    border-radius: 0 0 10px 10px;
    border: none;
}

.megamenu-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.megamenu-content .w-100 h5 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.megamenu-content .w-100 .nav-link:hover {
    background-color: transparent;
}

.megamenu-column {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.megamenu-columns-2 {
    flex-basis: calc(50% - 15px);
}

.megamenu-columns-3 {
    flex-basis: calc(33.333% - 20px);
}

.megamenu-columns-4 {
    flex-basis: calc(25% - 22.5px);
}

.megamenu-column h5 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

.megamenu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-column ul li {
    margin-bottom: 8px;
}

.megamenu-column ul li a {
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 5px 0;
}

.megamenu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.megamenu-banner {
    flex: 0 0 250px;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.megamenu-banner img {
    max-height: 200px;
    width: auto;
    border-radius: 15px;
    overflow: hidden;
}

.dropdown-menu-mobile {
    display: none;
}

ul.navbar-nav {
    overflow-x: auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar {
        background: white !important;
        padding-top: 5px !important;
    }

    .navbar-collapse.collapse.show {
        transition: all 0.2s ease-in-out;
    }

    .navbar-collapse.collapse.show ul {
        background: white !important;
        width: 100%;
        transition: all 0.2s ease-in-out;
    }

    .megamenu-fw .dropdown-menu {
        display: none;
    }

    .dropdown-menu-mobile {
        display: none;
    }

    .dropdown-menu-mobile.show {
        display: block;
    }

    ul.navbar-nav {
        overflow-x: hidden;
    }
}

/* ========== Shop pre-header (free delivery banner) ========== */
.shop-preheader {
    background: var(--primary-color, #f3c623);
    color: var(--dark-text, #1a1a1a);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}
.shop-preheader__inner {
    max-width: 100%;
}
.shop-preheader__text {
    margin: 0;
}

/* ========== Shop header (modern) ========== */
.shop-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.shop-header:has(.dropdown.show),
.shop-header.shop-header--dropdown-open {
    z-index: 1100;
}
.shop-header:has(.dropdown.show) .shop-header__categories-scroll,
.shop-header.shop-header--dropdown-open .shop-header__categories-scroll {
    overflow-y: visible;
}
.shop-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    min-height: 52px;
}
.shop-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    color: #111;
}
.shop-header__logo-img {
    height: 50px;
    width: auto;
    display: block;
}
.shop-header__logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: inherit;
}
.shop-header__nav {
    display: none;
}
@media (min-width: 992px) {
    .shop-header__nav {
        display: block;
        flex: 1;
        margin: 0 0.75rem;
    }
}
.shop-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.15rem;
}
.shop-header__nav-link {
    display: inline-block;
    padding: 0.4rem 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 0.4rem;
    transition: color 0.2s ease, background 0.2s ease;
}
.shop-header__nav-link:hover {
    color: var(--primary-color);
}
/* Categories bar (second row, desktop only, horizontal scroll) */
.shop-header__categories-bar {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(0, 0, 0, 0.02);
    overflow: visible;
}
@media (min-width: 992px) {
    .shop-header__categories-bar {
        display: block;
    }
}
.shop-header__categories-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.shop-header__categories-scroll::-webkit-scrollbar {
    height: 4px;
}
.shop-header__categories-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}
.shop-header__categories-list {
    list-style: none;
    margin: 0;
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.15rem;
    min-width: min-content;
}
.shop-header__categories-list .shop-header__nav-link {
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
    font-size: 0.8125rem;
}
.shop-header__categories-list .shop-header__nav-link--dropdown {
    padding-right: 0.5rem;
}
.shop-header__categories-list .shop-header__chevron {
    font-size: 0.6rem;
}
.shop-header__nav-link--dropdown {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.3;
}
.shop-header__chevron {
    font-size: 0.65rem;
    margin-left: 0.25rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
}
.dropdown.show .shop-header__chevron {
    transform: rotate(180deg);
}
.shop-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.shop-header__search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.shop-header__search-trigger:hover {
    background: var(--primary-color);
    color: var(--dark-text);
}
.shop-header__cart {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.shop-header__cart:hover {
    background: var(--primary-color);
    color: var(--dark-text);
}
.shop-header__cart i {
    font-size: 1.05rem;
}
.shop-header__fav {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.shop-header__fav:hover {
    background: var(--primary-color);
    color: var(--dark-text);
}
.shop-header__fav i {
    font-size: 1.05rem;
}
.shop-header__drawer-fav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 0.5rem;
    background: #f5f5f5;
}
.shop-header__drawer-fav:hover {
    background: var(--primary-color);
    color: var(--dark-text);
}
.shop-header__cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--danger-color, #dc3545);
    color: #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.shop-header__cart-count:empty,
.shop-header__cart-count[aria-live]:empty {
    display: none;
}
#cartCounter[style*="display: none"] {
    display: none !important;
}
.shop-header__toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 0.5rem;
    background: #f5f5f5;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
}
.shop-header__toggler:hover {
    background: #eee;
}
@media (min-width: 992px) {
    .shop-header__toggler {
        display: none;
    }
}
.shop-header__toggler-icon {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}
.shop-header__drawer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .shop-header__drawer.show {
        position: fixed;
        top: 52px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        background: #fff;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        max-height: calc(100vh - 52px);
    }
    body.shop-header-drawer-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}
.shop-header__drawer-inner {
    padding: 1rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* Mobile search modal */
.shop-search-modal__content {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}
.shop-search-modal__form {
    flex: 1;
    min-width: 0;
}
.shop-search-modal__input-wrap {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}
.shop-search-modal__input {
    flex: 1;
    min-width: 0;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
}
.shop-search-modal__input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.shop-search-modal__btn {
    flex-shrink: 0;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background: var(--primary-color);
    color: var(--dark-text);
    cursor: pointer;
}
.shop-search-modal__close {
    flex-shrink: 0;
    margin-left: 0.5rem;
}
.shop-search-modal__results {
    max-height: 60vh;
    overflow-y: auto;
    border-radius: 0.5rem;
}
.shop-search-modal__results .list-group-item {
    border-radius: 0;
}
.shop-header__drawer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop-header__drawer-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.shop-header__drawer-nav li a,
.shop-header__drawer-toggle {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-header__drawer-nav li a:hover {
    color: var(--primary-color);
}
.shop-header__drawer-children {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
    display: none;
}
.shop-header__drawer-children.show {
    display: block;
}
.shop-header__drawer-children li a {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}
.shop-header__dropdown-mobile {
    display: none;
}
@media (min-width: 992px) {
    .shop-header__dropdown-mobile {
        display: none !important;
    }
}
.shop-header__dropdown-mobile.show {
    display: block;
}
.shop-header__drawer-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-radius: 0.5rem;
    background: #f5f5f5;
}
.shop-header__drawer-cart:hover {
    background: var(--primary-color);
    color: var(--dark-text);
}

/* Cart & Favorites drawers (offcanvas) */
.shop-drawer.offcanvas {
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}
.shop-drawer__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}
.shop-drawer__title {
    font-size: 1.3125rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}
.shop-drawer__body {
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fafafa;
}
.shop-drawer__list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.shop-drawer__empty {
    text-align: center;
    color: #888;
    padding: 3rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.shop-drawer__empty::before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    opacity: 0.35;
}
#offcanvasCart .shop-drawer__empty::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}
#offcanvasFavorites .shop-drawer__empty::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.shop-drawer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    position: relative;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.shop-drawer-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.08);
}
.shop-drawer-item__remove {
    position: absolute;
    top: 1rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 1;
}
.shop-drawer-item__remove:hover {
    background: rgba(220, 53, 69, 0.12);
    color: #c92a2a;
}
.shop-drawer-item--favorite .shop-drawer-item__remove:hover {
    background: rgba(220, 53, 69, 0.12);
    color: #c92a2a;
}
.shop-drawer-item--favorite .shop-drawer-item__remove i {
    font-size: 1rem;
}
.shop-drawer-item__img-link,
.shop-drawer-item__img-wrap {
    flex-shrink: 0;
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f0f0f0;
}
.shop-drawer-item__img-link--placeholder {
    background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
}
.shop-drawer-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-drawer-item__content {
    flex: 1;
    min-width: 0;
}
.shop-drawer-item__name {
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.35;
    color: #111;
    display: block;
    margin-bottom: 0.25rem;
}
.shop-drawer-item__name--link {
    text-decoration: none;
    transition: color 0.2s ease;
}
.shop-drawer-item__name--link:hover {
    color: var(--primary-color);
}
.shop-drawer-item__meta {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.375rem;
    line-height: 1.4;
}
.shop-drawer-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.shop-drawer-item__qty {
    font-size: 0.8125rem;
    color: #888;
}
.shop-drawer-item__price {
    font-weight: 700;
    font-size: 1rem;
    color: #111;
    letter-spacing: -0.01em;
}
.shop-drawer-item__view {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap 0.2s ease, opacity 0.2s ease;
}
.shop-drawer-item__view:hover {
    gap: 0.5rem;
    opacity: 0.9;
}
.shop-drawer__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}
.shop-drawer__totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}
.shop-drawer__totals-label {
    font-weight: 600;
    color: #111;
}
.shop-drawer__totals-value {
    font-weight: 600;
    color: #666;
}
.shop-drawer__totals-value--primary {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
}
.shop-drawer__checkout {
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.shop-drawer__checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.shop-header__dropdown {
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    position: absolute;
    z-index: 1060;
    isolation: isolate;
}
.shop-header__dropdown--in-body {
    position: fixed !important;
    z-index: 1060 !important;
}
.shop-header__dropdown .container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.shop-header__megamenu {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}
.shop-header__megamenu-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.shop-header__megamenu-head {
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}
.shop-header__megamenu-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.02em;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.shop-header__megamenu-title:hover {
    color: var(--dark-primary-color, var(--primary-color));
    opacity: 0.9;
}
.shop-header__megamenu-desc {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: #666;
    font-weight: 400;
}
.shop-header__megamenu-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2.5rem;
    min-width: 0;
    align-content: flex-start;
}
.shop-header__megamenu-col {
    flex: 1 1 0;
    min-width: 100px;
    max-width: 160px;
}
.shop-header__megamenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.shop-header__megamenu-list li {
    margin-bottom: 0.25rem;
}
.shop-header__megamenu-list li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9375rem;
    padding: 0.35rem 0.5rem 0.35rem 0;
    display: block;
    border-radius: 0.35rem;
    transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}
.shop-header__megamenu-list li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
    background: rgba(0, 0, 0, 0.03);
}
.shop-header__megamenu-viewall-row {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.shop-header__megamenu-viewall {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.shop-header__megamenu-viewall:hover {
    color: var(--dark-primary-color, var(--primary-color));
}
.shop-header__megamenu-viewall i {
    font-size: 0.75em;
    transition: transform 0.2s ease;
}
.shop-header__megamenu-viewall:hover i {
    transform: translateX(3px);
}
.shop-header__megamenu-banner {
    flex: 0 0 auto;
    width: 200px;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
}
.shop-header__megamenu-banner-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}
.shop-header__megamenu-banner-link img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.shop-header__megamenu-banner-link:hover img {
    transform: scale(1.05);
}
.shop-header__megamenu-banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.shop-header__megamenu-banner-link:hover .shop-header__megamenu-banner-text {
    opacity: 1;
}
.shop-header .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animation for dropdown */
.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Shop megamenu: custom show (moved to body), always visible when .show */
.shop-header__dropdown[data-megamenu-panel] {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}
.shop-header__dropdown[data-megamenu-panel].show {
    display: block;
}

.zoom-in-on-hover-sm {
    transition: transform 0.2s ease;
}

.zoom-in-on-hover-sm:hover {
    transform: scale(1.05);
}

.desktop-display {
    display: flex;
}

.m-display {
    display: none;
}

.tab-display {
    display: none;
}

/* ----------Hero---------- */

.hero {
    width: 100%;
    height: 100vdh;
}

.hero-img {
    margin-top: 5vh;
    width: 100%;
    height: 75vdh;
    object-fit: cover;
    border-radius: 15px;
}

.h-100vdh {
    height: 100vdh;
}

.hero-title {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 7%;
}

.hero-button {
    position: absolute;
    top: 60%;
    left: 7%;
    font-size: larger !important;
    border-radius: 40px !important;
}

.primary-img {
    width: 100%;
    height: 100%;
}

/* ----------Media Queries---------- */
@media (max-width: 768px) {
    .logo {
        width: auto;
        height: 50px;
    }

    .megamenu .nav,
    .megamenu .collapse,
    .megamenu .dropup,
    .megamenu .dropdown {
        position: relative;
    }

    .megamenu .container {
        position: relative;
    }

    .megamenu .dropdown-menu {
        left: auto;
    }

    .megamenu .megamenu-content {
        padding: 15px;
    }

    .megamenu .megamenu-content h3 {
        margin-top: 0;
        color: var(--primary-color);
        font-size: 18px;
    }

    .megamenu .dropdown.megamenu-fw .dropdown-menu {
        left: 0%;
        transform: translateX(-0%);
    }

    .m-display {
        display: flex;
        flex-direction: row;
    }

    .tab-display {
        display: none;
    }

    .desktop-display {
        display: none;
    }

    .img-footer {
        width: 50% !important;
    }

    .hero {
        height: 20vdh !important;
    }

    .hero-img {
        height: 30vh;
    }

    .hero-title {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.7rem !important;
        padding: 5px 10px !important;
    }

    .h-50vdh {
        height: 50vdh;
    }

    .parallax {
        top: 9vdh !important;
        z-index: 1000;
        height: 20vdh !important;
    }

    .parallax-overlay {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    p {
        font-size: 0.7rem !important;
    }

    .email-img {
        height: 200px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tab-hide {
        display: none;
    }

    .tab-end {
        display: flex;
        flex-direction: row;
    }

    .img-footer {
        height: 100% !important;
        object-fit: contain;
    }

    .hero {
        height: 50vh !important;
    }

    .hero-img {
        height: 40vh;
    }

    .m-display {
        display: none;
    }

    .tab-display {
        display: flex;
        flex-direction: row;
    }

    .desktop-display {
        display: none;
    }

    .h-50vdh {
        height: 50vdh;
    }

    .email-img {
        right: 5%;
    }

    .parallax {
        top: 10vdh !important;
        z-index: 1000 !important;
        height: 25vdh !important;
    }
}

/* ----------Buttons---------- */
.btn-glass {
    color: white !important;
    background-color: color-mix(in srgb, var(--light-bg) 30%, transparent);
    backdrop-filter: blur(16px);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: 0px hidden;
    text-shadow: var(--dark-bg) 0px 0px 2px;
}

.btn-glass:hover {
    color: white !important;
    background-color: color-mix(in srgb, var(--light-bg) 20%, transparent);
    backdrop-filter: blur(16px);
    border: 0px hidden;
    transition: all 0.3s ease-in-out;
}

.btn-glass.active {
    color: white !important;
    background-color: rgba(var(--primary-color), 0.5);
    background-color: rgba(var(--primary-color), 0.5);
    backdrop-filter: blur(16px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    border: 0px hidden;
}

.btn-primary:hover {
    background-color: var(--light-primary-color);
    color: white;
    transition: all 0.3s ease-in-out;
}

.btn-primary.active {
    background-color: var(--light-primary-color);
    color: white;
    transition: all 0.3s ease-in-out;
}

.btn-light {
    background-color: white !important;
    border: 0px !important;
}

.btn-dark {
    background-color: black !important;
    border: 0px !important;
}

.btn-tertiary {
    color: var(--light-text) !important;
    background-color: var(--primary-color);
    backdrop-filter: blur(16px);
    font-weight: 700;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    text-shadow: rgba(68, 68, 68, 0.4) 0px 0px 2px;
}

.btn-tertiary:hover {
    color: white !important;
    background-color: var(--dark-primary-color);
    backdrop-filter: blur(16px);
    transition: all 0.3s ease-in-out;
}

.shake:hover {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
    10%,
    90% {
        transform: translateX(-1px);
    }

    20%,
    80% {
        transform: translateX(2px);
    }

    30%,
    50%,
    70% {
        transform: translateX(-4px);
    }

    40%,
    60% {
        transform: translateX(4px);
    }
}

/* ----------Sections---------- */

section {
    padding-top: 30px;
}

/* ----------Text---------- */

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    color: var(--light-text) !important;
}

.owl-dot.active {
    color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
    transition: all 0.3s ease-in-out;
}

a.text-primary:hover {
    color: var(--dark-primary-color) !important;
    transition: all 0.3s ease-in-out;
}

.text-primary-light {
    color: var(--light-text) !important;
    transition: all 0.3s ease-in-out;
}

a .text-primary-light:hover,
a.text-primary-light:hover {
    color: var(--light-primary-color) !important;
    transition: all 0.3s ease-in-out;
}

.text-primary-dark {
    color: var(--dark-primary-color) !important;
    transition: all 0.3s ease-in-out;
}

a.text-primary-dark:hover {
    color: var(--primary-color) !important;
    transition: all 0.3s ease-in-out;
}

.text-shadow-lg {
    text-shadow: rgba(68, 68, 68, 0.2) 0px 0px 10px;
}

a.text-shadow-lg:hover {
    text-shadow: rgba(68, 68, 68, 0.4) 0px 0px 8px;
}

.text-shadow {
    text-shadow: rgba(68, 68, 68, 0.2) 0px 0px 4px;
}

a.text-shadow:hover {
    text-shadow: rgba(68, 68, 68, 0.4) 0px 0px 4px;
}

.text-shadow-sm {
    text-shadow: rgba(68, 68, 68, 0.2) 0px 0px 2px;
}

a.text-shadow-sm:hover {
    text-shadow: rgba(68, 68, 68, 0.4) 0px 0px 2px;
}

.text-white {
    color: white !important;
}

.text-white-shadow {
    text-shadow: 2px 2px 0px #fff;
}

.text-white-shadow-sm {
    text-shadow: 1px 1px 0px #fff;
}

.bg-nav-sticky {
    background-color: rgba(255, 255, 255, 0.61);
    backdrop-filter: blur(16px);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: var(--light-primary-color) !important;
}

.bg-primary-lighter {
    background-color: var(--lighter-primary-color) !important;
}

.text-lg {
    font-size: 1.2rem !important;
}

.box-shadow {
    box-shadow: black 3px 3px 0px;
}

.box-shadow:hover {
    box-shadow: black 2px 2px 0px;
}

.box-shadow:focus {
    box-shadow: black 3px 3px 0px;
}

.box-shadow-lg {
    box-shadow: black 5px 5px 0px;
}

.box-shadow-lg:hover {
    box-shadow: black 4px 4px 0px;
}

.box-shadow-lg:focus {
    box-shadow: black 5px 5px 0px;
}

.box-shadow-sm {
    box-shadow: var(--dark-primary-color) 2px 2px 0px;
}

.box-shadow-sm:hover {
    box-shadow: var(--primary-color) 1px 1px 0px;
}

.box-shadow-sm:focus {
    box-shadow: var(--dark-primary-color) 2px 2px 0px;
}

/* ----------Card---------- */
.card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.card-body-2 {
    position: absolute;
    top: 90%;
    left: 7%;
    transform: translateY(-90%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* ----- Shop filter (sidebar + mobile collapse) ----- */
.shop-filter {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.25rem 1rem 1.5rem;
    position: sticky;
    top: 1.5rem;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shop-filter__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.shop-filter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shop-filter__group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.shop-filter__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.shop-filter__select,
.shop-filter__input {
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-filter__select:focus,
.shop-filter__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 25%, transparent);
    outline: none;
}

.shop-filter__row {
    display: flex;
    gap: 0.5rem;
}

.shop-filter__row .shop-filter__input {
    flex: 1;
    min-width: 0;
}

/* Price range dual-handle slider */
.shop-filter__group--slider .shop-filter__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shop-filter__price-display {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1a1a1a;
}

.shop-filter__slider-wrap {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
}

.shop-filter__slider-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    pointer-events: none;
}

.shop-filter__range {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 28px;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.shop-filter__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: grab;
    pointer-events: auto;
    transition: transform 0.15s ease;
}

.shop-filter__range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.shop-filter__range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: grab;
    pointer-events: auto;
    transition: transform 0.15s ease;
}

.shop-filter__range::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.shop-filter__range--min {
    z-index: 2;
}

.shop-filter__range--max {
    z-index: 1;
}

.shop-filter__range--max::-webkit-slider-thumb {
    cursor: grab;
}

.shop-filter__range--max::-moz-range-thumb {
    cursor: grab;
}

.shop-filter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.shop-filter__tag {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 9999px;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.06);
    color: #374151;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.shop-filter__tag:hover {
    background: rgba(0, 0, 0, 0.09);
    color: #1a1a1a;
}

.shop-filter__tag--active {
    background: var(--primary-color);
    color: var(--dark-text);
    border-color: var(--dark-primary-color);
}

.shop-filter__tag--active:hover {
    background: var(--light-primary-color);
    color: var(--dark-text);
}

.shop-filter__actions {
    margin-top: 0.25rem;
}

.shop-filter__submit {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* Mobile: filter toggle button */
.shop-filter-toggle {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #1a1a1a;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.shop-filter-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.18);
    color: #1a1a1a;
}

.shop-filter-toggle i {
    opacity: 0.85;
}

/* Mobile: collapse panel */
.shop-filter--collapse {
    position: relative;
    top: 0;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.shop-filter--collapse .shop-filter__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.shop-filter--collapse .shop-filter__title {
    margin: 0;
}

.shop-filter__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.06);
    color: #374151;
    font-size: 1.1rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-filter__close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.secondary-img {
    border-radius: 10px;
    height: auto;
    object-fit: cover;
}

.text-muted {
    color: #818181 !important;
}

.fs-7 {
    font-size: 0.85rem;
}

.email-img {
    height: 300px;
    position: absolute;
    top: -20px;
}

.banner-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 20px;
    height: 100%;
}

.z-index-1 {
    z-index: 1;
}

/* ----------Item Card---------- */

.product-card {
    background-color: white;
    border-radius: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: scale(0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.category-item {
    padding: 10px;
}

.category-title {
    justify-content: center;
    font-size: 1rem !important;
}

.category-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 100px;
}

.item-card {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
}

/* ---------- Shop product card: reference style (rounded-32 outer, rounded-24 image, hover border + shadow) ---------- */
.shop-product-card {
    background: #fff;
    border-radius: 2rem;
    padding: 0.75rem;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop-product-card:hover {
    border-color: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shop-product-card__img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #F5F5F7;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-product-card__img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.shop-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.shop-product-card:hover .shop-product-card__img {
    transform: scale(1.1);
}

.shop-product-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    z-index: 20;
    pointer-events: none;
}

.shop-product-card__badge {
    font-size: 12px;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shop-product-card__badge--sale {
    background: #dc3545;
    color: #fff;
}

.shop-product-card__badge--new {
    background: #000;
    color: #fff;
}

.shop-product-card__badge--danger {
    background: #dc3545;
    color: #fff;
}

.shop-product-card__wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 30;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.shop-product-card__wishlist:hover {
    background: rgba(255, 255, 255, 1);
    color: #dc3545;
    transform: scale(1.05);
}

.shop-product-card__wishlist--active,
.shop-product-card__wishlist--active i {
    color: #dc3545;
}

.shop-product-card__wishlist i {
    font-size: 1.1rem;
}

.shop-product-card__body {
    padding: 0 0.5rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.shop-product-card__title-link {
    color: inherit;
}

.shop-product-card__title-link:hover {
    color: inherit;
}

.shop-product-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-product-card__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.shop-product-card__price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
}

.shop-product-card__compare {
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
    text-decoration: line-through;
}

.shop-product-card__desc {
    font-size: 0.8rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.25rem;
}

/* ---------- Shop banner card (reusable promo card) ---------- */
.shop-banner-card {
    background: #fff;
    border-radius: 2rem;
    padding: 0.75rem;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: block;
}

.shop-banner-card:hover {
    border-color: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shop-banner-card:hover .shop-banner-card__img {
    transform: scale(1.05);
}

.shop-banner-card__img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f7;
    border-radius: 1.5rem;
}

.shop-banner-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-banner-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.shop-banner-card__cta {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.25s ease, transform 0.25s ease;
}

.shop-banner-card:hover .shop-banner-card__cta {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .shop-banner-card {
        padding: 0.5rem;
        border-radius: 1.25rem;
    }
    .shop-banner-card__img-wrap {
        border-radius: 1rem;
        aspect-ratio: 16/10;
    }
    .shop-banner-card__overlay {
        padding: 1rem 0.75rem;
    }
    .shop-banner-card__cta {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }
}

/* ---------- Shop hero slideshow ---------- */
.shop-hero {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: #f5f5f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shop-hero__carousel {
    position: relative;
}

.shop-hero__inner {
    overflow: hidden;
    border-radius: 2rem;
}

.shop-hero__slide {
    position: relative;
}

.shop-hero__link {
    display: block;
    aspect-ratio: 21/9;
    overflow: hidden;
}

.shop-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shop-hero__slide.active .shop-hero__img {
    transform: scale(1);
}

.shop-hero:hover .shop-hero__slide.active .shop-hero__img {
    transform: scale(1.03);
}

/* Prev/next controls */
.shop-hero__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1a1a1a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-hero__control:hover {
    background: var(--primary-color) !important;
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.shop-hero__control:focus,
.shop-hero__control:active,
.shop-hero__control:focus-visible {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1a1a1a;
    border: none;
    outline: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
}

.shop-hero__control:focus:hover,
.shop-hero__control:active:hover {
    background: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Override Bootstrap carousel control focus/active so our style is kept */
.shop-hero .carousel-control-prev,
.shop-hero .carousel-control-next {
    opacity: 1 !important;
}

.shop-hero .carousel-control-prev:focus,
.shop-hero .carousel-control-next:focus,
.shop-hero .carousel-control-prev:active,
.shop-hero .carousel-control-next:active {
    opacity: 1 !important;
    outline: none !important;
}

.shop-hero__control--prev {
    left: 1rem;
}

.shop-hero__control--next {
    right: 1rem;
}

.shop-hero__control-icon {
    font-size: 1rem;
}

/* Indicators */
.shop-hero__indicators {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    margin: 0;
    gap: 0.5rem;
    justify-content: center;
}

.shop-hero__indicators button,
.shop-hero .carousel-indicators [data-bs-target],
.shop-hero .carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: transform 0.2s ease, background 0.2s ease;
}

.shop-hero__indicators button:hover {
    background: rgba(255, 255, 255, 0.8) !important;
}

.shop-hero__indicators button.active,
.shop-hero .carousel-indicators button.active,
.shop-hero .carousel-indicators [data-bs-target].active {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}

/* Force theme color on active indicator (Bootstrap may override) */
#shopHeroCarousel .carousel-indicators [data-bs-target].active,
#shopHeroCarousel .shop-hero__indicators button.active {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

/* Hide Bootstrap default control icons (we use custom) */
.shop-hero .carousel-control-prev-icon,
.shop-hero .carousel-control-next-icon {
    display: none;
}

@media (max-width: 767px) {
    .shop-hero {
        border-radius: 1.25rem;
    }
    .shop-hero__inner {
        border-radius: 1.25rem;
    }
    .shop-hero__link {
        aspect-ratio: 16/10;
    }
    .shop-hero__control {
        width: 2.5rem;
        height: 2.5rem;
    }
    .shop-hero__control--prev {
        left: 0.75rem;
    }
    .shop-hero__control--next {
        right: 0.75rem;
    }
    .shop-hero__control-icon {
        font-size: 0.85rem;
    }
    .shop-hero__indicators {
        bottom: 0.75rem;
    }
    .shop-hero__indicators button,
    .shop-hero .carousel-indicators [data-bs-target],
    .shop-hero .carousel-indicators button {
        width: 6px !important;
        height: 6px !important;
        min-width: 6px !important;
    }
}

/* ---------- Shop collection card (collections page) ---------- */
.shop-collection-card {
    background: #fff;
    border-radius: 2rem;
    padding: 0.75rem;
    border: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: block;
    height: 100%;
}

.shop-collection-card:hover {
    border-color: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shop-collection-card__img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f7;
    border-radius: 1.5rem;
}

.shop-collection-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(0.8);
}

.shop-collection-card:hover .shop-collection-card__img {
    transform: scale(1);
}

.shop-collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    transition: background 0.3s ease;
}

.shop-collection-card:hover .shop-collection-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.shop-collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shop-collection-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.shop-collection-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.shop-collection-card:hover .shop-collection-card__cta {
    background: var(--primary-color);
    color: #1a1a1a;
    border-color: transparent;
    transform: translateY(-2px);
}

.shop-collection-card__cta i {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.shop-collection-card:hover .shop-collection-card__cta i {
    transform: translateX(3px);
}

.shop-collection-empty {
    padding: 2rem 1rem;
}

.shop-collection-empty i {
    font-size: 3rem;
    display: block;
}

.shop-collection-empty__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.5rem;
}

.shop-collection-empty__text {
    font-size: 0.9375rem;
}

@media (max-width: 767px) {
    .shop-collection-card {
        padding: 0.5rem;
        border-radius: 1.25rem;
    }
    .shop-collection-card__img-wrap {
        border-radius: 1rem;
        aspect-ratio: 1;
    }
    .shop-collection-card__content {
        padding: 1rem 0.75rem;
    }
    .shop-collection-card__title {
        font-size: 1.1rem;
    }
    .shop-collection-card__cta {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

/* ---------- Shop carousel (modern) ---------- */
.shop-carousel-wrap {
    position: relative;
    padding: 0 3rem;
}

@media (max-width: 767px) {
    .shop-carousel-wrap {
        padding: 0 0.5rem;
    }
    .shop-carousel-wrap .owl-item {
        padding: 0.4rem 0.3rem;
    }
}

/* Shop product card + section head: mobile */
@media (max-width: 767px) {
    .shop-product-card {
        padding: 0.6rem;
        border-radius: 1.25rem;
    }
    .shop-product-card__img-wrap {
        border-radius: 1rem;
        margin-bottom: 0.5rem;
    }
    .shop-product-card__badges {
        top: 0.5rem;
        left: 0.5rem;
        gap: 0.35rem;
    }
    .shop-product-card__badge {
        font-size: 10px;
        padding: 0.25rem 0.6rem;
    }
    .shop-product-card__wishlist {
        top: 0.5rem;
        right: 0.5rem;
        width: 2rem;
        height: 2rem;
    }
    .shop-product-card__wishlist i {
        font-size: 0.9rem;
    }
    .shop-product-card__body {
        padding: 0 0.25rem 0.25rem;
    }
    .shop-product-card__title {
        font-size: 17px;
    }
    .shop-product-card__price {
        font-size: 1rem;
    }
    .shop-product-card__compare {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .shop-product-card {
        padding: 0.5rem;
        border-radius: 1rem;
    }
    .shop-product-card__img-wrap {
        border-radius: 0.75rem;
        margin-bottom: 0.4rem;
    }
    .shop-product-card__badges {
        top: 0.4rem;
        left: 0.4rem;
    }
    .shop-product-card__badge {
        font-size: 9px;
        padding: 0.2rem 0.5rem;
    }
    .shop-product-card__wishlist {
        width: 1.75rem;
        height: 1.75rem;
        top: 0.4rem;
        right: 0.4rem;
    }
    .shop-product-card__wishlist i {
        font-size: 0.8rem;
    }
    .shop-product-card__title {
        font-size: 19px;
    }
    .shop-product-card__price {
        font-size: 0.9rem;
    }
}

/* Section head: single row on mobile (Latest Additions + View All + arrows) */
@media (max-width: 767px) {
    .shop-section-head {
        flex-wrap: nowrap;
        gap: 0.35rem;
        margin-bottom: 0.75rem;
    }
    .shop-section-head__title {
        font-size: 0.9375rem;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .shop-section-head__actions {
        flex-shrink: 0;
        gap: 0.25rem;
    }
    .shop-section-head__link {
        display: none;
    }
    .shop-carousel-nav-btn {
        width: 1.625rem;
        height: 1.625rem;
        font-size: 0.5625rem;
    }
}

.shop-carousel-wrap .owl-carousel {
    overflow: visible;
}

.shop-carousel-wrap .owl-stage-outer {
    overflow: hidden;
    border-radius: 1.5rem;
}

.shop-carousel-wrap .owl-stage {
    padding: 0.5rem 0;
}

.shop-carousel-wrap .owl-item {
    padding: 0.75rem 0.5rem;
    overflow: visible !important;
}

/* Prevent old .card / .product-card from clipping shop product cards */
.card:has(.shop-product-card),
.product-card:has(.shop-product-card),
.shop-product-card.card,
.shop-product-card.product-card {
    overflow: visible !important;
    box-shadow: none;
}

.shop-product-card.card:hover,
.shop-product-card.product-card:hover {
    border-color: #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shop-carousel-wrap .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    margin: 0;
}

.shop-carousel-wrap .owl-nav button {
    pointer-events: auto;
    position: absolute;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #fff !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-carousel-wrap .owl-nav button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
    background: var(--primary-color) !important;
    color: #1a1a1a !important;
    border-color: transparent !important;
}

.shop-carousel-wrap .owl-nav button.owl-prev {
    left: -0.5rem;
}

.shop-carousel-wrap .owl-nav button.owl-next {
    right: -0.5rem;
    left: auto;
}

@media (max-width: 767px) {
    .shop-carousel-wrap .owl-nav button {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.75rem;
    }
    .shop-carousel-wrap .owl-nav button.owl-prev {
        left: 0.15rem;
    }
    .shop-carousel-wrap .owl-nav button.owl-next {
        right: 0.15rem;
    }
}

.shop-carousel-wrap .owl-dots {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.shop-carousel-wrap .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2) !important;
    border: none;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.shop-carousel-wrap .owl-dot:hover {
    background: rgba(0, 0, 0, 0.35) !important;
}

.shop-carousel-wrap .owl-dot.active {
    background: var(--primary-color) !important;
    transform: scale(1.25);
}

.shop-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.shop-section-head__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.shop-section-head__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-section-head__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.35rem 0.6rem;
    border-radius: 0.5rem;
    transition: color 0.2s ease, background 0.2s ease;
}

.shop-section-head__link:hover {
    color: var(--dark-primary-color);
    background: rgba(0, 0, 0, 0.04);
}

.shop-carousel-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    color: #374151;
    background: #f9fafb !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.shop-carousel-nav-btn:hover {
    background: var(--primary-color) !important;
    color: #1a1a1a;
    border-color: transparent !important;
    transform: scale(1.06);
}

/* When nav is in section head, hide the default carousel nav */
.shop-carousel-wrap--nav-in-head .owl-nav {
    display: none !important;
}

.shop-carousel-wrap--nav-in-head {
    padding-left: 0;
    padding-right: 0;
}

button.owl-prev,
button.owl-next {
    display: none !important;
    background-color: transparent !important;
    border: none !important;
}

.shop-carousel-wrap .owl-nav button.owl-prev,
.shop-carousel-wrap .owl-nav button.owl-next {
    display: flex !important;
}

.bank_section,
.whish_section {
    border: 1px solid gray;
    padding: 15px 25px;
    margin-top: 10px;
    border-radius: 10px;
}

/* ----------Footer---------- */

footer {
    box-shadow: rgba(0, 0, 0, 0.15) 0px -8px 16px 0px;
}

/* Shop footer (simple white, single column) */
.shop-footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3rem 3rem 0 0;
    padding: 2rem 1rem;
    margin-top: 2rem;
    text-align: center;
}

.shop-footer__inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.shop-footer__logo-link {
    display: block;
    line-height: 0;
}

.shop-footer__logo {
    max-width: 150px;
    height: auto;
    display: block;
}

.shop-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1rem;
}

.shop-footer__link {
    color: #555;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.shop-footer__link:hover {
    color: #111;
}

.shop-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.shop-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-footer__social:hover {
    background: #e0e0e0;
    color: #111;
}

.shop-footer__social i {
    font-size: 0.875rem;
}

.shop-footer__copy {
    font-size: 0.8125rem;
    color: #888;
    margin: 0;
}

.img-footer {
    width: auto;
    height: fit-content;
}

.img-footer-logo {
    width: 200px !important;
}

.rounded-white {
    border-radius: 200px !important;
    background-color: var(--light-text) !important;
}

.rounded {
    border-radius: 20px !important;
}

/* ----------Form---------- */

.search-bar {
    width: 40vw;
    text-align: start !important;
    padding-top: 10px;
    padding-bottom: 10px;
}

.input {
    border: black 1.5px solid;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.input:focus {
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    border: var(--primary-color) 1.5px solid;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 25%, transparent);
}

.border-primary {
    border: 2px solid var(--primary-color) !important;
}

/* start checkout */
.checkout-container {
    max-width: 1080px;
    margin: auto;
    padding: 20px;
}

.summary-card {
    padding: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 8px;
}

/* end checkout */

/* WhatsApp Floating Button (same as Welcome page) */
.whatsapp-float-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 50;
    text-decoration: none;
    opacity: 0;
    transform: scale(0);
    animation: whatsapp-float-enter 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.whatsapp-float-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}
.whatsapp-float-btn:active {
    transform: scale(0.9);
}
.whatsapp-float-btn__ping {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: #25D366;
    pointer-events: none;
    animation: whatsapp-float-ping 5.5s ease-out infinite;
}
.whatsapp-float-btn__icon {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}
@keyframes whatsapp-float-enter {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes whatsapp-float-ping {
    0% { transform: scale(1); opacity: 0.7; }
    63.6% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Scroller */
#kt_app_body::-webkit-scrollbar-track,
.custom_scroller::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
    border-radius: 7px !important;
    background-color: var(--darkest-primary-color) !important;
}

#kt_app_body::-webkit-scrollbar,
.custom_scroller::-webkit-scrollbar {
    width: 12px !important;
    background-color: var(--darkest-primary-color) !important;
}

#kt_app_body::-webkit-scrollbar-thumb,
.custom_scroller::-webkit-scrollbar-thumb {
    border-radius: 7px !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
    background: var(--primary-color) !important;
    background: linear-gradient(
        180deg,
        var(--primary-color) 50%,
        var(--light-primary-color) 100%
    ) !important;
}

/* -----------------transitions---------------- */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.4s ease-out;
}

/* Different animation classes */
.fade-in {
    opacity: 0;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
}

.slide-down {
    opacity: 0;
    transform: translateY(-50px);
}

/* Active states when element is visible */
.fade-in.active {
    opacity: 1;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-down.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optional animation delay classes */
.delay-200 {
    transition-delay: 200ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-600 {
    transition-delay: 600ms;
}

.whish_section {
    background-color: white;
}

#searchResults,
#searchResultsMobile {
    z-index: 9999;
}


.spam-input {
    width: 100px;
    height: 50px;
    border-radius: 10px;
}

.megamenu-content {
    width: 90vw;
}

.list-style-none {
    list-style: none;
}

.border-none {
    border: none;
}

.shadows-none {
    box-shadow: none;
    text-shadow: none;
}

/* Collection */
.collection-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    border: none;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.collection-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-image {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    transition: all 0.4s ease;
    z-index: 1;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.collection-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    z-index: 2;
}

.collection-title {
    margin-top: auto;
}

.collection-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.collection-actions {
    margin-top: 1rem;
}

.collection-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.collection-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
}

.collection-card:hover .collection-cta-btn::before {
    left: 100%;
}

.collection-card:hover .collection-cta-btn {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.collection-card:hover .btn-icon {
    transform: translateX(3px);
}

.empty-state {
    padding: 3rem 1rem;
}

.empty-state i {
    display: block;
}

/* ----- Products catalog header & view toggle ----- */
.shop-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shop-products-head__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.02em;
}

.shop-view-toggle {
    display: inline-flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    padding: 3px;
    gap: 2px;
}

.shop-view-toggle__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 9999px;
    background: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.shop-view-toggle__btn:hover {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.9);
}

.shop-view-toggle__btn:active {
    transform: scale(0.96);
}

.shop-view-toggle__btn.active {
    background: var(--primary-color);
    color: var(--dark-text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shop-view-toggle__btn.active:hover {
    background: var(--light-primary-color);
    color: var(--dark-text);
}

.shop-view-toggle__btn i {
    font-size: 0.875rem;
}

/* Default Grid */
#productContainer.grid-view .product-item {
    display: block;
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

/* List View – horizontal card rows, full width */
#productContainer.list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

#productContainer.list-view .product-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

#productContainer.list-view .product-card,
#productContainer.list-view .shop-product-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 0;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    min-height: 160px;
}

#productContainer.list-view .shop-product-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* Image area: full height of card, fixed width */
#productContainer.list-view .shop-product-card__img-wrap {
    flex: 0 0 200px;
    width: 200px;
    min-height: 160px;
    align-self: stretch;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

#productContainer.list-view .shop-product-card__img-link {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

#productContainer.list-view .product-card img,
#productContainer.list-view .shop-product-card__img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    margin-right: 0;
}

#productContainer.list-view .card-body,
#productContainer.list-view .shop-product-card__body {
    flex: 1;
    padding: 1.25rem 1.5rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
}

#productContainer.list-view .shop-product-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

#productContainer.list-view .shop-product-card__title-link:hover {
    color: var(--dark-primary-color);
}

#productContainer.list-view .shop-product-card__prices {
    margin-bottom: 0.35rem;
}

#productContainer.list-view .shop-product-card__price {
    font-size: 1.0625rem;
    font-weight: 600;
}

#productContainer.list-view .shop-product-card__compare {
    margin-left: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
}

#productContainer.list-view .shop-product-card__desc {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: var(--gray);
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#productContainer.list-view .btn-view {
    width: fit-content !important;
}

/* ----- Shop pagination (Laravel Bootstrap) ----- */
.shop-pagination-wrap .pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.shop-pagination-wrap .page-item {
    margin: 0;
}

.shop-pagination-wrap .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.75rem;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-pagination-wrap .page-link:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.18);
    color: #1a1a1a;
}

.shop-pagination-wrap .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-text);
}

.shop-pagination-wrap .page-item.disabled .page-link {
    opacity: 0.6;
    pointer-events: none;
}

.shop-pagination-wrap .page-item:first-child .page-link,
.shop-pagination-wrap .page-item:last-child .page-link {
    border-radius: 0.75rem;
}

/* ----- Product detail page (PDP) ----- */
.pdp__breadcrumb {
    font-size: 0.875rem;
}

.pdp__breadcrumb .breadcrumb-item a {
    color: var(--gray);
}

.pdp__breadcrumb .breadcrumb-item a:hover {
    color: var(--dark-primary-color);
}

.pdp__breadcrumb .breadcrumb-item.active {
    color: #1a1a1a;
    font-weight: 500;
}

.pdp__gallery {
    position: sticky;
    top: 1.5rem;
}

.pdp__zoom {
    position: relative;
    border-radius: 1.25rem;
    overflow: visible;
}
.pdp__main-image-wrap {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #f5f5f7;
    aspect-ratio: 1;
    cursor: zoom-in;
}
.pdp__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp__zoom-lens {
    display: none;
}
.pdp__zoom-result {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 0.75rem;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    background-repeat: no-repeat;
    background-color: #fff;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.12s ease, visibility 0.12s ease;
    z-index: 3;
    transform: translate(-50%, -50%);
}
.pdp__zoom.pdp__zoom--enabled:hover .pdp__zoom-result,
.pdp__zoom.pdp__zoom--enabled.pdp__zoom--touch-active .pdp__zoom-result {
    visibility: visible;
    opacity: 1;
}
.pdp__zoom-toggle {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.pdp__zoom-toggle:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.pdp__zoom-toggle[aria-pressed="true"] {
    background: var(--primary-color);
    color: var(--dark-text);
    border-color: transparent;
}
.pdp__zoom-toggle[aria-pressed="true"]:hover {
    background: var(--dark-primary-color);
    color: #fff;
}

/* PDP main image: favorite button top right */
.pdp__wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    color: #374151;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pdp__wishlist:hover {
    background: #fff;
    color: #dc3545;
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.pdp__wishlist.shop-product-card__wishlist--active,
.pdp__wishlist.shop-product-card__wishlist--active i {
    color: #dc3545;
}
.pdp__wishlist i {
    font-size: 1.15rem;
}
@media (max-width: 767px) {
    .pdp__wishlist {
        top: 0.5rem;
        right: 0.5rem;
        width: 2.25rem;
        height: 2.25rem;
    }
    .pdp__wishlist i {
        font-size: 1rem;
    }
}

.pdp__zoom-toggle-icon--on,
.pdp__zoom-toggle-label--off { display: none; }
.pdp__zoom-toggle-icon--off,
.pdp__zoom-toggle-label--on { display: inline; }
.pdp__zoom--enabled .pdp__zoom-toggle-icon--on,
.pdp__zoom--enabled .pdp__zoom-toggle-label--off { display: inline; }
.pdp__zoom--enabled .pdp__zoom-toggle-icon--off,
.pdp__zoom--enabled .pdp__zoom-toggle-label--on { display: none; }
@media (max-width: 767px) {
    .pdp__zoom-result {
        width: 140px;
        height: 140px;
        border-radius: 0.5rem;
    }
    .pdp__zoom-toggle {
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    .pdp__zoom-toggle-label--on,
    .pdp__zoom-toggle-label--off { display: none !important; }
}

.pdp__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
}

.pdp__badge--danger {
    background: var(--danger-color);
    color: #fff;
}

/* ── PDP thumbnail carousel ─────────────────────────────── */
.pdp__thumbs-wrap {
    position: relative;
    margin-top: 0.75rem;
    padding: 0 2rem 1.5rem; /* sides for nav buttons, bottom for dots */
}
.pdp__thumbs-viewport {
    overflow: hidden;
    border-radius: 0.5rem;
}
.pdp__thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    transition: transform 0.3s ease;
    will-change: transform;
}
/* nav arrows */
.pdp__thumbs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 0.75rem)); /* center in thumb area, above dots */
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #333;
    font-size: 0.6rem;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}
.pdp__thumbs-nav:hover {
    background: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.pdp__thumbs-nav:disabled {
    opacity: 0.25;
    pointer-events: none;
}
.pdp__thumbs-nav--prev { left: 0; }
.pdp__thumbs-nav--next { right: 0; }
/* dots */
.pdp__thumbs-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 0.25rem 0;
}
.pdp__thumbs-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.pdp__thumbs-dot.active {
    background: var(--primary-color);
    transform: scale(1.35);
}

.pdp__thumb {
    display: block;
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    background: #f5f5f7;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.pdp__thumb:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.pdp__thumb.active,
.secondary-image.active.pdp__thumb {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.pdp__thumb:hover img,
.pdp__thumb.active img,
.secondary-image.active.pdp__thumb img {
    opacity: 1;
}

.pdp__info {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pdp__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.pdp__alert {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pdp__alert--warning {
    background: rgba(255, 159, 0, 0.12);
    color: #8a5a00;
    border: 1px solid rgba(255, 159, 0, 0.25);
}

.pdp__meta {
    margin-bottom: 1rem;
}

.pdp__category {
    font-size: 0.9375rem;
    color: var(--gray);
}

.pdp__price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    margin-bottom: 0.25rem;
}

.pdp__price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
}

.pdp__price-lbp {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray);
}

.pdp__price--contact .pdp__price-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.pdp__price--contact .pdp__price-link:hover {
    color: var(--dark-primary-color);
}

.pdp__compare {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.25rem;
}

.pdp__compare-price {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.pdp__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 1.25rem 0;
}

.pdp__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pdp__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pdp__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.pdp__label-hint {
    font-weight: 500;
    color: var(--gray);
}

.pdp__select {
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.6rem 0.875rem;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp__select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 25%, transparent);
    outline: none;
}

.pdp__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pdp__option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    cursor: pointer;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pdp__option:hover {
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.02);
}

.pdp__option input:checked + .pdp__option-text {
    font-weight: 600;
}

.pdp__option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.04);
}

.pdp__option-price {
    color: var(--gray);
    font-size: 0.875rem;
}

.pdp__quantity-field {
    margin-top: 0.25rem;
}

.pdp__quantity-field .pdp__label {
    margin-bottom: 0.5rem;
}

/* Quantity: strip container with round glass − / + buttons */
.pdp__quantity-strip {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.625rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: fit-content;
}

.pdp__qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.pdp__qty-btn--glass {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pdp__qty-btn i {
    font-size: 0.65rem;
    font-weight: 700;
}

.pdp__qty-btn:hover:not(:disabled).pdp__qty-btn--glass {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

.pdp__qty-btn:active:not(:disabled).pdp__qty-btn--glass {
    transform: scale(0.94);
    background: color-mix(in srgb, var(--primary-color) 30%, rgba(255, 255, 255, 0.8));
    color: #1a1a1a;
}

.pdp__qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.pdp__qty-value-wrap {
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp__qty-input {
    width: 2rem;
    border: none;
    background: transparent;
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: center;
    padding: 0;
    color: #1a1a1a;
}

.pdp__qty-input:focus {
    outline: none;
}

.pdp__qty-input::-webkit-outer-spin-button,
.pdp__qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdp__qty-input[type=number] {
    -moz-appearance: textfield;
}

.pdp__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}

.pdp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.pdp__btn--primary {
    background: var(--primary-color);
    color: var(--dark-text);
    border: none;
}

.pdp__btn--primary:hover {
    background: var(--dark-primary-color);
    color: var(--dark-text);
}

.pdp__btn--secondary {
    background: #fff;
    color: #1a1a1a;
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.pdp__btn--secondary:hover {
    border-color: var(--primary-color);
    color: #1a1a1a;
    background: #fff;
}

.pdp__share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp__share-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray);
}

.pdp__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    color: var(--gray);
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.pdp__share-link:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.04);
}

.pdp__description {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pdp__description-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem;
}

.pdp__description-body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
}

.pdp__description-body p:last-child {
    margin-bottom: 0;
}

.pdp__similar {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp__similar .shop-section-head__title {
    font-size: 1.375rem;
}

.pdp__similar-note {
    margin-top: -0.5rem;
}

/* PDP thumbs: responsive sizes */
@media (max-width: 767px) {
    .pdp__thumb {
        flex: 0 0 150px;
        width: 150px;
        height: 150px;
    }
    .pdp__thumbs-wrap {
        padding: 0 1.75rem 1.25rem;
    }
}

@media (max-width: 575px) {
    .pdp__thumb {
        flex: 0 0 125px;
        width: 125px;
        height: 125px;
        border-radius: 0.75rem;
    }
    .pdp__thumbs-wrap {
        padding: 0 1.5rem 1.25rem;
    }
    .pdp__thumbs-nav {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (max-width: 767px) {
    .pdp__gallery {
        position: static;
    }
    .pdp__main-image-wrap {
        border-radius: 1rem;
    }
    .pdp__info {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
    }
    .pdp__title {
        font-size: 1.5rem;
    }
    .pdp__price {
        font-size: 1.5rem;
    }
    .pdp__actions {
        flex-direction: column;
    }
    .pdp__actions .pdp__btn {
        width: 100%;
        text-align: center;
    }
    .pdp__thumbs {
        gap: 0.5rem;
    }
}

/* PDP sticky add-to-cart bar (mobile + desktop) */
.pdp--has-sticky-bar {
    padding-bottom: 5.5rem;
}

.pdp-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    padding: 0.5rem 1rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.pdp-sticky-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.pdp-sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pdp-sticky-bar__img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    background: #f5f5f7;
}

.pdp-sticky-bar__info {
    display: flex;
    gap: 0.75rem;
    min-width: 0;
    flex: 1;
}

.pdp-sticky-bar__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.pdp-sticky-bar__price {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* When name is direct child (e.g. contact bar), let it take space */
.pdp-sticky-bar__inner > .pdp-sticky-bar__name {
    flex: 1;
}

.pdp-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.pdp-sticky-bar__btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.pdp-sticky-bar__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pdp-sticky-bar__btn--primary {
    background: var(--primary-color);
    color: var(--dark-text);
}

.pdp-sticky-bar__btn--primary:hover:not(:disabled) {
    background: var(--dark-primary-color);
}

.pdp-sticky-bar__btn--buy {
    background: #1a1a1a;
    color: #fff;
}

.pdp-sticky-bar__btn--buy:hover:not(:disabled) {
    background: #333;
}

.pdp-sticky-bar__btn--full {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 767px) {
    .pdp--has-sticky-bar {
        padding-bottom: 4.5rem;
    }
    .pdp-sticky-bar {
        padding: 0.6rem 0.75rem;
        padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
    }
    .pdp-sticky-bar__inner {
        gap: 0.6rem;
    }
    .pdp-sticky-bar__img {
        width: 44px;
        height: 44px;
        border-radius: 0.4rem;
    }
    .pdp-sticky-bar__info {
        flex: 1;
        min-width: 0;
    }
    .pdp-sticky-bar__name {
        font-size: 0.875rem;
    }
    .pdp-sticky-bar__price {
        font-size: 0.9375rem;
    }
    .pdp-sticky-bar__actions {
        flex-shrink: 0;
    }
    .pdp-sticky-bar__btn--add {
        padding: 0.65rem 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 768px) {
    .pdp-sticky-bar__info {
        flex: 0 1 auto;
    }
    .pdp-sticky-bar__name {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--gray);
    }
}

/* start quantity input */
.quantity-wrapper {
    max-width: 200px;
}

.qty-input {
    width: 100px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid #ddd;
    box-shadow: none;
}

.btn-qty {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.btn-qty:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}
/* end quantity input */

/* ---------- Shop about section ---------- */
.shop-about {
    padding: 3rem 0 4rem;
}

.shop-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.shop-about__media {
    min-width: 0;
}

.shop-about__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #f5f5f7;
}

.shop-about__img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.shop-about__img-wrap:hover .shop-about__img {
    transform: scale(1.03);
}

.shop-about__content {
    min-width: 0;
}

.shop-about__content--full {
    grid-column: 1 / -1;
}

.shop-about__body {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

.shop-about__body h1,
.shop-about__body h2,
.shop-about__body h3,
.shop-about__body h4,
.shop-about__body h5,
.shop-about__body h6 {
    color: #111827;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.shop-about__body h1 { font-size: 1.75rem; }
.shop-about__body h2 { font-size: 1.5rem; }
.shop-about__body h3 { font-size: 1.25rem; }
.shop-about__body h4 { font-size: 1.125rem; }
.shop-about__body h5 { font-size: 1rem; }
.shop-about__body h6 { font-size: 0.9375rem; }

.shop-about__body p {
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.shop-about__body p:last-child {
    margin-bottom: 0;
}

.shop-about__body ul,
.shop-about__body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: #4b5563;
}

.shop-about__body li {
    margin-bottom: 0.35rem;
}

.shop-about__body .lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #374151;
}

.shop-about__body .btn {
    margin-top: 0.5rem;
}

.shop-about__body a {
    color: var(--primary-color);
    text-decoration: none;
}

.shop-about__body a:hover {
    color: var(--dark-primary-color);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .shop-about__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .shop-about__img {
        max-height: 320px;
    }
}

@media (max-width: 767px) {
    .shop-about {
        padding: 2rem 0 3rem;
    }
    .shop-about__inner {
        gap: 1.5rem;
    }
    .shop-about__img-wrap {
        border-radius: 1.25rem;
    }
    .shop-about__img {
        max-height: 280px;
    }
    .shop-about__body h1 { font-size: 1.5rem; }
    .shop-about__body h2 { font-size: 1.35rem; }
}

/* Legacy about classes (if used elsewhere) */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}
.about-image-container img {
    transition: transform 0.3s ease;
}
.about-image-container:hover img {
    transform: scale(1.02);
}
.about-content h1, .about-content h2, .about-content h3,
.about-content h4, .about-content h5, .about-content h6 {
    color: #111827;
    margin-bottom: 0.75rem;
}
.about-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.about-content ul, .about-content ol {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.about-content li { margin-bottom: 0.35rem; }
.about-content .lead { font-size: 1.125rem; color: #374151; }
.about-content .btn { margin-top: 0.5rem; }

/* FAQ Accordion Styles */
#faqAccordion.accordion {
    --bs-accordion-btn-focus-border-color: var(--primary-color);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 25%, transparent);
    --bs-accordion-active-bg: #fff;
    --bs-accordion-active-color: #222;
}

#faqAccordion .accordion-button {
    background-color: #fff;
    padding: 1.1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

#faqAccordion .accordion-button:focus {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 25%, transparent) !important;
    border-color: var(--primary-color);
}

#faqAccordion .accordion-button::after {
    display: none !important;
}

#faqAccordion .accordion-button i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

#faqAccordion .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

#faqAccordion .accordion-button:not(.collapsed) {
    background-color: #fff !important;
    box-shadow: none !important;
}

#faqAccordion .accordion-item:first-of-type > .accordion-header .accordion-button {
    border: none !important;
}

.faq-item {
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

#faqAccordion .accordion-body {
    background-color: #f8f9fa;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    color: #555;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

#faqAccordion .accordion-collapse {
    transition: all 0.4s ease-in-out;
}

/* Contact page */
.contact-page__card {
    border-radius: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease;
}
.contact-page__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Contact info card */
.contact-page__card-title {
    margin: 0 0 1.5rem;
    font-size: 2rem;
}
.contact-page__card:has(.contact-page__info) .contact-page__card-title,
.contact-page__card:has(.contact-page__info) .contact-page__socials-wrap {
    text-align: center;
}
.contact-page__card:has(.contact-page__info) .contact-page__info {
    align-items: flex-start;
}
.contact-page__card:has(.contact-page__info) .contact-page__info-item {
    justify-content: center;
}
.contact-page__info {
    padding: 0;
    display: flex;
    flex-direction: column;
}
.contact-page__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-page__info-item:last-child {
    margin-bottom: 0;
}
.contact-page__info-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.contact-page__info-text {
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 0.35rem;
}
.contact-page__socials-wrap {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-page__socials-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}
.contact-page__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.contact-page .contact-page__socials .social-icon {
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-page .contact-page__socials .social-icon:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

/* Contact form card */
.contact-page__field {
    margin-bottom: 1.25rem;
}
.contact-page__field:last-of-type {
    margin-bottom: 0;
}
.contact-page__label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9375rem;
    font-weight: 500;
}
.contact-page__input {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
    background: #fff;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-page__input::placeholder {
    color: #999;
}
.contact-page__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 28%, transparent);
}
.contact-page__textarea {
    resize: vertical;
    min-height: 5rem;
}
.contact-page__spam {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin: 1.25rem 0 1.5rem;
}
.contact-page__spam-visual {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.contact-page__spam-op {
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.9;
}
.contact-page__spam-input {
    width: 4.5rem;
    padding: 0.5rem 0.5rem;
    font-size: 1.1rem;
    text-align: center;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
    background: #fff;
    color: #333;
}
.contact-page__spam-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 25%, transparent);
}
.contact-page__submit-wrap {
    text-align: center;
}
.contact-page__submit {
    border-radius: 1rem;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
}
.contact-page__submit:focus {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 35%, transparent);
}

/* Client Collection Modal */
.client-collect-modal__dialog {
    max-width: 480px;
}
.client-collect-modal {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.client-collect-modal__body {
    position: relative;
    padding: 2rem 1.75rem;
}
.client-collect-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    opacity: 0.6;
    padding: 0.5rem;
}
.client-collect-modal__close:hover {
    opacity: 1;
}
.client-collect-modal__step {
    text-align: center;
}
.client-collect-modal__body--step1 {
    padding: 0;
    overflow: hidden;
}
.client-collect-modal__step--welcome {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}
.client-collect-modal__hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 200px;
    background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.02) 100%);
}
.client-collect-modal__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.client-collect-modal__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(255,255,255,0.95) 100%);
    pointer-events: none;
}
.client-collect-modal__welcome-content {
    padding: 1.5rem 1.25rem 1.25rem;
    min-width: 0;
}
.client-collect-modal__welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.client-collect-modal__welcome-desc {
    font-size: 0.9375rem;
    color: #666;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}
.client-collect-modal__btn--block {
    width: 100%;
    justify-content: center;
}
.client-collect-modal__skip {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.client-collect-modal__skip:hover {
    color: #111;
}
.client-collect-modal__content {
    min-width: 0;
}
.client-collect-modal__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.client-collect-modal__desc {
    font-size: 0.9375rem;
    color: #666;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}
.client-collect-modal__optional {
    font-weight: 400;
    color: #888;
    font-size: 0.8125rem;
}
.client-collect-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.client-collect-modal__btn--primary {
    background: var(--primary-color);
    color: var(--dark-text);
}
.client-collect-modal__btn--primary:hover {
    background: var(--dark-primary-color, #333);
    color: #fff;
    transform: translateY(-1px);
}
.client-collect-modal__btn--secondary {
    background: transparent;
    color: #666;
    border: 2px solid rgba(0, 0, 0, 0.12);
    margin-top: 0.5rem;
}
.client-collect-modal__btn--secondary:hover {
    border-color: rgba(0, 0, 0, 0.2);
    color: #111;
}
.client-collect-modal__step--form .client-collect-modal__title {
    margin-bottom: 0.35rem;
}
.client-collect-modal__step--form .client-collect-modal__desc {
    margin-bottom: 1.25rem;
}
.client-collect-modal__form {
    text-align: left;
}
.client-collect-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.client-collect-modal__label {
    display: block;
}
.client-collect-modal__label-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.35rem;
}
.client-collect-modal__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.client-collect-modal__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.client-collect-modal__input::placeholder {
    color: #999;
}
.client-collect-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.client-collect-modal__actions .client-collect-modal__btn--primary {
    width: 100%;
}
.client-collect-modal__step--success .client-collect-modal__icon-wrap {
    margin-bottom: 1rem;
}
.client-collect-modal__icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1;
}
.client-collect-modal__step--success .client-collect-modal__title {
    margin-bottom: 0.35rem;
}
.client-collect-modal__step--success .client-collect-modal__desc {
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    .accordion-body {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .about-content {
        text-align: center;
    }

    .about-image-container {
        margin-bottom: 2rem;
    }

    #productContainer.grid-view .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .fs-md-6 {
        font-size: 1rem !important;
    }

    .collection-image-container {
        height: 180px;
    }

    .collection-content {
        padding: 1.25rem;
    }

    .collection-name {
        font-size: 1.2rem;
    }

    .collection-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.6rem;
    }

    #productContainer.list-view .shop-product-card__img-wrap {
        flex: 0 0 140px;
        width: 140px;
        min-height: 120px;
    }

}

@media (max-width: 576px) {
    #productContainer.grid-view .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .collection-image-container {
        height: 160px;
    }

    .collection-content {
        padding: 1rem;
    }

    .collection-name {
        font-size: 1.1rem;
    }

    .collection-cta-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.4rem;
    }
}

/* Policy pages (shipping, return) */
.policy-page {
    padding: 2rem 0 3rem;
}
.policy-page__inner {
    max-width: 800px;
    margin: 0 auto;
}
.policy-page__header {
    margin-bottom: 2rem;
}
.policy-page__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}
.policy-page__subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}
.policy-page__card {
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 6px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}
.policy-page__card--dark {
    background: var(--dark-bg, #2d2d2d) !important;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}
.policy-page__card--dark .policy-page__content,
.policy-page__card--dark .policy-page__body {
    color: rgba(255, 255, 255, 0.95);
}
.policy-page__card--dark .policy-page__content a,
.policy-page__card--dark .policy-page__body a {
    color: var(--primary-color);
}
.policy-page__body {
    padding: 1.75rem 1.5rem !important;
}
@media (min-width: 768px) {
    .policy-page__body {
        padding: 2.5rem 2.5rem !important;
    }
}
.policy-page__content {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
}
.policy-page__content p {
    margin-bottom: 1rem;
}
.policy-page__content p:last-child {
    margin-bottom: 0;
}
.policy-page__content ul,
.policy-page__content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.policy-page__empty {
    font-size: 1rem;
}
.policy-page__cta {
    margin-top: 1.5rem;
}
.policy-page__link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.policy-page__link:hover {
    text-decoration: underline;
    color: var(--dark-primary-color);
}
