/* ===== Mobile Navigation ===== */

.mobile-nav {
    display: none;
}

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

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        padding: 100px 30px 30px;
        transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        display: block;
    }

    .mobile-nav.open {
        right: 0;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-nav a {
        display: block;
        padding: 12px 16px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        font-weight: 500;
        border-radius: 10px;
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .mobile-nav a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }
}

/* ===== Section Navigation Bar ===== */

.section-nav {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 0 12px;
}

.section-nav .container {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    scrollbar-width: none;
    padding: 0;
    width: 100%;
}

.section-nav .container::-webkit-scrollbar {
    display: none;
}

.section-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.section-nav-link:hover {
    color: #fff;
    background: rgba(243, 156, 18, 0.12);
    border-color: rgba(243, 156, 18, 0.2);
    transform: translateY(-1px);
}

.section-nav-link:active {
    transform: translateY(0);
}

.section-nav-link.active {
    color: #000;
    background: linear-gradient(135deg, var(--primary-color), #f1c40f);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* Section Nav Dropdown */
.section-nav-dropdown {
    position: relative;
    display: inline-flex;
}

.dropdown-trigger i {
    margin-left: 5px;
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.section-nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.section-nav-dropdown-menu {
    position: absolute;
    top: -6px;
    left: -2px;
    margin-top: 6px;
    min-width: 220px;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.section-nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.section-nav-dropdown-menu a:hover {
    background: rgba(243, 156, 18, 0.1);
    color: #fff;
}

/* ===== Mega Menu ===== */
.mega-menu-wrap {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s ease;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-height: 70vh;
    overflow-y: auto;
}

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

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.mega-menu-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-title a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu-title a:hover {
    color: var(--primary-color);
}

.mega-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu-list li a {
    display: block;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu-list li a:hover {
    color: var(--primary-color);
}

.mega-menu-sublist {
    list-style: none;
    padding-left: 12px;
    margin-top: 2px;
}

.mega-menu-sublist li a {
    display: block;
    padding: 3px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu-sublist li a:hover {
    color: var(--primary-color);
}

.subcategory-sublist {
    list-style: none;
    padding-left: 16px;
    margin-top: 2px;
}

.subcategory-sublist li a {
    display: block;
    padding: 3px 0 3px 8px;
    font-size: 0.82rem;
    color: #666;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.subcategory-sublist li a:hover,
.subcategory-sublist li a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* ===== Catalog Page (2026 Design) ===== */

/* Layout */
.catalog-page {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 100vh;
    background: #0c0c0c;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.catalog-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
}

.sidebar-sticky h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.type-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-list > li > a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    text-decoration: none;
}

.type-list > li > a:hover {
    background: rgba(243, 156, 18, 0.1);
    color: #fff;
}

.type-list > li > a.active {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.1));
    color: var(--primary-color);
    font-weight: 600;
}

.category-sublist {
    list-style: none;
    padding: 2px 0 4px 20px;
    margin: 0;
}

.category-sublist a {
    display: block;
    padding: 7px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.category-sublist a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.category-sublist a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs .sep {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumbs span:last-child {
    color: rgba(255, 255, 255, 0.7);
}

/* Catalog Header */
.catalog-header {
    margin-bottom: 40px;
}

.catalog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.catalog-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 156, 18, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(243, 156, 18, 0.05);
}

.bento-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
    min-height: 200px;
}

.bento-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-card:hover .bento-card-img img {
    transform: scale(1.08);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}
.no-image-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bento-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bento-badge.discount {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.bento-badge.new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
}

.bento-card-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-brand {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bento-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.05rem * 1.3 * 2);
}

.bento-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.bento-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.bento-old-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.page-link:hover {
    background: rgba(243, 156, 18, 0.1);
    color: #fff;
    border-color: rgba(243, 156, 18, 0.2);
}

.page-link.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

/* Empty State */
.catalog-empty {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.empty-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.catalog-empty h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.catalog-empty p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.empty-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Product Detail Page ===== */

.product-detail {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 100vh;
    background: #0c0c0c;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 50px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: relative;
}

.productSwiper {
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    width: 100%;
    max-height: 520px;
    min-height: 300px;
}

.productSwiper .swiper-wrapper {
    height: 100%;
}

.productSwiper .swiper-slide {
    height: 100%;
}

.productSwiper .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


.productSwiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.productSwiper .swiper-button-next::after,
.productSwiper .swiper-button-prev::after {
    font-size: 1rem;
    font-weight: 700;
}

.productSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.productSwiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    max-height: 72px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.thumb-item {
    flex: 0 0 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    opacity: 0.5;
}

.thumb-item.active {
    border-color: var(--primary-color);
    opacity: 1;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
    gap: 12px;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 520px;
}

.no-image-large p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-brand {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(243, 156, 18, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0;
}

.product-article {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-old-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
}

.product-discount {
    padding: 3px 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.product-desc h3,
.product-specs h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}

.product-desc p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    font-size: 0.95rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.spec-key {
    color: rgba(255, 255, 255, 0.4);
    width: 40%;
}

.spec-value {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-meta p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.product-meta p i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ===== Responsive ===== */

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Mobile Filter Toggle ===== */
.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 16px;
    transition: all 0.25s ease;
}
.filter-toggle-btn:hover {
    background: rgba(243,156,18,0.1);
    border-color: rgba(243,156,18,0.2);
}
.filter-toggle-btn i {
    font-size: 1.1rem;
}

.filter-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
}
.filter-overlay.open { display: block; }

.filter-drawer {
    position: fixed;
    top: 0; left: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #0c0c0c;
    z-index: 2000;
    overflow-y: auto;
    padding: 24px;
    transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-right: 1px solid rgba(255,255,255,0.06);
}
.filter-drawer.open { left: 0; }
.filter-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}
.filter-drawer-close:hover { color: #fff; }
.filter-drawer .sidebar-sticky {
    border: none;
    padding: 0;
    background: none;
    backdrop-filter: none;
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        display: none;
    }

    .filter-toggle-btn {
        display: flex;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-gallery {
        position: static;
    }

    .productSwiper {
        max-height: 400px;
        min-height: 250px;
    }

    .no-image-large {
        max-height: 400px;
    }

    .catalog-title {
        font-size: 1.8rem;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .product-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .section-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card-img {
        aspect-ratio: 16 / 9;
    }

    .productSwiper {
        max-height: 350px;
        min-height: 200px;
    }

    .no-image-large {
        max-height: 350px;
    }

    .gallery-thumbs {
        gap: 6px;
    }

    .thumb-item {
        flex: 0 0 56px;
        height: 56px;
    }

    .product-layout {
        gap: 16px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }
}

/* Cart link in header */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-color, #333);
  font-size: 1.3rem;
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.3s;
}
.cart-link:hover {
  color: var(--primary-color, #c9a96e);
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary-color, #c9a96e);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Cart button */
.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-color, #c9a96e);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.3s, transform 0.1s;
}
.btn-cart:hover {
  background: var(--primary-hover, #b8954e);
}
.btn-cart:active {
  transform: scale(0.97);
}
.btn-cart.in-cart {
  background: #4caf50;
}
.btn-cart i {
  font-size: 0.9rem;
}

/* Bento card adjustments for cart button */
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.bento-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.bento-card .btn-cart {
  margin: 0 15px 15px;
}
.bento-card .btn-cart:only-child {
  margin-top: auto;
}


/* Cart page */
.cart-page {
  padding: 40px 0 80px;
}
.cart-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.cart-empty {
  text-align: center;
  padding: 80px 20px;
}
.cart-empty .empty-icon {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 20px;
}
.cart-empty h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cart-empty p {
  color: #777;
  margin-bottom: 25px;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-image-sm {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #ccc;
  font-size: 1.5rem;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  display: block;
  font-weight: 600;
  color: var(--text-color, #333);
  text-decoration: none;
  margin-bottom: 4px;
}
.cart-item-name:hover {
  color: var(--primary-color, #c9a96e);
}
.cart-item-price {
  font-size: 0.9rem;
  color: #777;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.qty-btn:hover {
  border-color: var(--primary-color, #c9a96e);
}
.qty-value {
  font-weight: 700;
  font-size: 1rem;
  min-width: 24px;
  text-align: center;
}
.cart-item-total {
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 100px;
  text-align: right;
  color: var(--primary-color, #c9a96e);
}
.cart-item-remove {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #ccc;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cart-item-remove:hover {
  color: #e74c3c;
}
.cart-summary {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.cart-total {
  font-size: 1.3rem;
  font-weight: 700;
}
.cart-total-price {
    color: var(--primary-color, #c9a96e);
    margin-left: 10px;
}

/* Brand types page */
.brand-types-page {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 70vh;
    background: #0c0c0c;
}

.brand-types-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 8px;
}

.brand-types-desc {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.brand-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.brand-type-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.brand-type-card:hover {
    border-color: rgba(243,156,18,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.brand-type-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.brand-type-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.brand-type-card-count {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.brand-types-empty {
    color: rgba(255,255,255,0.3);
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .brand-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .brand-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Brands page */
.brands-page {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 70vh;
    background: #0c0c0c;
}

.brands-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 30px 0 8px;
}

.brands-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    margin-bottom: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
    text-decoration: none;
    color: inherit;
}

.brand-card:hover {
    border-color: rgba(243,156,18,0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.brand-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    overflow: hidden;
}

.brand-card-img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.brand-card:hover .brand-card-img img {
    filter: brightness(1);
}

.brand-card-placeholder {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
}

.brand-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.brand-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.brand-card-count {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.brand-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin: 4px 0 0;
}

.brands-empty {
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .brands-title {
        font-size: 1.8rem;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .brand-card-img {
        height: 130px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Related products on detail page */
.related-products {
    padding: 60px 0 80px;
    background: var(--bg-secondary, #111);
}
.related-products .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #fff;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.related-card {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}
.related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 156, 18, 0.3);
    box-shadow: 0 16px 32px rgba(0,0,0,0.5);
}
.related-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.related-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
}
.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.related-card:hover .related-img img {
    transform: scale(1.08);
}
.related-img .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255,255,255,0.15);
}
.related-info {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.related-brand {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.related-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color, #c9a96e);
    margin-top: 4px;
}
@media (max-width: 1024px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .related-products { padding: 40px 0 60px; }
}
@media (max-width: 480px) {
    .related-grid { grid-template-columns: 1fr; }
}

/* ===== Badges ===== */
.bento-badge.hit {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
}
.bento-badge.new {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
}
.bento-badge.promotion {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #000;
}
.bento-badge.out-of-stock {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    left: auto;
    right: 12px;
}

/* ===== Bento Actions (cart, wishlist, compare) ===== */
.bento-actions {
    display: flex;
    gap: 4px;
    padding: 0 15px 15px;
}
.bento-actions .btn-cart {
    flex: 1;
    margin: 0;
    justify-content: center;
}
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.btn-icon:hover {
    background: rgba(243,156,18,0.1);
    color: var(--primary-color);
    border-color: rgba(243,156,18,0.2);
}
.btn-icon.active {
    color: #e74c3c;
    background: rgba(231,76,60,0.1);
    border-color: rgba(231,76,60,0.2);
}
.btn-icon.btn-compare.active {
    color: #3498db;
    background: rgba(52,152,219,0.1);
    border-color: rgba(52,152,219,0.2);
}

/* ===== Rating Stars ===== */
.bento-rating {
    font-size: 0.85rem;
    color: #f1c40f;
    letter-spacing: 1px;
}

/* ===== Filter Form ===== */
.filter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.filter-group label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-price {
    display: flex;
    gap: 8px;
}
.filter-input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    min-width: 0;
}
.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.filter-select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
}
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.filter-select option {
    background: #222;
    color: #fff;
}

/* ===== Info Pages (News, Articles, Partners, Vacancies) ===== */
.info-page {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 60vh;
}
.info-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: 20px 0 30px;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.info-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease;
}
.info-card:hover {
    transform: translateY(-2px);
}
.info-card-img {
    height: 200px;
    overflow: hidden;
}
.info-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-card-body {
    padding: 20px;
}
.info-card-body h3 a {
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.info-card-body h3 a:hover {
    color: var(--primary-color);
}
.info-date {
    display: block;
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    margin: 6px 0;
}
.info-card-body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}
.info-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-decoration: none;
}
.info-link:hover {
    text-decoration: underline;
}
.info-detail {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 60vh;
}
.info-article {
    max-width: 800px;
}
.info-article h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: 20px 0;
}
.info-article-img {
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
}
.info-article-img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.info-excerpt {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}
.info-content {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}
.vacancy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vacancy-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
}
.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vacancy-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #fff;
}
.vacancy-meta {
    color: var(--primary-color);
    font-size: 0.9rem;
}
.vacancy-body h4 {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 12px 0 6px;
}
.vacancy-body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== Stores Page ===== */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.store-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease;
}
.store-card:hover {
    transform: translateY(-2px);
}
.store-card-img {
    height: 200px;
    overflow: hidden;
}
.store-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.store-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.store-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #fff;
}
.store-card-body p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.store-card-body p i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* ===== Custom Products Page ===== */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.custom-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}
.custom-card:hover {
    transform: translateY(-2px);
}
.custom-card-img {
    height: 220px;
    overflow: hidden;
}
.custom-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.custom-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: rgba(255,255,255,0.15);
    font-size: 3rem;
    height: 180px;
}
.custom-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.custom-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
}
.custom-card-body > p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.5;
}
.custom-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}
.custom-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.custom-features li {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    padding-left: 16px;
    position: relative;
}
.custom-features li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--primary-color);
}

