/* ===== INDISTYLEX — Premium Fashion Store CSS ===== */
/* Design: Ultra-clean, black/white/gold, minimal */

:root {
    --primary: #1A1A1A;
    --accent: #C8A962;
    --accent-hover: #B89952;
    --white: #FFFFFF;
    --light-bg: #F9F9F9;
    --border: #E8E8E8;
    --text-muted: #777;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== GLOBAL ===== */
body {
    font-family: var(--font-body);
    color: var(--primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    color: var(--primary);
    transition: color 0.2s;
}
a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    padding: 8px 0;
    text-align: center;
    font-weight: 400;
}

/* ===== NAVBAR ===== */
.navbar-main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}
.navbar-brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-decoration: none;
}
.navbar-brand-text:hover {
    color: var(--primary);
}

/* Brand Logo & Monogram */
.brand-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border-bottom: 2px solid var(--accent);
}
.brand-monogram-footer {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-bottom: 2px solid var(--accent);
}
.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
}
.navbar-brand:hover .brand-logo {
    color: var(--primary);
}
.navbar-brand:hover .brand-monogram {
    background: #333;
}
.nav-link-main {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: var(--primary);
    padding: 8px 14px !important;
    text-transform: uppercase;
}
.nav-link-main:hover,
.nav-link-main.active {
    color: var(--accent);
}
.nav-icon-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    padding: 6px 10px;
    cursor: pointer;
    position: relative;
}
.nav-icon-btn:hover {
    color: var(--accent);
}
.cart-badge {
    position: absolute;
    top: 0;
    right: 2px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
}
.hero-slide {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 80px;
    max-width: 650px;
    color: var(--white);
}
.hero-badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.9;
    text-transform: uppercase;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
}
.hero-description {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-hero-dark {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary);
    padding: 12px 28px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    transition: all 0.3s;
}
.btn-hero-dark:hover {
    background: var(--accent);
    color: var(--white);
}
.btn-hero-outline-dark {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.6);
    transition: all 0.3s;
}
.btn-hero-outline-dark:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    opacity: 0;
    transition: opacity 0.3s;
}
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 0.8;
}
.hero-carousel .carousel-indicators {
    margin-bottom: 20px;
}
.hero-carousel .carousel-indicators button {
    width: 30px;
    height: 3px;
    border-radius: 0;
    opacity: 0.5;
}
.hero-carousel .carousel-indicators button.active {
    opacity: 1;
    background: var(--white);
}

/* ===== CATEGORY CIRCLES ===== */
.category-circles-section {
    background: var(--white);
    position: relative;
}
.category-circles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}
.category-circle-item:hover {
    transform: translateY(-6px);
}
.category-circle-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.category-circle-item:hover .category-circle-img {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.category-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-circle-placeholder {
    font-size: 1.8rem;
    color: var(--text-muted);
}
.category-circle-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-align: center;
}
.category-circle-link {
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== PROMO CARDS ===== */
.promo-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.promo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.promo-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--white);
}
.promo-card-tag {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.8;
    display: block;
    margin-bottom: 8px;
}
.promo-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.promo-card-discount {
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.9;
}
.promo-card-discount strong {
    font-size: 1.1rem;
}
.promo-card-btn {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.promo-card-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.section-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}
.section-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--primary);
    text-decoration: none;
}
.section-link:hover {
    color: var(--accent);
}

/* ===== PRODUCT CARD — MINIMAL ===== */
.product-card-minimal {
    padding: 0;
}
.product-card-img-link {
    display: block;
    text-decoration: none;
}
.product-card-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--light-bg);
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card-minimal:hover .product-card-img-wrap img {
    transform: scale(1.05);
}
.product-badge-sale {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #E53E3E;
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    letter-spacing: 0.5px;
}
.product-card-info {
    padding: 0 2px;
}
.product-card-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.product-card-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-name:hover {
    color: var(--accent);
}
.product-card-heart {
    background: none;
    border: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
}
.product-card-heart:hover {
    color: #E53E3E;
}
.product-card-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 4px;
}

