/* =============================
    BRAND COLORS
============================= */
:root {
    --primary-green: #0f3d2e;
    --dark-green: #0b2f24;
    --search-bg: #fafaf7;
    --search-border: #ddd8cf;
    --white: #ffffff;
    --badge-red: #c62828;
    --accent: #f57c00;
    --border: #e5e5e5;
    --text: #1f1f1f;
    --muted: #6f6f6f;
    --success-green: #0f3d2e;
    --sold-muted: #6c757d;

    /* added */
    --deep-forest: #1a3a2a;
    --sacred-green: #2d6b3d;
    --earth-brown: #5a3a1a;
    --spirit-purple: #5a2d6b;
    --light-wisdom: #f0e6d2;
    --healing-gold: #d4a017;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
}

/* BREADCRUMBS */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #777;
    margin: 14px 0 6px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: #555;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs i {
    font-size: 12px;
    color: #aaa;
}

@media (max-width: 768px) {
    .breadcrumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 10px;
    }

    .breadcrumbs a,
    .breadcrumbs span,
    .breadcrumbs i {
        flex-shrink: 0;
    }

    .breadcrumbs::-webkit-scrollbar {
        height: 4px;
        opacity: 0;
    }

    .breadcrumbs:active::-webkit-scrollbar,
    .breadcrumbs:focus::-webkit-scrollbar {
        opacity: 1;
    }

    .breadcrumbs::-webkit-scrollbar-track {
        background: transparent;
    }

    .breadcrumbs::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 4px;
    }
}

@media (min-width: 992px) {
    .breadcrumbs span {
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: bottom;
    }
}

/* =============================
    CONTAINER
============================= */

.custom-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: 16px;
}

.header-top {
    background: var(--primary-green);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1100;
    will-change: transform;
}

.header-top .custom-container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-block: 12px;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: inline-flex;
}

.logo img {
    height: 20px;
    width: auto;
    display: block;
}

.actions {
    display: flex;
    gap: 18px;
    margin-left: auto;
}

.actions a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    padding: 1px;
    position: relative;
}

.actions i {
    font-size: 18px;
}

/* CART BADGE */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--badge-red);
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-wrap {
    flex: 1 1 auto;
}

.search-form {
    position: relative;
    display: flex;
    height: 40px;
    background: var(--search-bg);
    border: 1px solid var(--search-border);
    border-radius: 6px;
    overflow: hidden;
    min-width: 280px;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 0 14px;
    font-size: 14px;
    background: transparent;
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    width: 48px;
    border: none;
    background: #d4a63a;
    color: #333;
}

.search-icon {
    display: none;
}

/* ===== ACCOUNT DROPDOWN ===== */
.account-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.account-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.account-menu {
    position: absolute;
    right: 0;
    top: 100%;
    width: 320px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    z-index: 1200;
}

.account-dropdown.open .account-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px;
    padding: 12px;
    background: #f68b1e;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    min-height: 40px;
}

/* QUICK ICONS */
.account-quick {
    display: flex;
    justify-content: space-around;
    padding: 12px 0 8px;
    border-bottom: 5px solid #eee;
}

.account-quick a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    color: #222;
    text-decoration: none;
}

.account-quick i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 20px;
}

.account-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.account-list li {
    padding: 0;
    border-bottom: 1px solid #eee;
}

.account-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.account-list li:last-child {
    border-bottom: none;
}

.account-list li i {
    font-size: 16px;
}

.account-list li a:hover {
    background: #f7f7f7;
}

/* =================
    MOBILE ONLY
================= */
@media (max-width: 768px) {
    .account-menu {
        position: fixed;
        top: 60px;
        left: 50%;
        right: auto;
        width: 320px;
        max-width: calc(100vw - 16px);
        transform: translateX(-50%) translateY(10px);
        max-height: 75vh;
        overflow-y: auto;
        padding: 4px 0;
        border-radius: 10px;
        background: #fff;
        overflow: visible;
    }

    .account-dropdown.open .account-menu {
        transform: translateX(-50%) translateY(0);
    }

    .account-btn {
        margin: 12px;
        padding: 10px;
        font-size: 14px;
    }

    .account-quick {
        padding: 10px 6px 8px;
    }

    .account-quick i {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 4px;
    }

    .account-quick span {
        font-size: 12px;
    }

    .account-list {
        padding: 6px 0;
    }

    .account-list li a {
        padding: 10px 14px;
        font-size: 14px;
        gap: 10px;
    }

    .account-list li a i {
        font-size: 15px;
    }
}

/* =============================
    BOTTOM HEADER
============================= */
.header-bottom {
    background: var(--dark-green);
}

.header-bottom .custom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 20px;
}

.nav-left a,
.nav-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

/* IE / Edge / Firefox */
.header-bottom .custom-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.header-bottom .custom-container::-webkit-scrollbar {
    display: none;
}

.actions a:hover,
.nav-left a:hover,
.nav-right a:hover {
    opacity: 0.9;
}

.search-form button:hover {
    background: #b89440;
}

/* =============================
    MOBILE BEHAVIOR
============================= */
@media (max-width: 991px) {
    .header-top .custom-container {
        flex-wrap: wrap;
        padding: 10px 6px;
        gap: 2px;
    }

    .logo {
        order: 1;
        text-align: center;
    }

    .actions {
        order: 2;
        margin-left: auto;
        padding-right: 4px;
    }

    .search-wrap {
        order: 3;
        flex: 1 1 100%;
        margin-top: 2px;
    }

    .search-form {
        height: 38px;
        border-radius: 50px;
        background: var(--primary-green);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .search-form input {
        padding-left: 44px;
        color: var(--white);
    }

    .search-form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .search-form button {
        display: none;
    }

    .search-icon {
        display: block;
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.7);
        pointer-events: none;
    }

    .header-bottom .custom-container {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 24px;
    }

    .actions a .cart-badge {
        top: -6px;
        right: -6px;
    }
}

@media (min-width: 992px) {
    .logo img {
        height: 35px;
    }

    .search-wrap {
        margin: 0 24px;
    }
}

@media (max-width: 991px) {
    .search-form input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: inherit;
    }
}

/* =============================
    HAMBURGER MENU
============================= */

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    visibility: hidden;
    transition:
        background 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-drawer.active {
    left: 0;
}

.menu-header {
    background: var(--primary-green);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-logo img {
    height: 28px;
    max-height: none !important;
    width: auto !important;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
}

.menu-content {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    position: relative;
}

.menu-content::after {
    content: "";
    position: sticky;
    bottom: 0;
    display: block;
    height: 45px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.95));
    pointer-events: none;
}

.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: transparent;
}

/* Firefox */
.menu-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.menu-section {
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.menu-section-title {
    padding: 16px 20px;
    font-weight: bold;
    color: #333;
    background: #f8f8f8;
    margin: 0;
    font-size: 15px;
    border-top: 1px solid #eee;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
}

.menu-item:hover {
    background: #f9f9f9;
}

.menu-item-icon {
    margin-right: 12px;
    color: #666;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.menu-item-text {
    flex: 1;
    font-size: 14px;
}

.menu-item-arrow {
    color: #999;
    font-size: 12px;
}

.need-help-section {
    background: #f8f8f8;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.need-help-title {
    color: #333;
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.menu-title .menu-item-text,
.drawer-section-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #222;
}

.menu-title:first-of-type {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 14px;
    margin-bottom: 6px;
}

.drawer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #f8f8f8;
}

.drawer-section-link {
    font-size: 12px;
    color: #f68b1e;
    text-decoration: none;
}

/* Hamburger Query */
@media (max-width: 991px) {
    .hamburger-btn {
        display: block;
        order: 0;
    }
}

@media (min-width: 992px) {

    .mobile-menu-drawer,
    .mobile-menu-overlay {
        display: none !important;
    }

    .hamburger-btn {
        display: none !important;
    }
}

/* ===== BANNER 1 ===== */
.trust-banner.static {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff1e3;
    padding: 8px 10px;
    border-radius: 10px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.trust-item .top {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item strong {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.trust-item small {
    font-size: 11px;
    color: #555;
    line-height: 1.2;
}

.icon {
    font-size: 16px;
    flex-shrink: 0;
}

.icon.green {
    color: #2e7d32;
}

.divider {
    width: 1px;
    height: 28px;
    background: #ddd;
    flex-shrink: 0;
}

.trust-slide {
    will-change: transform, opacity;
}

.slide-in {
    animation: slideIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.slide-out {
    animation: slideOut 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-6px);
    }
}

/* ===== BANNER 2 ===== */
.trust-banner.action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e9f5ec;
    color: #0f5132;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.trust-banner.action .left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.right {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.rotate-text {
    display: inline-block;
}

.static-arrow {
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 360px) {

    .trust-item strong,
    .trust-item small {
        font-size: 12px;
    }
}

/* TRUST BANNERS: MOBILE ONLY */
@media (min-width: 768px) {
    .trust-mobile-only {
        display: none;
    }
}

/* =============================
    HERO SLIDERS SECTION
============================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    background: #f5f5f5;
    touch-action: pan-y;
}

.slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: translateX(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    pointer-events: auto;
}

.slide.prev {
    transform: translateX(-30px);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================
   HERO SLIDER ARROWS
============================= */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.slider-arrow i {
    font-size: 22px;
    line-height: 1;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Positioning */
.hero-prev-arrow {
    left: 12px;
}

.hero-next-arrow {
    right: 12px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 34px;
        height: 34px;
    }

    .slider-arrow i {
        font-size: 18px;
    }

    .slider-arrow {
        display: none;
    }
}

/* =============================
    SKELETON LOADING STYLES
============================= */
.skeleton-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    overflow: hidden;
    z-index: 2;
}