/* ===== Compare Table ===== */
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 30px;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    text-align: center;
    min-width: 180px;
}
.compare-table .compare-label {
    text-align: left;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    min-width: 120px;
    background: rgba(255,255,255,0.02);
}
.compare-table th {
    background: rgba(255,255,255,0.04);
    font-weight: 600;
    color: #fff;
}
.compare-table th a {
    color: #fff;
    text-decoration: none;
}
.compare-table th a:hover {
    color: var(--primary-color);
}
.compare-img img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}
.compare-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}
.compare-product {
    position: relative;
}
.compare-product .btn-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

/* ===== Auth Forms ===== */
.auth-page {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 80vh;
    background: #0c0c0c;
}
.auth-form {
    max-width: 420px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 40px;
}
.auth-form h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}
.auth-form form p {
    margin-bottom: 20px;
}
.auth-form form p label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.auth-form form p input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}
.auth-form form p input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.auth-form .helptext,
.auth-form .errorlist {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}
.auth-form .errorlist {
    color: #e74c3c;
}
.auth-link {
    text-align: center;
    margin-top: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}
.auth-link a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== Profile Page ===== */
.profile-page {
    padding: calc(var(--header-height) + 40px) 0 80px;
    min-height: 80vh;
    background: #0c0c0c;
    color: #fff;
}
.profile-page h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
}
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.profile-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 30px;
}
.profile-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.profile-card p {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}
.profile-card ul {
    list-style: none;
}
.profile-card ul li {
    margin-bottom: 10px;
}
.profile-card ul li a {
    color: var(--primary-color);
    text-decoration: none;
}
.profile-card ul li a:hover {
    text-decoration: underline;
}