/* ===== TRUST BADGES ===== */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-badge-icon {
    font-size: 1.6rem;
    color: var(--accent);
    flex-shrink: 0;
}
.trust-badge-text h6 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: var(--font-body);
}
.trust-badge-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--primary);
    color: var(--white);
}
.newsletter-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.7;
    margin-bottom: 8px;
}
.newsletter-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.newsletter-desc {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0;
}
.newsletter-form {
    max-width: 480px;
}
.newsletter-form .form-control {
    border: none;
    border-radius: 0;
    padding: 14px 18px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}
.btn-newsletter {
    background: var(--accent);
    color: var(--white);
    border-radius: 0;
    padding: 14px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    white-space: nowrap;
}
.btn-newsletter:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
}
.footer-main {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px;
}
.footer-tagline {
    font-size: 0.8rem;
    opacity: 0.6;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 16px;
}
.footer-social a {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: var(--accent);
}
.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
    font-size: 0.8rem;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom small {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}
.payment-icons {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.payment-icon {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    letter-spacing: 0.5px;
}

/* ===== AUTH PAGES (Login/Register) ===== */
.auth-page {
    padding: 60px 0;
    background: var(--light-bg);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}
.auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 36px;
    border: 1px solid #eee;
}
.auth-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 6px;
}
.auth-subtext {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}
.auth-card .form-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 4px;
}
.auth-card .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 11px 14px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.auth-card .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}
.auth-card .input-group .btn {
    border-radius: 0;
    border-color: #ddd;
}
.auth-btn {
    width: 100%;
    padding: 13px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 0;
    background: var(--primary);
    border: none;
    color: #fff;
    transition: background 0.2s;
}
.auth-btn:hover {
    background: #333;
    color: #fff;
}
.auth-link {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.auth-link:hover {
    color: var(--accent);
}
.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
}
.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}
.divider-text span {
    padding: 0 12px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #aaa;
    white-space: nowrap;
}
.auth-social-row {
    display: flex;
    gap: 12px;
}
.auth-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: border-color 0.2s;
}
.auth-social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.auth-social-btn.auth-social-fb {
    background: #1877F2;
    border-color: #1877F2;
    color: #fff;
}
.auth-social-btn.auth-social-fb:hover {
    background: #166FE5;
    border-color: #166FE5;
    color: #fff;
}

@media (max-width: 575px) {
    .auth-card {
        padding: 28px 20px;
        border: none;
    }
    .auth-page {
        padding: 30px 0;
    }
}

/* (Filter styles moved to end of file) */

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 0.75rem;
    background: none;
    padding: 0;
}
.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0;
    padding: 12px 28px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s;
}
.btn-primary-custom:hover {
    background: #333;
    color: var(--white);
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 0;
    padding: 12px 28px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* (Cart & Checkout styles moved to end of file) */

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .hero-slide {
        min-height: 450px;
    }
    .hero-content {
        padding: 40px 30px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .category-circle-img {
        width: 110px;
        height: 110px;
    }
    .promo-card {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        min-height: 380px;
    }
    .hero-content {
        padding: 30px 20px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 0.85rem;
    }
    .btn-hero-dark,
    .btn-hero-outline-dark {
        padding: 10px 20px;
        font-size: 0.72rem;
    }
    .category-circle-img {
        width: 90px;
        height: 90px;
    }
    .category-circle-name {
        font-size: 0.65rem;
    }
    .section-heading {
        font-size: 1.2rem;
    }
    .promo-card {
        min-height: 250px;
    }
    .promo-card-title {
        font-size: 1.1rem;
    }
    .newsletter-heading {
        font-size: 1.4rem;
    }
    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .payment-icons {
        justify-content: center;
    }
}

/* ===== UTILITIES ===== */
.border-top {
    border-top: 1px solid var(--border) !important;
}

/* Flash messages */
.alert {
    border-radius: 0;
    font-size: 0.85rem;
}

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}
.search-overlay.active {
    display: flex;
}
.search-overlay-inner {
    background: var(--white);
    width: 100%;
    max-width: 600px;
    padding: 24px;
}
.search-overlay-inner .form-control {
    border-radius: 0;
    border: none;
    border-bottom: 2px solid var(--primary);
    font-size: 1.2rem;
    padding: 12px 0;
}
.search-overlay-inner .form-control:focus {
    box-shadow: none;
}