.skeleton-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 1.5s infinite;
    transform: translateX(-100%);
}

.skeleton-pulse {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: pulse 1.5s infinite;
}

.skeleton-wave {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%);
    background-size: 800px 100%;
    animation: wave 2s infinite linear;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes wave {
    0% {
        background-position: -800px 0;
    }

    100% {
        background-position: 800px 0;
    }
}

/* Skeleton image placeholder */
.skeleton-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #f5f5f5 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: pulse 1.5s infinite;
}

.slide img.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.slide .skeleton-container {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.slide img.loaded~.skeleton-container {
    opacity: 0;
    pointer-events: none;
}

.skeleton-container {
    pointer-events: none;
}

/* SLIDERS QUERY */
@media (max-width: 576px) {
    .hero-slider {
        height: 150px;
        border-radius: 10px;
    }
}

/* =============================
   PRODUCT SECTION
============================= */

.product-section {
    background: #fff;
    margin-top: 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    background: #e9f5ec;
    padding: 8px 10px;
    border-radius: 10px;
}

.section-text h3 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: #0f5132;
}

.see-all {
    font-size: 13px;
    font-weight: 600;
    color: #0f5132;
    text-decoration: none;
    white-space: nowrap;
}

.product-scroll {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.product-scroll::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc((100% - 12px) / 2.3);
    scroll-snap-align: start;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
}

@media (min-width: 768px) {
    .product-card {
        flex: 0 0 calc((100% - (12px * 2)) / 3.3);
    }
}

@media (min-width: 992px) {
    .product-card {
        flex: 0 0 calc((100% - (12px * 5)) / 6);
    }
}

.product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--gray);
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ffe9d6;
    color: #e67e22;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.product-title {
    font-size: 13px;
    margin: 6px 0 2px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

/* =============================
   PRICE
============================= */

.product-price {
    display: inline-flex;
    align-items: flex-start;
    font-weight: 400;
    margin: 2px 0;
}

.price-currency,
.price-cents {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 1px;
}

.price-amount {
    font-size: 20px;
    line-height: 1;
}

.product-stock-text {
    font-size: 12px;
    margin: 6px 0 4px;
    color: #555;
}

.product-stock-bar {
    height: 6px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.product-stock-bar span {
    display: block;
    height: 100%;
    background: #f68b1e;
    border-radius: 10px;
}

/* =============================
   PRODUCT ARROWS
============================= */

.product-wrapper {
    position: relative;
}

.product-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(49, 49, 51, 0.5);
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.product-arrow i {
    font-size: 22px;
}

.product-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.product-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.product-prev {
    left: 0;
}

.product-next {
    right: 0;
}

@media (min-width: 992px) {
    .product-arrow {
        display: flex;
    }
}

@media (max-width: 360px) {

    .section-text h3,
    .see-all {
        font-size: 12px;
    }
}

/* =========================
    SHOP BY CATEGORY CSS
========================= */

.shop-by-category {
    margin: 20px 0;
}

.category-grid {
    display: grid;
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    scroll-snap-align: start;
    text-align: center;
    text-decoration: none;
    color: #111;
    min-width: 0;
}

.category-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    background: #f2f2f2;
}

.category-card span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

/* SHOP BY CATEGORY MEDIA QUERY */
@media (min-width: 992px) {
    .category-grid {
        grid-auto-columns: calc((100% - (6 * 12px)) / 7);
    }
}

@media (max-width: 991px) {
    .category-grid {
        grid-auto-columns: calc((100% - (4 * 12px)) / 5.5);
    }

    .category-card span {
        font-size: 10px;
    }
}

/* =============================
    PRODUCT DETAILs PAGE SECTION
============================= */

/* === PRODUCT PAGE WRAPPER === */
.product-page .image-wrap {
    position: relative;
    padding: 0;
}

/* === MAIN IMAGE BOX === */
.product-page .main-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    overflow: hidden;
    border-radius: 16px;
}