/* ===== Orders List ===== */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.order-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px;
}
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}
.order-id {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}
.order-status {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.order-status.status-new { background: rgba(52,152,219,0.2); color: #3498db; }
.order-status.status-confirmed { background: rgba(46,204,113,0.2); color: #2ecc71; }
.order-status.status-processing { background: rgba(243,156,18,0.2); color: #f39c12; }
.order-status.status-completed { background: rgba(46,204,113,0.2); color: #2ecc71; }
.order-status.status-cancelled { background: rgba(231,76,60,0.2); color: #e74c3c; }
.order-date {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.order-items {
    margin-bottom: 16px;
}
.order-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.order-total {
    text-align: right;
    font-size: 1.1rem;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== City Banner ===== */
.city-banner {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}
.city-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.city-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.city-banner-actions {
    display: flex;
    gap: 8px;
}
.city-banner .btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
}
@media (max-width: 600px) {
    .city-banner {
        flex-direction: column;
        text-align: center;
        white-space: normal;
        width: calc(100% - 32px);
        bottom: 80px;
    }
}

/* ===== Search Bar Below Header ===== */
.search-bar-wrapper {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 5%;
    margin-top: var(--header-height);
    position: sticky;
    top: var(--header-height);
    z-index: 500;
}
.search-bar-form {
    max-width: 800px;
    margin: 0 auto;
}
.search-bar-inner {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.25s;
}
.search-bar-inner:focus-within {
    border-color: var(--primary-color);
}
.search-bar-input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}
.search-bar-input::placeholder {
    color: rgba(255,255,255,0.35);
}
.search-bar-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.25s;
}
.search-bar-btn:hover {
    background: var(--primary-hover);
}

/* ===== Search Bar in Header ===== */
.section-nav .search-form {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
}
.section-nav .search-form input {
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: inherit;
    font-size: 0.8rem;
    width: 160px;
    transition: all 0.25s ease;
}
.section-nav .search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    width: 200px;
}
.section-nav .search-form button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 6px 8px;
    font-size: 0.85rem;
}
.section-nav .search-form button:hover {
    color: var(--primary-color);
}

/* ===== Header icon badges ===== */
.wishlist-badge,
.compare-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.compare-badge {
    background: #3498db;
}

/* ===== Checkbox label ===== */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

/* ===== Variants on product detail ===== */
.product-variants {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.variant-group h4 {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.variant-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.variant-btn {
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.variant-btn:hover {
    border-color: var(--primary-color);
    color: #fff;
}
.variant-btn.active {
    border-color: var(--primary-color);
    background: rgba(243,156,18,0.15);
    color: var(--primary-color);
}
.variant-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    overflow: hidden;
}
.variant-swatch:hover,
.variant-swatch.active {
    border-color: var(--primary-color);
}
.variant-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Product Detail Buttons ===== */
.product-actions .btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.2rem;
}

/* ===== Card Image Gallery Dots ===== */
.card-img-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.card-img-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.3);
}
.card-img-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: var(--primary-color);
}

/* ===== Card Swatches ===== */
.bento-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    min-height: 30px;
}
.swatch-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: border-color 0.2s;
}
.swatch-img:hover {
    border-color: var(--primary-color);
}
.swatch-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
}
.swatch-more {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    line-height: 24px;
}