/* ===== CATEGORY HERO BANNER ===== */
.category-hero {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.category-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}
.category-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.category-hero-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== SHOP LISTING ===== */
.shop-page-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}
.shop-page-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
}
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}
.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.shop-result-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sort-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}
.sort-select {
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 6px 12px;
    font-size: 0.8rem;
    background: var(--white);
    cursor: pointer;
}
.btn-filter-mobile {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* ===== FILTER SIDEBAR ===== */
.filter-sidebar {
    padding-right: 20px;
}
.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.filter-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}
.filter-clear-link {
    font-size: 0.72rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}
.filter-group {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.filter-group:last-child {
    border-bottom: none;
}
.filter-group-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: var(--font-body);
}
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.filter-list-item label {
    font-size: 0.82rem;
    color: var(--primary);
    cursor: pointer;
}
.filter-checkbox {
    accent-color: var(--primary);
}
.filter-color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.filter-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.filter-color-swatch input {
    display: none;
}
.filter-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: border-color 0.2s;
}
.filter-color-swatch input:checked + .filter-swatch {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--primary);
}
.filter-color-name {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.filter-size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.filter-size-box {
    cursor: pointer;
}
.filter-size-box input {
    display: none;
}
.filter-size-box span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--border);
    font-size: 0.72rem;
    font-weight: 500;
    transition: all 0.2s;
}
.filter-size-box input:checked + span {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.filter-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-price-input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 8px 10px;
    font-size: 0.8rem;
}
.filter-price-input:focus {
    outline: none;
    border-color: var(--primary);
}
.filter-price-sep {
    color: var(--text-muted);
}
.filter-apply-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.3s;
}
.filter-apply-btn:hover {
    background: #333;
}

/* Shop Pagination */
.shop-pagination .pagination {
    gap: 4px;
}
.shop-pagination .page-link {
    border-radius: 0;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.8rem;
    padding: 8px 14px;
}
.shop-pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pdp-gallery {
    position: sticky;
    top: 80px;
}
.pdp-main-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--light-bg);
    margin-bottom: 12px;
}
.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdp-thumbnails {
    display: flex;
    gap: 8px;
}
.pdp-thumb {
    width: 70px;
    height: 90px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}
.pdp-thumb.active,
.pdp-thumb:hover {
    border-color: var(--primary);
}
.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdp-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.pdp-price-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pdp-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.pdp-price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.pdp-discount-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    letter-spacing: 0.5px;
}
.pdp-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.pdp-stars {
    color: var(--accent);
    font-size: 0.85rem;
}
.pdp-review-count {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.pdp-description {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}
.pdp-option-group {
    margin-bottom: 20px;
}
.pdp-option-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}
.pdp-size-options,
.pdp-color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp-size-btn,
.pdp-color-btn {
    border: 1px solid var(--border);
    background: var(--white);
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.pdp-size-btn:hover,
.pdp-color-btn:hover {
    border-color: var(--primary);
}
.pdp-size-btn.active,
.pdp-color-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.pdp-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
}
.pdp-qty-btn {
    background: none;
    border: none;
    padding: 8px 14px;
    font-size: 1rem;
    cursor: pointer;
    color: var(--primary);
}
.pdp-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 0.85rem;
    padding: 8px 0;
    -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.pdp-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.pdp-btn-cart {
    flex: 1;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 24px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
.pdp-btn-cart:hover {
    background: var(--primary);
    color: var(--white);
}
.pdp-btn-buy {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 14px 24px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}
.pdp-btn-buy:hover {
    background: #333;
    border-color: #333;
    color: var(--white);
}
.pdp-accordions {
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}
.pdp-accordion-item {
    border-bottom: 1px solid var(--border);
}
.pdp-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--primary);
}
.pdp-accordion-body {
    padding: 0 0 16px 0;
}
.pdp-accordion-body ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
}
.pdp-accordion-body li {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 6px;
}
.pdp-share {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pdp-share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}
.pdp-share-icons {
    display: flex;
    gap: 12px;
}
.pdp-share-icons a {
    color: var(--primary);
    font-size: 1rem;
    transition: color 0.2s;
}
.pdp-share-icons a:hover {
    color: var(--accent);
}