.product-page .main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* === IMAGE ICONS (inside .image-wrap) === */
.product-page .image-icons {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.product-page .icon-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-page .icon-like {
    background: #fff;
    height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-page .icon-like i {
    font-size: 16px;
}

.product-page .icon-like small {
    font-size: 13px;
    font-weight: 600;
}

/* === IMAGE NAVIGATION ARROWS (inside main-image-box) === */
.product-page .img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    z-index: 3;
    transition: all 0.2s ease;
}

.product-page .img-nav i {
    font-size: 20px;
    color: #333;
}

.product-page .img-nav.prev {
    left: 12px;
}

.product-page .img-nav.next {
    right: 12px;
}

/* === THUMBNAIL BAR (appears after main image) === */
.product-page .thumb-bar {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Scrollbar styling for thumbnail bar */
.product-page .thumb-bar::-webkit-scrollbar {
    height: 4px;
    display: none;
}

.product-page .thumb-bar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.product-page .thumb-bar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

/* Hide scrollbar for cross-browser compatibility */
.product-page .thumb-bar {
    -ms-overflow-style: none;
    /* IE / Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* === INDIVIDUAL THUMBNAILS === */
.product-page .thumb {
    flex-shrink: 0;
    border-radius: 8px;
    padding: 7px;
    cursor: pointer;
    border: 1px solid transparent;
    background: #fff;
}

.product-page .thumb.is-active {
    border-color: #16a34a;
}

.product-page .thumb img {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* === BUY BOX (right column) === */
.product-page .buy-box {
    padding-left: 0;
}

.product-page .section {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.product-page .buy-box .section:first-child {
    padding-top: 0;
}

.product-page .no-border {
    border-bottom: none !important;
}

/* === PRODUCT TITLE === */
.product-page .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-value {
    margin-left: 8px;
    font-weight: 600;
}

.reviews-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
}

/* === SELLER INFO === */
.product-page .seller-row {
    display: flex;
    gap: 12px;
    font-size: 14px;
    align-items: flex-start;
}

.product-page .seller-logo {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.product-page .seller-row a {
    color: #3665f3;
    text-decoration: none;
}

/* === PRICE SECTION === */
.product-page .price {
    font-size: 26px;
    font-weight: 700;
    color: #16a34a;
}

.product-page .old-price {
    font-size: 14px;
    color: var(--muted);
}

.product-page .old-price span {
    text-decoration: line-through;
}

/* === VARIATION ROW === */
.product-page .variation-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-page .variation-label {
    font-size: 14px;
    font-weight: 600;
    min-width: 70px;
}

.product-page .variation-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-page .variation-btn {
    padding: 8px 14px;
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.product-page .variation-btn.is-active {
    border-color: #0f3d2e;
    background: #eef7f3;
    color: #0f3d2e;
}

/* === QUANTITY ROW === */
.product-page .qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.product-page .qty-row strong {
    min-width: 70px;
}

.product-page .qty-box {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.product-page .qty-box button {
    border-radius: 8px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: #f7f7f7;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-page .qty-box input {
    width: 35px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-page #qty:focus {
    box-shadow: none !important;
    border-color: inherit !important;
    outline: none !important;
}

/* === SOLD INFO === */
.product-page .sold {
    color: #0f3d2e;
    font-weight: 600;
    font-size: 14px;
}

/* === ACTION BUTTONS === */
.product-page .action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.product-page .btn-cart {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-page .buy-box strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

/* === USER SELECTION UTILITY === */
.product-page .icon-btn,
.product-page .icon-like,
.product-page .img-nav {
    user-select: none;
}

/* === TRUST BLOCK (shipping, payment, guarantee) === */
.product-page-trust {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}

.product-page-trust-item {
    padding: 14px 2px;
    border-bottom: 1px solid #eee;
}

.product-page-trust-item:last-child {
    border-bottom: none;
}

.product-page-trust-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-page-trust-head .left,
.product-page-trust-head .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-page-icon {
    font-size: 18px;
    color: #16a34a;
    width: 20px;
    text-align: center;
}

.product-page-trust-title {
    font-weight: 500;
    color: #16a34a;
}

.product-page-arrow {
    color: #999;
    font-size: 16px;
}

.product-page-muted {
    color: #888;
    font-size: 13px;
}

.product-page-trust-sub {
    margin-top: 10px;
    line-height: 1.6;
    color: #333;
}

.courier {
    display: flex;
    align-items: center;
    gap: 6px;
}

.courier-brand {
    display: flex;
    align-items: center;
    gap: 4px;
}

.courier-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
}

/* === GUARANTEE SCROLL PILLS === */
.product-page-guarantee-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 12px;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.product-page-guarantee-scroll::-webkit-scrollbar {
    display: none;
}

.product-page-guarantee-scroll button {
    background: #fff;
    color: #555;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #16a34a;
}

/* === DESCRIPTION BLOCK === */
.product-page-desc-body {
    position: relative;
    padding-top: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    user-select: none;
}

.product-page-desc-title {
    font-weight: 600;
    font-size: 16px;
    user-select: none;
}

.product-page-desc-body p {
    max-height: 90px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.product-page-desc-body:not(.expanded)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}

.product-page-desc-body.expanded::after {
    display: none;
}

.read-more {
    display: inline-block;
    margin-top: 6px;
    color: #16a34a;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

/* RATING SECTION */

.rating-summary {
    border: 1px solid #f8f9fa;
    border-radius: 16px;
    padding: 15px 10px;
}

.rating-summary-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.average-rating {
    text-align: center;
}

.average-number {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.average-stars {
    margin: 5px 0;
}

.average-stars i {
    color: #ffc107;
    font-size: 16px;
}

.total-reviews {
    color: #666;
    font-size: 14px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2c7a4a;
    font-size: 14px;
}

.rating-bars {
    flex: 1;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rating-bar-label {
    width: 50px;
    font-size: 14px;
    color: #666;
}

.rating-bar-label i {
    color: #ffc107;
    font-size: 14px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 4px;
}

.rating-bar-count {
    width: 40px;
    font-size: 14px;
    color: #666;
}

/* Reviews Grid */
.reviews-grid {
    margin-top: 30px;
}

.review-card {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    font-size: 14px;
    color: #999;
}

.review-rating {
    margin-bottom: 8px;
}

.review-rating i {
    color: #ffc107;
    font-size: 14px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-images {
    display: flex;
    gap: 10px;
}

.review-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.load-more {
    color: #2c7a4a;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 14px;
}

.see-all-rating {
    padding: 0 5px;
}

/* =============== MEDIA QUERIES =============== */

@media (min-width: 992px) {
    .product-page .image-wrap {
        padding: 0;
    }

    .product-page .image-icons {
        top: 20px;
        right: 20px;
        gap: 15px;
    }

    .product-page .image-layout {
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        gap: 15px;
    }

    .product-page .main-image-box {
        flex: 1;
        aspect-ratio: 1/1;
    }

    .product-page .thumb-bar {
        flex-direction: column;
        width: 86px;
        max-height: 420px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 2px 3px;
        box-sizing: border-box;
        margin-top: 0;
    }

    .product-page .thumb-bar::-webkit-scrollbar {
        width: 4px;
        height: auto;
        display: block;
    }

    .product-page .thumb-bar::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }

    .product-page .thumb img {
        width: 64px;
        height: 64px;
    }

    .product-page .buy-box {
        padding-left: 40px;
    }

    .breadcrumbs span {
        max-width: 450px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
        vertical-align: bottom;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-page .buy-box {
        padding-left: 30px;
    }

    .product-page .thumb-bar {
        gap: 12px;
    }

    .product-page .thumb img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 991px) {
    .product-page .thumb-bar {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
    }

    .product-page .image-layout {
        display: block;
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 10px;
    }

    .breadcrumbs a,
    .breadcrumbs span,
    .breadcrumbs i {
        flex-shrink: 0;
    }

    .breadcrumbs::-webkit-scrollbar {
        height: 4px;
        opacity: 0;
    }

    .breadcrumbs:active::-webkit-scrollbar,
    .breadcrumbs:focus::-webkit-scrollbar {
        opacity: 1;
    }

    .breadcrumbs::-webkit-scrollbar-track {
        background: transparent;
    }

    .breadcrumbs::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 4px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .breadcrumbs {
        white-space: normal;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .product-page .title {
        font-size: 18px;
    }

    .product-page .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .product-page .qty-row {
        align-items: center;
        flex-wrap: nowrap;
    }

    .product-page .qty-row strong {
        white-space: nowrap;
        font-weight: 500;
    }

    .product-page .sold {
        margin-left: auto;
        font-size: 13px;
    }

    .product-page .variation-options {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-page .variation-options::-webkit-scrollbar {
        height: 4px;
        display: none;
    }

    .product-page .variation-options::-webkit-scrollbar-track {
        background: transparent;
    }

    .product-page .variation-options::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.25);
        border-radius: 4px;
    }

    .product-page .variation-btn {
        flex-shrink: 0;
    }

    .product-page .icon-btn {
        width: 28px;
        height: 28px;
    }

    .product-page .icon-btn i {
        font-size: 14px;
    }

    .product-page .icon-like {
        height: 28px;
        padding: 0 8px;
        gap: 4px;
        font-size: 12px;
    }

    .product-page .icon-like i {
        font-size: 14px;
    }

    .product-page .icon-like small {
        font-size: 11px;
    }

    .product-page .img-nav {
        width: 30px;
        height: 30px;
    }

    .product-page .img-nav i {
        font-size: 14px;
    }

    .product-page .img-nav.prev {
        left: 8px;
    }

    .product-page .img-nav.next {
        right: 8px;
    }

    .product-page .thumb img {
        width: 50px;
        height: 50px;
    }

    .product-page-trust {
        font-size: 11px;
    }

    .product-page-icon {
        font-size: 13px;
    }

    .product-page-trust-title {
        font-size: 13px;
    }

    .product-page-arrow {
        font-size: 13px;
    }

    .product-page-muted {
        font-size: 12px;
    }

    .product-page-trust-sub {
        font-size: 12px;
    }

    .product-page-guarantee-scroll button {
        font-size: 11px;
        padding: 2px 10px;
    }
}

@media (max-width: 375px) {
    .product-page .title {
        font-size: 15px;
        margin-bottom: 0px;
    }

    .product-page .price {
        font-size: 16px;
    }

    .product-page .seller-row {
        font-size: 13px;
    }

    .product-page .thumb img {
        width: 46px;
        height: 46px;
    }

    .product-page .qty-row {
        gap: 8px;
    }

    .product-page .qty-box {
        min-width: 110px;
    }

    .product-page .qty-box button {
        width: 36px;
        height: 36px;
    }

    .product-page .btn-cart {
        padding: 10px 14px;
        font-size: 14px;
    }

    .product-page .img-nav {
        width: 28px;
        height: 28px;
    }

    .product-page .img-nav i {
        font-size: 14px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .product-page .thumb-bar {
        gap: 10px;
    }

    .product-page .thumb img {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 767px) {
    .product-page .buy-box {
        padding: 8px 16px !important;
    }
}

/* === HOVER/TOUCH STATES === */
@media (hover: hover) {

    .product-page .icon-btn:hover,
    .product-page .icon-like:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .product-page .btn-cart:hover {
        background: #333;
        transform: translateY(-1px);
    }

    .product-page .thumb:hover {
        border-color: #999;
    }

    .product-page .img-nav:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.08);
    }

    .product-page .variation-btn:hover {
        border-color: #000;
    }
}

@media (hover: none) {

    .product-page .icon-btn:active,
    .product-page .icon-like:active {
        transform: scale(0.95);
    }

    .product-page .btn-cart:active {
        transform: scale(0.98);
    }

    .product-page .thumb:active {
        border-color: #000;
    }

    .product-page .img-nav:active {
        transform: translateY(-50%) scale(0.95);
    }
}

/* =============================
    CART PAGE SECTION
============================= */

.cart-page-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-inline: 16px;
}

.cart-section-card {
    background: #fff;
    border-radius: 12px;
    padding: 0 12px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 8px 18px rgba(0, 0, 0, 0.05);
}

.cart-count {
    padding: 12px 0;
    margin: 0;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 500;
}

.divider {
    height: 1px;
    background: #f1f1f1;
    margin: 16px 0;
    border-top: 1px dashed #d8d8d8;
}

.cart-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f1f1f1;
}

.item-left {
    flex: 0 0 auto;
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    background: #f2f2f2;
}

.item-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-title {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.item-right a {
    text-decoration: none;
    color: #000;
    display: block;
}

.cart-variant {
    font-size: 13px;
    color: #777;
}

.item-actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    font-size: 13px;
}

.item-actions span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    cursor: pointer;
}

.item-actions span:hover {
    color: #000;
}

.item-actions span:first-child:hover {
    color: #0b5e42;
}

.item-actions i {
    font-size: 16px;
    opacity: 0.8;
}

.bottom-row {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.qty-box button {
    background: #fff;
    border: none;
    width: 32px;
    height: 32px;
}

.qty-box span {
    width: 34px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.prices {
    margin-left: auto;
    display: flex;
    gap: 20px;
    align-items: center;
}

.unit-price {
    font-size: 13px;
    color: #666;
}

.item-total {
    font-weight: 500;
    font-size: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row.total {
    font-weight: 500;
    font-size: 17px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .cart-page-section {
        padding: 0;
    }

    .cart-section-card {
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 8px;
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .bottom-row {
        margin-left: -95px;
    }

    .cart-item img {
        width: 80px;
        height: 80px;
    }

    .cart-title {
        font-size: 14px;
    }

    .item-total {
        font-size: 15px;
    }

    .cart-count {
        font-size: 14px;
    }
}

/* ================================
   CHECKOUT PAGE
================================ */

.checkout-container {
    margin-bottom: 80px;
}

.checkout-header i {
    font-size: 1.3rem;
}

.checkout-card {
    border-radius: 12px;
    border: 1px solid #f0f2f5;
    transition: all 0.2s ease;
}

.checkout-step {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-step i {
    color: var(--primary-green);
    font-size: 1.4rem;
}

.checkout-container .form-control,
.checkout-container .form-select {
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
}

.checkout-container .form-control:focus,
.checkout-container .form-select:focus {
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
    background: #fff;
}

.checkout-container .form-control:focus,
.checkout-container .form-select:focus,
.floating-field input:focus,
.floating-field textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #dee2e6 !important;
}

.checkout-container .input-group .form-control {
    border-radius: 40px 0 0 40px !important;
}

.checkout-container .input-group .btn {
    border-radius: 0 40px 40px 0 !important;
    border-color: #dee2e6;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed #e9edf2;
}

.order-item:last-child {
    border-bottom: none;
}

.item-thumb {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin: 0.7rem 0;
}

.price-line.total {
    font-weight: 700;
    font-size: 1.3rem;
    border-top: 2px solid #e9edf2;
    padding-top: 1rem;
    margin-top: 1rem;
}

.price-line.total .text-success {
    color: #2d6a4f;
}

.btn-powerful {
    background: #0b3b2c;
    border: none;
    border-radius: 40px;
    padding: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    width: 100%;
    transition: 0.15s;
}

.btn-powerful:hover {
    background: #1b4f3a;
    transform: scale(1.01);
}

.checkout-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e9edf2, transparent);
    margin: 1.3rem 0;
}

.checkout-protection {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 10px;
}

.checkout-protection i {
    color: #2d6a4f;
    margin-right: 4px;
}

.coupon-box {
    display: flex;
    gap: 8px;
}

.coupon-box input {
    flex: 1;
    background: #fafbfc;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.9rem;
}

.coupon-box input:focus {
    outline: none;
    border-color: #dee2e6 !important;
}

.coupon-box button {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.coupon-box button:hover {
    background: #e5e7eb;
}

.floating-field {
    position: relative;
}

.floating-field input,
.floating-field textarea {
    width: 100%;
    padding: 14px 45px 14px 12px;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.floating-field label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    color: #555;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1;
}

.floating-field input:focus+label,
.floating-field textarea:focus+label,
.floating-field input:not(:placeholder-shown)+label,
.floating-field textarea:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
}

.order-item .fw-medium {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.shipping-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 12px;
}

.shipping-card {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    background: #fff;
    transition: 0.15s;
    width: 100%;
}

.shipping-card:hover {
    border-color: #cbd5e1;
    background: #fafbfc;
}

.shipping-card input {
    position: absolute;
    opacity: 0;
}

.shipping-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.shipping-title {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.shipping-date {
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 3px;
}

.shipping-price {
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1px;
}

.shipping-card input:checked+.shipping-content {
    color: #0b3b2c;
}

.shipping-card:has(input:checked) {
    border-color: #0b3b2c;
    background: #f6fbf8;
    box-shadow: 0 0 0 2px rgba(11, 59, 44, 0.08);
}

.shipping-right {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.shipping-check {
    color: #0b3b2c;
    font-size: 1rem;
    opacity: 0;
}

.shipping-card:has(input:checked) .shipping-check {
    opacity: 1;
}

@media (max-width: 768px) {
    .shipping-options {
        grid-template-columns: 1fr;
    }
}

/* Payment options */

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.payment-card {
    width: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    background: #fff;
    transition: 0.15s;
}

.payment-card:hover {
    border-color: #cbd5e1;
    background: #fafbfc;
}

.payment-card input {
    position: absolute;
    opacity: 0;
}

.payment-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.payment-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-icon {
    font-size: 1.3rem;
    color: #374151;
}

.payment-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.payment-desc {
    font-size: 0.8rem;
    color: #6b7280;
    margin-left: 0;
}

.payment-check {
    position: absolute;
    top: 10px;
    right: 12px;
    color: #0b3b2c;
    font-size: 1.1rem;
    opacity: 0;
}

.payment-card:has(input:checked) {
    border-color: #0b3b2c;
    background: #f6fbf8;
    box-shadow: 0 0 0 2px rgba(11, 59, 44, 0.08);
}

.payment-card:has(input:checked) .payment-check {
    opacity: 1;
}

@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* DONATION SECTION */
.donation-box {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    margin-top: 16px;
}

.donation-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.donation-desc {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.donation-option {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
}

.donation-option input {
    display: none;
}

.donation-option:has(input:checked) {
    border-color: #0b3b2c;
    background: #f6fbf8;
}

.donation-custom {
    display: flex;
    gap: 8px;
}

.donation-custom input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 8px;
}

.donation-custom button {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
}

/* Chrome, Safari, Edge */
#customDonation::-webkit-outer-spin-button,
#customDonation::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#customDonation {
    appearance: textfield;
}

/* Chrome, Safari, Edge */
#customDonation::-webkit-outer-spin-button,
#customDonation::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ================================
   ORDER SUCCESS PAGE
================================ */

.order_payment-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    padding: 16px;
    height: 100%;
    cursor: pointer;
    transition: all 0.25s ease;
}

.order_payment-card:hover {
    border-color: #111;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.await-pay-badge {
    color: #000;
    font-weight: 500;
    border-radius: 40px;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ffe6b8;
}

.await-pay-badge i {
    font-size: 1rem;
    color: #b9770e;
}

.payment_notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    background: #f8f9fa;
    border: 1px dashed #ddd;
    padding: 8px 10px;
    border-radius: 8px;
}

.payment_notice i {
    font-size: 14px;
    color: #888;
}

.order_payment-card.copied {
    border-color: #22c55e;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
}

.copy-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.copy-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #111;
}

.copy-hint {
    margin-left: auto;
    font-size: 11px;
    color: #888;
    white-space: nowrap;
}

.order_copy-icon {
    font-size: 18px;
    color: #aaa;
    transition: 0.2s;
}

.order_payment-card:hover .order_copy-icon {
    color: #111;
    transform: scale(1.1);
}

.order_payment-card.copied .order_copy-icon {
    color: #22c55e;
}

.copy-section {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.copy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.copy-field {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 2px;
}

.copy-field::before {
    content: attr(data-label) ": ";
    font-weight: 500;
    color: #000;
}

.confirm_payment-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    padding: 16px;
    height: 100%;
    margin-bottom: 1.8rem;
}

.confirmPaymentBtn {
    background: #1e8b5c;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    width: 100%;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    transition: 0.2s;
}

.confirmPaymentBtn:hover {
    background: #15734a;
    transform: translateY(-2px);
    color: #fff;
}

.order_trust {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.trust-left,
.trust-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-icon {
    color: #22c55e;
    font-size: 16px;
}

.trust-text {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .order_trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        align-items: center;
    }
}

/* ORDER PAYMENT GUIDE MODAL */

.guide-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 15px;
}

.guide-box {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    max-width: 380px;
    width: 100%;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: guideFadeIn 0.25s ease;
}

.guide-box i {
    color: #1e8b5c;
}

.guide-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

.guide-box small {
    font-size: 12px;
}

#guideClose {
    width: 100%;
    border: none;
    background: #1e8b5c;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

#guideClose:hover {
    background: #166b46;
}

/* ANIMATION */
@keyframes guideFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================================
   CATEGORY PAGE
================================ */

.cat-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

.cat-sidebar {
    display: none;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: fit-content;
}

.cat-sidebar-title {
    font-size: 16px;
    margin-bottom: 14px;
}

.cat-filter-block {
    margin-bottom: 20px;
}

.cat-filter-heading {
    display: block;
    margin-bottom: 8px;
    border-top: 2px solid #eee;
    color: #222;
    font-size: 14px;
    width: 100%;
}

.cat-filter-option {
    display: flex;
    gap: 8px;
    padding: 5px 0;
    font-size: 14px;
    cursor: pointer;
}

.cat-filter-options {
    max-height: 170px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cat-filter-options::-webkit-scrollbar {
    display: none;
}

.cat-toolbar {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cat-toolbar span {
    font-size: 14px;
}

.cat-sort-select {
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.cat-sort-select:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.cat-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 18px;
}

.cat-title {
    font-size: 14px;
    color: #111;
}

/* SUBCATEGORY PILLS */
.subcategory-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    contain: inline-size;
}

.subcategory-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 6px 2px 12px;
    margin: 6px 0 14px;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.subcategory-scroll::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 4px 6px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.cat-pill img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.cat-pill:hover {
    background: #f7f7f7;
}

.cat-pill.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.cat-pill.active img {
    filter: brightness(0) invert(1);
}

/* Product Grid */

.cat-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.cat-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.cat-card-media {
    position: relative;
    aspect-ratio: 1/1;
    background: #f3f3f3;
}

.cat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
}

.cat-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-card-body a {
    text-decoration: none;
    color: inherit;
}

.cat-card-title {
    font-size: 14px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-product-price {
    display: inline-flex;
    align-items: flex-start;
    font-weight: 400;
    margin: 2px 0;
}

.cat-price-currency,
.cat-price-cents {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 1px;
}

.cat-price-amount {
    font-size: 20px;
    line-height: 1;
}

.cat-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

.cat-rating {
    font-size: 13px;
    color: #fbc02d;
    margin: 6px 0;
}

.cat-add-btn {
    margin-top: auto;
    height: 38px;
    border-radius: 6px;
    border: none;
    background: #f57c00;
    color: #fff;
    font-weight: 600;
}

/* View Toggle */
.cat-view-toggle {
    display: flex;
    gap: 6px;
}

.cat-view-toggle button {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    transition: all 0.2s ease;
}

.cat-view-toggle button:hover {
    background: #f3f3f3;
}

.cat-view-toggle button.is-active {
    background: #0f3d2e;
    color: #fff;
    border-color: #0f3d2e;
}

/* LIST VIEW */

.cat-products.list-view {
    grid-template-columns: 1fr;
    gap: 12px;
}

.cat-products.list-view .cat-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 8px;
    border-radius: 8px;
    height: auto;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.cat-products.list-view .cat-card-media {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.cat-products.list-view .cat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-products.list-view .cat-card-media {
    height: auto;
}

.cat-products.list-view .cat-card-body {
    padding: 0 12px;
}

.cat-products.list-view .cat-card-title {
    font-size: 13px;
    margin: 0 0 4px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}

.cat-products.list-view .cat-product-price {
    margin: 4px 0;
}

.cat-products.list-view .cat-rating {
    margin: 4px 0;
    font-size: 12px;
}

.cat-products.list-view .cat-add-btn {
    display: none;
}

.cat-products {
    transition: opacity 0.18s ease;
}

.cat-products.view-switching {
    opacity: 0.6;
}

/* Pagination */
.cat-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0 70px;
}

.cat-pagination a {
    min-width: 28px;
    height: 28px;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222;
}

.cat-pagination .is-active {
    background: #f57c00;
    color: #fff;
    border-color: #f57c00;
}

.pagination a:hover {
    background: #f5f5f5;
}

/* MOBILE SORT / FILTER BAR */
.sort-filter {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 26px;
    z-index: 1000;
}

.sort-filter button {
    background: none;
    border: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 14px;
}

.sort-filter .divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 14px;
}

.sort-filter button:active {
    opacity: 0.7;
}

/* =========================
  SORT FILTER MODAL
========================= */

.sf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1250;
}

.sf-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 85dvh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-sheet.active {
    transform: translateY(0);
}

.modal-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header strong {
    font-size: 15px;
    font-weight: 600;
}

.modal-header i {
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

.modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 12px 16px;
    min-height: 0;
    max-height: calc(85dvh - 130px);
}

.sort-list {
    display: flex;
    flex-direction: column;
}

.sort-option,
.filter-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

.sort-option:hover,
.filter-item:hover {
    background: #f6f6f6;
}

.sort-option input,
.filter-item input {
    accent-color: var(--accent);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group .filter-title {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-footer {
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid #eee;
    background: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.modal-footer.dual button {
    flex: 1;
}

.modal-footer:not(.dual) button {
    width: 100%;
}

.primary-btn {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.primary-btn:hover {
    opacity: 0.9;
}

.outline-btn {
    flex: 1;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

.outline-btn:hover {
    background: #f5f5f5;
}

/* ============================
   Query
============================ */

@media (min-width: 1024px) {
    .cat-layout {
        grid-template-columns: 240px 1fr;
    }

    .cat-sidebar {
        display: block;
        position: sticky;
        top: 90px;
    }

    .cat-products {
        grid-template-columns: repeat(4, 1fr);
    }

    .cat-toolbar {
        display: flex;
    }
}

@media (min-width: 768px) {
    .sort-filter {
        display: none;
    }
}

/* ================= SIGNUP ================= */

.signup .topbar,
.signin .topbar {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signup .topbar img,
.signin .topbar img {
    height: 25px;
}

.signup .signin-link a,
.signin .feedback-link {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    text-decoration: underline;
}

.signup .wrapper,
.signin .wrapper {
    min-height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    padding-top: 35px;
}

.signup .box,
.signin .box {
    width: 100%;
    max-width: 420px;
}

.signup .title {
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
}

.signup .input {
    width: 100%;
    height: 48px;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
}

.signup .input:focus {
    outline: none;
    border-color: #000;
}

.signup .terms {
    font-size: 13px;
    color: #555;
    margin: 14px 0 18px;
}

.signup .terms a {
    color: #0654ba;
    text-decoration: none;
}

.signup .btn {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    border: none;
    background: #c7c7c7;
    color: #fff;
    font-weight: 600;
    cursor: not-allowed;
}

.signup .continue-text {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

.signup .social-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.signup .social-btn {
    flex: 1;
    height: 44px;
    border-radius: 22px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.signup .social-btn img {
    width: 18px;
}

.signup .social-btn i {
    font-size: 18px;
}

.signup .signup-signin-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #777;
    font-size: 14px;
}

.signup .signup-signin-divider::before,
.signup .signup-signin-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.signup .signup-signin-divider span {
    padding: 0 10px;
}

@media (max-width: 576px) {
    .signup .content {
        display: flex;
        flex-direction: column;
    }

    .signup .continue-text {
        order: 1;
        font-size: 14px;
    }

    .signup .social-buttons {
        order: 2;
        gap: 8px;
    }

    .signup .signup-signin-divider {
        order: 3;
        margin: 12px 0 16px;
    }

    .signup .form {
        order: 4;
    }

    .signup .social-btn {
        height: 40px;
        font-size: 13px;
    }

    .signup .social-btn img {
        width: 16px;
    }

    .signup .social-btn i {
        font-size: 16px;
    }

    .signup .signup-signin-divider::before,
    .signup .signup-signin-divider::after {
        height: 0.5px;
    }
}

.password-wrap {
    position: relative;
}

.password-wrap .toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 18px;
}

.password-wrap .toggle-password:hover {
    color: #000;
}

/* ================= SIGNIN ================= */

.signin h1 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 18px;
}

.signin .subtitle-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 22px;
}

.signin .subtitle-bar span {
    color: #555;
}

.signin .create-btn {
    padding: 6px 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
}

.signin .input {
    width: 100%;
    height: 48px;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 15px;
}

.signin .input:focus {
    outline: none;
    border-color: #000;
}

.signin .btn-primary {
    width: 100%;
    height: 48px;
    border-radius: 24px;
    background: #0654ba;
    border: none;
    font-weight: 600;
    margin-top: 6px;
}

.signin .signin-divider {
    display: flex;
    align-items: center;
    margin: 26px 0 18px;
    font-size: 14px;
    color: #777;
}

.signin .signin-divider::before,
.signin .signin-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.signin .signin-divider span {
    padding: 0 10px;
    white-space: nowrap;
}

.signin .social-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.signin .social-btn {
    flex: 1;
    height: 44px;
    border-radius: 22px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.signin .social-btn img {
    width: 16px;
}

.signin .stay {
    font-size: 13px;
    color: #555;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.signin .stay-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.signin .stay input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #000;
    cursor: pointer;
}

.forgot-link {
    font-size: 13px;
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.signin .bi-info-circle {
    cursor: pointer;
    color: #777;
}

.popover-body {
    padding: 0 !important;
    color: inherit !important;
}

.popover-body-wrap {
    position: relative;
    background: #1f1f1f;
    color: #fff;
    border-radius: 14px;
    padding: 14px 44px 16px 16px;
    font-size: 13px;
    line-height: 1.5;
}

.popover-close {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

/* =========================
   USER PROFILE CSS
========================= */
.profile-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0 12px 0;
}

.profile-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    flex: 1;
}

.profile-details .name {
    font-weight: 600;
    font-size: 1.2rem;
}

.profile-details .email {
    font-size: 0.85rem;
    color: #5e6a7c;
}

.camera-icon {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #6c4cff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.camera-icon:hover {
    transform: scale(1.1);
}

.profile-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: 0.2s;
}

.profile-avatar:hover::after {
    opacity: 1;
}

.profile-layout {
    display: block;
}

.tab-bar {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 12px;
    overflow-x: auto;
    white-space: nowrap;
}

.tab-bar::-webkit-scrollbar {
    display: none;
}

.tab {
    flex: 0 0 auto;
    background: none;
    border: none;
    padding: 8px 0 10px;
    font-weight: 500;
    margin-right: 22px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.tab.active {
    color: #1c314b;
    border-bottom: 2px solid #1c314b;
}

.tab-content {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active-pane {
    display: block;
}

.card-box {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e5eaf2;
}

/* DESKTOP (sidebar layout) */
@media (min-width: 992px) {
    .profile-layout {
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }

    .tab-bar {
        flex-direction: column;
        width: 220px;
        border-bottom: none;
        border-right: 1px solid #e2e8f0;
        max-height: calc(100vh - 180px);
        overflow-y: auto;
    }

    .tab {
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 8px;
        border-bottom: none;
        border-left: 3px solid transparent;
        font-size: 14px;
    }

    .tab.active {
        border-bottom: none;
        background: #f5f8ff;
    }

    .tab-content {
        flex: 1;
    }

    .tab[data-tab="RecentlyViewed"] {
        border-bottom: 1px solid #e2e8f0;
    }
}

.account-section-title {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #e5eaf2;
    padding: 0 0 12px 0;
}

.account-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.account-card {
    flex: 1;
    min-width: 260px;
    border: 1px solid #e5eaf2;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.account-card-header {
    padding: 12px 16px;
    font-weight: 500;
    font-size: 12px;
    border-bottom: 1px solid #e5eaf2;
}

.account-card-header.between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-card-body {
    padding: 16px;
}

.account-name {
    font-weight: 500;
}

.account-email {
    font-size: 0.9rem;
    color: #5e6a7c;
}

.account-label {
    margin-bottom: 6px;
}

.account-address {
    font-size: 0.9rem;
    color: #5e6a7c;
    line-height: 1.5;
}

.edit-btn {
    cursor: pointer;
    color: #f68b1e;
    font-size: 1.2rem;
}

/* order section */
.order-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #e5eaf2;
    margin-bottom: 16px;
}

.order-tab {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 0;
    color: #6a7b94;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
}

.order-tab.active {
    color: #f68b1e;
    border-bottom: 2px solid #f68b1e;
}

/* CARD */
.order-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.order-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* TOP */
.order-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.order-id {
    font-weight: 600;
}

.order-date {
    font-size: 12px;
    color: #777;
}

/* STATUS */
.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.shipped {
    background: #d1ecf1;
    color: #0c5460;
}

.status-badge.cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* BODY */
.order-body {
    display: flex;
    gap: 15px;
    align-items: center;
}

.order-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.order-title {
    font-weight: 500;
}

.order-meta {
    font-size: 13px;
    color: #777;
}

.order-price {
    margin-top: 5px;
    font-weight: 600;
}

/* FOOTER */
.order-footer {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* BUTTONS */
.order-action-btn-outline {
    border: 1px solid #ddd;
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}

.order-action-btn-outline:hover {
    background: #f5f5f5;
}

.order-action-btn-primary {
    background: #111;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.order-footer {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 6px;
}

.dropdown-item {
    font-size: 13px;
    border-radius: 6px;
    padding: 8px 10px;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-item i {
    margin-right: 8px;
}

.order-action a {
    color: #f68b1e;
    font-weight: 500;
    text-decoration: none;
}

.order-group {
    display: none;
}

.order-group.active-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ORDER DETAILS */
.card {
    border-radius: 12px;
}

/* BACK BUTTON */
.back-btn {
    background: rgba(0, 0, 0, 0.05);
    color: #111b21;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.back-btn:active {
    transform: scale(0.92);
}

.order-detail-order-item img {
    object-fit: cover;
}

.order-timeline-horizontal {
    width: 100%;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 10px;
}

.timeline-row::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 3px;
    background: #eee;
    z-index: 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 2;
}

.timeline-icon {
    width: 26px;
    height: 26px;
    margin: 0 auto;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: relative;
    z-index: 3;
}

.timeline-label {
    font-size: 12px;
    margin-top: 6px;
}

.timeline-date {
    font-size: 11px;
    color: #888;
}

.timeline-step.completed .timeline-icon {
    background: #28a745;
    color: #fff;
}

.timeline-step.active .timeline-icon {
    background: #111;
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.timeline-step.completed::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    width: calc(100% - 13px);
    height: 3px;
    background: #28a745;
    z-index: 1;
}

.timeline-step.active::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    width: 0;
    height: 3px;
}

/* LAST STEP */
.timeline-step:last-child::after {
    display: none;
}

/* MOBILE SCROLL */
@media (max-width: 768px) {
    .timeline-row {
        overflow-x: auto;
        gap: 20px;
    }

    .timeline-step {
        min-width: 80px;
    }
}

/* MESSAGE CSS PAGE   */

.user__notify-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.user__notify-top-bar {
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.user__notify-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
}

.user__notify-search {
    position: relative;
    display: inline-block;
    text-align: right;
}

.user__notify-search input[type="text"] {
    padding: 7px 10px 7px 35px;
    border: 1px solid #ccc;
    border-radius: 24px;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.user__notify-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.user__notify-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user__notify-actions input[type="checkbox"] {
    transform: scale(1.2);
}

.user__notify-actions i {
    font-size: 18px;
    color: rgba(85, 85, 85, 0.3);
    cursor: pointer;
    transition: all 0.25s ease;
    filter: blur(0.4px);
}

.user__notify-actions i.active {
    color: #000;
    filter: none;
    transform: scale(1.08);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user__notify-list {
    max-height: 600px;
    overflow-y: auto;
}

.user__notify-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    color: inherit;
}

.user__notify-item:hover {
    background-color: #fafafa;
}

.user__notify-item.selected {
    background-color: #f0f0f0;
}

.user__notify-item input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 5px;
    cursor: pointer;
}

.user__notify-avatar img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 12px;
}

.user__notify-content {
    flex: 1;
}

.user__notify-content .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.user__notify-content .top .name {
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
}

.unread .name::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
}

.user__notify-content .top .time {
    font-size: 12px;
    color: #777;
}

.user__notify-content .title {
    font-size: 14px;
    color: #222;
}

.unread .title {
    font-weight: bold;
}

.user__notify-list::-webkit-scrollbar {
    width: 6px;
}

.user__notify-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

@media (max-width: 600px) {
    .user__notify-search {
        width: 60%;
    }

    .user__notify-search input[type="text"] {
        max-width: 100%;
    }
}

/* =========================
   PENDING REVIEW CSS
========================= */
.pending-reviews-box {
    padding: 14px;
}

.pending-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pending-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fb;
    padding: 10px;
    border-radius: 12px;
    transition: 0.2s;
}

.pending-item:hover {
    background: #f0f2f5;
}

.pending-item img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.pending-info {
    flex: 1;
    min-width: 0;
}

.pending-title {
    font-size: 13px;
    font-weight: 500;
    color: #111b21;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pending-meta {
    font-size: 11px;
    color: #667781;
}

.btn-review {
    border: none;
    background: #25d366;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
}

.btn-review:hover {
    background: #1ebe5d;
}

/* =========================
  REVIEWS RATINGS SECTION
========================= */
.review-page {
    background: #fff;
}

.review-page .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 5px;
}

.review-page .review-header h5 {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
}

.review-page .back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-page .review-section {
    margin-bottom: 20px;
}

.review-page .section-title {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.review-page .product-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.review-page .product-row img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #eee;
}

.review-page .product-info {
    flex: 1;
}

.review-page .product-name {
    margin: 0 0 6px;
    font-size: 14px;
}

.review-page .star-rating {
    display: flex;
    gap: 10px;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.review-page .star-rating i:hover,
.review-page .star-rating i.active {
    color: #f39c12;
}

.review-page .star-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-page .rating-text {
    font-size: 13px;
    font-weight: 600;
    min-width: 80px;
}

.review-page .star-rating i {
    transition:
        transform 0.15s ease,
        color 0.15s ease;
}

.review-page .star-rating i:hover {
    transform: scale(1.15);
}

.review-page .field-group {
    position: relative;
    margin-top: 10px;
}

.review-page .field-group label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: #fff;
    padding: 0 6px;
    font-size: 12px;
    color: #777;
    z-index: 1;
}

.review-page .form-control {
    width: 100%;
    border: 1px solid #ccc;
    background: #fff;
    padding: 12px;
    font-size: 14px;
    border-radius: 4px;

    box-shadow: none;
    outline: none;
    transition: border 0.2s ease;
}

.review-page .form-control:focus {
    border-color: #f68b1e;
    box-shadow: none;
}

.review-page .review-textarea {
    min-height: 160px;
    resize: none;
}

.review-page .form-control::placeholder {
    color: #aaa;
}

.review-page .submit-review-btn {
    width: 100%;
    background: #f68b1e;
    color: white;
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 10px;
    transition: 0.2s;
}

.review-page .submit-review-btn:hover {
    background: #e67e00;
}

/* =========================
   WISHLIST CSS
========================= */
.wishlist-page {
    padding: 10px;
}

.wishlist-header {
    margin-bottom: 16px;
}

.wishlist-header h5 {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.wishlist-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.2s;
}

.wishlist-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wishlist-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
}

.wishlist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #dc3545;
    font-size: 18px;
}

.wishlist-info {
    padding: 10px;
}

.wishlist-info a {
    text-decoration: none;
    color: #555;
}

.wishlist-title {
    font-size: 13px;
    margin: 0 0 6px;
    height: 34px;
    overflow: hidden;
}

.wishlist-price {
    font-weight: 600;
    margin-bottom: 8px;
}

.btn-cart {
    width: 100%;
    border: none;
    background: #f68b1e;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-cart:hover {
    background: #e67e00;
}

.wishlist-empty {
    text-align: center;
    padding: 40px 10px;
    color: #777;
}

.wishlist-empty i {
    font-size: 50px;
    margin-bottom: 10px;
}

.btn-shop {
    margin-top: 10px;
    background: #f68b1e;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
}

@media (min-width: 576px) {
    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (min-width: 992px) {
    .wishlist-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 575px) {
    .wishlist-title {
        font-size: 12px;
        height: 30px;
    }

    .wishlist-price {
        font-size: 13px;
    }

    .btn-cart {
        font-size: 12px;
        padding: 6px;
    }

    .remove-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

.wishlist-img img {
    transition: transform 0.3s ease;
}

.wishlist-card:hover .wishlist-img img {
    transform: scale(1.05);
}

/* =========================
   ACCOUNT DETAILS
========================= */
.account-section {
    margin-bottom: 4px;
}

.account-section-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.account-subtext {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.account-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.account-label {
    font-size: 14px;
    color: #555;
    min-width: 140px;
}

.account-value {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #111;
}

.account-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    border-radius: 0;
}

.account-row:last-child {
    border-bottom: none;
}

@media (max-width: 576px) {
    .account-label {
        min-width: 110px;
        font-size: 13px;
    }

    .account-value {
        font-size: 13px;
    }
}

/* =========================
   ACCOUNT OVERVIEW
========================= */
.account-card-overview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5eaf2;
    margin-bottom: 25px;
}

.account-card-overview-header a {
    text-decoration: none;
}

.account-card-overview-header h6 {
    font-weight: 600;
}

.edit-account-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: #555;
    background: none;
    border: 1px solid #555;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.edit-account-icon i {
    font-size: 14px;
}

.account-overview {
    width: 100%;
}

.account-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.account-item {
    display: flex;
    flex-direction: column;
}

.account-overview-label {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

.account-value-box {
    padding: 10px 0;
    font-size: 14px;
    color: #111;
    border-bottom: 1px solid #eee;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
    .account-row-grid:first-child {
        grid-template-columns: 1fr 1fr;
    }

    .account-row-grid.full-mobile {
        grid-template-columns: 1fr;
    }
}

body.modal-open {
    padding-right: 0 !important;
}

/* =========================
   CHANGE PASSWORD SECTION
========================= */
.modal-title {
    font-weight: 600;
    font-size: 18px;
}

.custom-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    padding: 14px 16px;
}

.btn-cancel {
    background: #f5f5f5;
    border: none;
    padding: 5px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-confirm {
    background: #6c4cff;
    color: #fff;
    border: none;
    padding: 5px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-confirm:hover {
    background: #593ae0;
}

.modal-header {
    padding: 10px;
    border-bottom: none;
}

.floating-input {
    position: relative;
    margin-top: 20px;
}

.floating-input input {
    width: 100%;
    padding: 14px 45px 14px 12px;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

/* LABEL */
.floating-input label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 6px;
    color: #555;
    font-size: 14px;
    pointer-events: none;
    transition: all 0.2s ease;
    z-index: 1;
}

.floating-input input:focus+label,
.floating-input input:not(:placeholder-shown)+label {
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
}

/* =========================
   NOTIFICATION SETTINGS 
========================= */
.notify-settings {
    padding: 16px;
}

.notify-title {
    font-weight: 600;
    margin-bottom: 16px;
}

.notify-consent {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 14px;
    border-bottom: 1px solid #cece;
    padding-bottom: 10px;
}

.notify-link {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 500;
}

.notify-link:hover {
    text-decoration: underline;
}

.notify-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notify-row {
    display: grid;
    grid-template-columns: 1fr 80px 100px 80px;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.notify-head {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.notify-info strong {
    font-size: 14px;
}

.notify-info p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #777;
}

/* =========================
   TOGGLE SWITCH (iOS STYLE)
========================= */
.switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.switch input {
    display: none;
}

.slider {
    width: 38px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
}

.slider::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #fff;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked+.slider {
    background: #6c5ce7;
}

.switch input:checked+.slider::before {
    transform: translateX(18px);
}

.switch small {
    display: none;
    font-size: 12px;
    color: #555;
}

/* =========================
   MOBILE FIX (LIKE YOUR IMAGE)
========================= */
@media (max-width: 640px) {
    .notify-head {
        display: none;
    }

    .notify-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .switch {
        justify-content: flex-start;
    }

    .switch small {
        display: inline;
    }
}

/* =========================
   NEWSLETTER SECTION CSS
========================= */

.newsletter-box {
    padding: 16px;
}

.newsletter-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.newsletter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.newsletter-row:last-child {
    border-bottom: none;
}

.newsletter-info strong {
    font-size: 14px;
}

.newsletter-info p {
    font-size: 12px;
    color: #777;
    margin: 3px 0 0;
}

.newsletter-box .newsletter-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.newsletter-box .newsletter-save-btn {
    background: #6c4cff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.newsletter-box .newsletter-save-btn:hover {
    background: #593ae0;
}

.newsletter-box .newsletter-save-btn:active {
    transform: scale(0.98);
}

/* =========================
   ERROR 404 CSS
========================= */

.error-404-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        sans-serif;
}

.error-404-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.error-404-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.error-404-message {
    font-size: 1.125rem;
    color: #475569;
    max-width: 28rem;
    margin: 0 0 2rem 0;
    line-height: 1.5;
}

.error-404-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.error-404-home-link:hover {
    background-color: #2563eb;
    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);
}

.error-404-home-link:active {
    transform: translateY(0);
}

.error-404-wrapper::before {
    content: "🔍";
    font-size: 2.5rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 640px) {
    .error-404-code {
        font-size: 5rem;
    }

    .error-404-title {
        font-size: 1.5rem;
    }

    .error-404-message {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .error-404-wrapper {
        padding: 2rem 1rem;
        min-height: 60vh;
    }
}

/* =========================
   FORGOT & RESET PASSWORD CSS
========================= */

.auth-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.auth-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #e0ceb9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-icon img {
    width: 40px;
    height: 40px;
}

.auth-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.auth-email {
    font-size: 14px;
    color: #444;
}

.auth-input input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 28px;
    font-size: 14px;
}

.auth-input input:focus,
.code-inputs input:focus {
    outline: none;
    border-color: #f7931e;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: #f7931e;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.auth-btn:hover {
    background: #e67f0d;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    margin-top: 20px;
}

.code-inputs input {
    width: 55px;
    height: 55px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.auth-resend {
    font-size: 13px;
    color: #555;
    margin-top: 14px;
}

.auth-resend span {
    color: #f7931e;
}

.help-text p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.help-text a {
    color: #111;
    font-weight: 500;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.footer-logo {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.brand-logo {
    height: 24px;
    opacity: 0.7;
    text-align: center;
    justify-content: center;
}

.auth-bottom {
    padding-top: 50px;
}

/* =========================
   ABOUT US SECTION CSS
========================= */
.about-hero {
    background: linear-gradient(rgba(26, 58, 42, 0.45), rgba(26, 58, 42, 0.45)), url("../images/about1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: var(--light-wisdom);
    border-radius: 4px;
    margin-bottom: 30px;
}

.about-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.1rem;
}

.about-hero {
    background:
        linear-gradient(rgba(26, 58, 42, 0.5),
            rgba(26, 58, 42, 0.5)),
        url('../images/about1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 30px;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .about-hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}

/* Story Section */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.story-content h2 {
    font-size: 23px;
    font-weight: 600;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid var(--healing-gold);
}

/* Mv Section */
.mv-card {
    background-color: var(--light-wisdom);
    padding: 15px;
    border-radius: 8px;
    height: 100%;
}

.mv-card h4 {
    margin-bottom: 8px;
    font-size: 20px;
}

.mv-statement {
    color: var(--earth-brown);
    max-width: 700px;
    margin: 0 auto;
}

/* Values Section */

.values-section {
    padding: 20px 0;
}

.values-section h3 {
    font-size: 22px;
    font-weight: 600;
}

.value-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 8px;
}

.value-card i {
    font-size: 22px;
    color: #2f7a4b;
}

.about-us-team-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-us-team-header h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.about-us-team-header p {
    color: #666;
    font-size: 15px;
}

.about-us-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-us-team-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-us-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.about-us-team-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.about-us-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.about-us-team-card:hover img {
    transform: scale(1.05);
}

.about-us-team-info {
    padding: 18px;
    text-align: center;
}

.about-us-team-info h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.about-us-team-info span {
    font-size: 14px;
    color: #888;
}

@media (max-width: 900px) {
    .about-us-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Commitment Section */
.commitment-section {
    background-color: var(--deep-forest);
    color: white;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.commitment-list i {
    color: var(--healing-gold);
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .story-image {
        flex: 1;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* ===== HELP CENTER ===== */
.help-center {
    font-family: inherit;
}

/* HERO */
.help-hero {
    background: #e8b879;
    padding: 10px 0 45px;
}

.help-tag {
    font-size: 14px;
    margin-bottom: 5px;
}

.help-hero h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 22px;
}

/* SEARCH */
.help-search {
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    max-width: 500px;
}

.help-search input {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 10px;
}

/* ACTION CARDS */
.help-actions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: -25px;
    margin-bottom: 30px;
}

.help-card {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    /* text-align: center; */
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.3s;
}

.help-card:hover {
    transform: translateY(-5px);
}

/* BODY */
.help-body {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
}

/* SIDEBAR */
.help-sidebar {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.help-sidebar div {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.help-sidebar .active {
    border-left: 3px solid #f68b1e;
    font-weight: 600;
}

/* FAQ */
.help-faq {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
    color: #666;
    font-size: 14px;
}

/* ACTIVE FAQ */
.faq-item.active .faq-answer {
    display: block;
}

.faq-question i {
    transition: 0.2s ease;
}

.connect {
    padding-top: 30px;
}

.connect a {
    text-decoration: none;
    color: #555;
}

.connect-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.connect-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #555;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.connect-card i {
    font-size: 20px;
    color: #1a3a2a;
}

.connect-card h6 {
    margin: 0;
    font-size: 14px;
}

.connect-card p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .help-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .help-body {
        grid-template-columns: 1fr;
    }
}


/* =========================
   CONTACT US SECTION CSS
========================= */
.contact-hero {
    margin-top: 10px;
    text-align: center;
    padding: 20px 16px 30px;
}

.contact-hero h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-hero p {
    font-size: 0.9rem;
    color: #6b7280;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 20px;
}

.card-clean {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
}

.contact-form {
    padding: 20px;
}

.contact-form h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.form-sub {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    font-size: 0.85rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #111;
}

.contact-form .form-select:focus {
    border-color: #111;
    outline: 0;
    box-shadow: none;
}

.contact-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.85rem;
    border-radius: 20px;
    background: #111;
    color: #fff;
    border: none;
}

.small-note {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 8px;
    color: #888;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.info-item a {
    text-decoration: none;
}

.icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 14px;
}

.info-item h6 {
    font-size: 0.85rem;
    margin: 0;
}

.info-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #555;
}

.quick-box {
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    border-radius: 12px;
}

.quick-box span {
    font-size: 0.8rem;
}

.quick-box a {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #111;
}

.social a {
    margin-right: 10px;
    color: #1e4a3b;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}

.faq-quick span {
    font-weight: 600;
    color: #1a4a3a;
}

.live-chat-btn {
    width: 100%;
    margin-top: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 22px 10px 50px;
    background: #f58220;
    color: #fff;
    border-top-right-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.live-chat-btn .icon {
    position: absolute;
    left: -10px;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f58220;
}

.live-chat-btn .icon img {
    width: 20px;
    height: 20px;
}

.live-chat-btn .text {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .live-chat-btn {
        width: 50%;
        justify-content: center;
    }
}



/* ===============================================
   PRIVACY POLICY + TERMS & CONDITIONS SECTION CSS
=============================================== */

/* HEADER */
.legal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.legal-subtitle {
    font-size: 0.9rem;
    color: #777;
}

/* NAV */
.legal-nav {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-nav a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.legal-nav a:hover {
    color: #111;
    text-decoration: underline;
}

.legal-nav a.active {
    border-left: 2px solid #f58220;
    color: #111;
}

/* CONTENT */
.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.legal-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.legal-section ul {
    padding-left: 18px;
}

.legal-section li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}


.legal-section-title {
    color: var(--sacred-green);
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.numbering {
    margin-right: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .legal-nav {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .legal-nav .nav-link {
        text-decoration: underline;
        background: #f1f5f9;
        border-radius: 20px;
        padding: 6px 12px;
    }

    .legal-nav .nav-link.active {
        border-left: none;
    }
}






/* =========================
   FOOTER SECTION CSS
========================= */
.ebofy-newsletter {
    background: #e6f4fb;
    padding: 18px 0;
}

.newsletter-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text {
    font-size: 15px;
    color: #222;
    margin-bottom: 16px;
}

.newsletter-text span {
    display: block;
    font-size: 13px;
    color: #555;
    margin-top: 4px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 999px;
    padding: 4px;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    border-radius: 999px;
}

.newsletter-form button {
    border: none;
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #000;
}

.ebofy-footer {
    background: #f8f8f8;
    color: #222;
    font-size: 14px;
}

.ebofy-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-logo {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #555;
    max-width: 280px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 8px;
    background: #eaeaea;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

.footer-accordion ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
}

.footer-accordion ul li a:hover {
    color: #000;
}

.footer-accordion ul li a i {
    font-size: 16px;
    opacity: 0.6;
}

.footer-bottom {
    background: #eee;
    padding: 14px 0;
    font-size: 13px;
}

/* =========================
   FOOTER ACCORDION QUERY
   ========================= */
@media (max-width: 991px) {
    .footer-links {
        border-top: 1px solid #e5e5e5;
        padding-top: 16px;
    }

    .footer-links .col-6 {
        width: 100%;
    }

    .footer-accordion {
        border-bottom: 1px solid #e5e5e5;
    }

    .footer-accordion h6 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        margin: 0;
        cursor: pointer;
        font-size: 16px;
    }

    .footer-accordion h6 i {
        font-size: 20px;
        transition: transform 0.35s ease;
    }

    .footer-accordion ul {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition:
            max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease;
    }

    .footer-accordion.open ul {
        max-height: 500px;
        opacity: 1;
        padding-bottom: 12px;
    }

    .footer-accordion.open h6 {
        border-bottom: 1px solid #e5e5e5;
    }

    .footer-accordion.open h6 i {
        transform: rotate(180deg);
    }
}

@media (max-width: 576px) {
    .footer-links {
        margin-top: 24px;
    }
}

@media (min-width: 992px) {

    .footer-accordion h6 i,
    .footer-links a i.bx-chevron-right {
        display: none;
    }
}

/* =============================
    MOBILE BOTTOM NAV
============================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid #e6e6e6;
    display: none;
    z-index: 1200;
}

.bottom-nav ul {
    margin: 0;
    padding: 6px 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-nav a {
    text-decoration: none;
    color: #555;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bottom-nav i {
    font-size: 22px;
}

.bottom-nav a.active {
    color: var(--primary-green);
}

.app-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(18, 28, 36, 0.65);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
}

.app-sheet-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.app-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    max-height: 75vh;
    background: white;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.08);
}

.app-sheet.show {
    transform: translateY(0);
}

.app-sheet-header {
    padding: 18px 20px;
    border-bottom: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    background: white;
    border-radius: 24px 24px 0 0;
}

.app-sheet-header::before {
    content: "";
    width: 36px;
    height: 4px;
    background: #d4dce2;
    border-radius: 20px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.app-sheet-header i {
    font-size: 20px;
    line-height: 1;
}

.app-sheet-header strong {
    font-size: 14px;
    font-weight: 620;
    color: #121e2c;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
}

.app-sheet-close {
    position: absolute;
    right: 16px;
    top: 14px;
    background: #f2f2f2;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a4e62;
    transition: 0.2s;
    cursor: pointer;
    padding: 0;
}

.app-sheet-close:hover {
    background: #dce5ec;
}

.app-sheet-body {
    padding: 10px 2px 30px;
    overflow-y: auto;
    flex: unset;
    background: #ffffff;
    color: #2a3c4a;
    line-height: 1.5;
    touch-action: auto;
}

@media (prefers-reduced-motion) {

    .app-sheet,
    .app-sheet-overlay {
        transition: none;
    }
}

/* =============================
    BUTTOM NAV QUERY
============================= */
@media (max-width: 991px) {
    .bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 65px;
    }
}

.bottom-category {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 4px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 10px;
    color: #222;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cat-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-link i {
    font-size: 16px;
}