/* ===== Series on card ===== */
.bento-series {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== Discount Badge ===== */
.bento-discount-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #e74c3c;
    background: rgba(231,76,60,0.15);
    padding: 2px 8px;
    border-radius: 50px;
}

/* ===== Sort Toolbar ===== */
.sort-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 20px;
}
.sort-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.sort-count {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}
.sort-select-top {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
}
.sort-select-top:focus {
    outline: none;
    border-color: var(--primary-color);
}
.sort-select-top option {
    background: #222;
    color: #fff;
}

/* ===== Active Filters Tags ===== */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(243,156,18,0.1);
    border: 1px solid rgba(243,156,18,0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--primary-color);
}
.filter-tag .tag-remove {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s;
}
.filter-tag .tag-remove:hover {
    color: #e74c3c;
}

/* ===== Price Slider ===== */
.filter-price-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.price-slider-wrap {
    padding: 4px 0;
}
.price-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    outline: none;
}
.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid #000;
}
.price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid #000;
}
.price-inputs {
    display: flex;
    gap: 8px;
}

/* ===== Quick View Modal ===== */
.modal-quick-view-content {
    max-width: 800px;
}
.quick-view-loading {
    text-align: center;
    padding: 60px;
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
}
.quick-view-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 10px 0;
}
.qv-swiper {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}
.qv-slide {
    flex: 0 0 100%;
    display: none;
}
.qv-slide.active {
    display: block;
}
.qv-slide img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}
.qv-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.qv-thumb {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.2s;
}
.qv-thumb.active {
    border-color: var(--primary-color);
}
.qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quick-view-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.qv-brand {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.qv-series {
    font-size: 0.85rem;
    color: var(--primary-color);
}
.qv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
}
.qv-article {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.qv-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qv-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}
.qv-old-price {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
}
.qv-discount {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e74c3c;
    background: rgba(231,76,60,0.15);
    padding: 2px 8px;
    border-radius: 50px;
}
.qv-rating {
    font-size: 1rem;
    color: #f1c40f;
    letter-spacing: 2px;
}
.qv-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}
.qv-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.qv-actions .btn {
    flex: 0 1 auto;
}
.qv-status {
    font-size: 0.85rem;
    font-weight: 600;
}
.stock-in { color: #2ecc71; }
.stock-ordered { color: var(--primary-color); }
.stock-out { color: #e74c3c; }
.qv-variants {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.qv-variant-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qv-variant-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    text-transform: uppercase;
    min-width: 60px;
}
.qv-swatches {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.qv-swatches .swatch-img,
.qv-swatches .swatch-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* ===== Responsive: bento grid ===== */
@media (max-width: 1400px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Desktop nav search ===== */
@media (max-width: 1200px) {
    .section-nav .search-form input {
        width: 120px;
    }
    .section-nav .search-form input:focus {
        width: 150px;
    }
}
@media (max-width: 992px) {
    .section-nav .search-form {
        display: none;
    }
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .auth-form {
        padding: 30px 20px;
    }
}

/* ===== Product Reviews ===== */
.product-reviews {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.review-rating {
    color: #f1c40f;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    margin-left: auto;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.review-photo {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 12px;
}

/* ===== Series Page ===== */
.series-hero {
    padding: 20px 0 10px;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.series-card {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.series-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.series-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.series-card:hover .series-card-img img {
    transform: scale(1.05);
}

.series-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg, #f5f5f5);
    color: #ccc;
    font-size: 3rem;
}

.series-card-body {
    padding: 16px 20px 20px;
}

.series-card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color, #222);
    margin-bottom: 6px;
}

.series-card-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
}

.series-count {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== Partner Page ===== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.partner-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    align-items: flex-start;
}

.partner-logo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-bg, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.partner-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.partner-website {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--primary-color);
}

.partner-cta {
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
    background: var(--light-bg, #f5f5f5);
    border-radius: 16px;
}

.partner-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.partner-cta p {
    color: #666;
    max-width: 500px;
    margin: 0 auto 24px;
}

/* ===== Filter Chips (checkboxes as buttons) ===== */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.filter-chip:hover {
    border-color: var(--primary-color);
    color: #fff;
    background: rgba(243, 156, 18, 0.08);
}

.filter-chip.active {
    border-color: var(--primary-color);
    background: rgba(243, 156, 18, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

.filter-chip input[type="checkbox"] {
    display: none;
}

/* ===== Best Price Guarantee ===== */
.best-price-section {
    margin-top: 24px;
    padding: 20px;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 12px;
}

.best-price-section h3 {
    font-size: 1rem;
    color: #2ecc71;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.best-price-section p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.best-price-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.best-price-form input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 0.85rem;
    font-family: inherit;
}

.best-price-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== Lookbooks Grid ===== */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.lookbook-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lookbook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.lookbook-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.lookbook-card-body {
    padding: 20px;
}

.lookbook-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.lookbook-card-body p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    line-height: 1.5;
}

.lookbook-card-body .btn {
    margin-top: 4px;
}

/* ===== Best Price section on product detail ===== */
.price-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(39, 174, 96, 0.12);
    border: 1px solid rgba(39, 174, 96, 0.25);
    color: #2ecc71;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 8px 0;
}