/* ===== CART PAGE ===== */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.cart-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}
.cart-count {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}
.cart-continue-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}
.cart-continue-link:hover {
    color: var(--accent);
}
.cart-items {
    display: flex;
    flex-direction: column;
}
.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item:first-child {
    padding-top: 0;
}
.cart-item-image {
    width: 90px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--light-bg);
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.cart-item-name a {
    color: var(--primary);
    text-decoration: none;
}
.cart-item-name a:hover {
    color: var(--accent);
}
.cart-item-variant {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.cart-item-price {
    font-size: 0.85rem;
    font-weight: 600;
}
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.cart-qty-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
}
.cart-qty-btn {
    background: none;
    border: none;
    padding: 6px 12px;
    font-size: 0.9rem;
    cursor: pointer;
}
.cart-qty-btn:disabled {
    opacity: 0.3;
}
.cart-qty-value {
    padding: 0 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.cart-remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
}
.cart-remove-btn:hover {
    color: #E53E3E;
}

/* Order Summary */
.order-summary {
    background: var(--light-bg);
    border: 1px solid var(--border);
    padding: 28px;
}
.order-summary-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.order-summary-rows {
    margin-bottom: 16px;
}
.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
}
.order-summary-row.discount {
    color: #2E7D32;
}
.order-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px solid var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}
.btn-checkout {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}
.btn-checkout:hover {
    background: #333;
    color: var(--white);
}
.order-summary-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
}
.cart-empty i {
    color: var(--border);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.checkout-section {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.checkout-section-title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.checkout-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 12px 14px;
    font-size: 0.85rem;
    transition: border-color 0.2s;
}
.checkout-input:focus {
    outline: none;
    border-color: var(--primary);
}
.checkout-payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkout-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s;
}
.checkout-payment-option:has(input:checked) {
    border-color: var(--primary);
}
.checkout-radio {
    accent-color: var(--primary);
}
.checkout-payment-label {
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-place-order {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-place-order:hover {
    background: #333;
}

/* Checkout Summary */
.checkout-summary {
    background: var(--light-bg);
    border: 1px solid var(--border);
    padding: 28px;
}
.checkout-summary-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.checkout-summary-items {
    margin-bottom: 20px;
}
.checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.checkout-summary-item:last-child {
    border-bottom: none;
}
.checkout-summary-item-img {
    position: relative;
    width: 56px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
}
.checkout-summary-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.checkout-summary-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.checkout-summary-item-info {
    flex: 1;
}
.checkout-summary-item-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
}
.checkout-summary-item-variant {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.checkout-summary-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}
.checkout-summary-totals {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.82rem;
}
.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 2px solid var(--primary);
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px;
    max-width: 600px;
}
.about-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}
.about-hero-title em {
    font-style: italic;
    font-weight: 400;
}
.about-hero-text {
    font-size: 0.9rem;
    opacity: 0.85;
}
.about-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}
.about-story-image {
    border-radius: 0;
    overflow: hidden;
}
.about-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-value {
    padding: 20px;
}
.about-value-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}
.about-value-title {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.about-value-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}
.about-stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 48px 0;
}
.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}
.about-stat-label {
    font-size: 0.75rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: var(--light-bg);
    padding: 60px 0;
}
.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.contact-hero-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.contact-info-value {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.contact-form-block {
    background: var(--light-bg);
    padding: 36px;
    border: 1px solid var(--border);
}
.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.contact-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 12px 14px;
    font-size: 0.85rem;
    background: var(--white);
    transition: border-color 0.2s;
}
.contact-input:focus {
    outline: none;
    border-color: var(--primary);
}
textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}
.btn-send-message {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-send-message:hover {
    background: var(--accent-hover);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 991.98px) {
    .category-hero {
        min-height: 200px;
    }
    .category-hero-title {
        font-size: 1.8rem;
    }
    .pdp-gallery {
        position: static;
    }
    .about-hero {
        min-height: 300px;
    }
    .about-hero-title {
        font-size: 1.8rem;
    }
    .cart-item-details {
        flex-direction: column;
    }
    .cart-item-actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .cart-item-image {
        width: 70px;
        height: 90px;
    }
    .pdp-title {
        font-size: 1.3rem;
    }
    .pdp-price {
        font-size: 1.2rem;
    }
    .pdp-actions {
        flex-direction: column;
    }
    .contact-form-block {
        padding: 24px;
    }
    .about-stat-number {
        font-size: 1.5rem;
    }
}
