/* ============================================================
   Fashion Catalog — Public Site Styles
   Premium minimal fashion aesthetic
   ============================================================ */

/* === CSS Variables === */
:root {
    --fc-text:       #111111;
    --fc-muted:      #6b7280;
    --fc-bg:         #ffffff;
    --fc-bg-subtle:  #faf8f5;
    --fc-border:     #e8e3db;
    --fc-border-hover: #c8bfb3;
    --fc-accent:     #b8925a;
    --fc-wa:         #25D366;
    --fc-wa-hover:   #1ebe5d;
    --fc-serif:      'Playfair Display', Georgia, serif;
    --fc-sans:       'Inter', system-ui, -apple-system, sans-serif;
    --fc-transition: 0.2s ease;
    --navbar-h:      62px;
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--fc-sans);
    color: var(--fc-text);
    background: var(--fc-bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--fc-serif);
    font-weight: 700;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

/* === Utilities === */
.text-accent   { color: var(--fc-accent) !important; }
.border-subtle { border-color: var(--fc-border) !important; }
.min-vh-70     { min-height: 70vh; }
.min-vh-50     { min-height: 50vh; }
.text-shadow   { text-shadow: 0 2px 8px rgba(0,0,0,0.55); }

/* === Navbar === */
.site-navbar {
    background: #fff !important;
    border-bottom: 1px solid var(--fc-border);
    height: var(--navbar-h);
    padding: 0;
}
.site-navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
}
.site-navbar .navbar-brand {
    padding: 0;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}
.site-navbar .navbar-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
}
.brand-text {
    font-family: var(--fc-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fc-text);
    letter-spacing: -0.01em;
}
.brand-text span { color: var(--fc-accent); }

.site-navbar .navbar-toggler {
    border: 0;
    padding: 0.4rem;
    color: var(--fc-text);
}
.site-navbar .navbar-toggler:focus { box-shadow: none; }

.site-navbar .navbar-nav { gap: 0.25rem; }

.site-navbar .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #555;
    padding: 0.45rem 0.85rem;
    border-radius: 4px;
    transition: color var(--fc-transition), background var(--fc-transition);
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--fc-text);
    background: var(--fc-bg-subtle);
}
.site-navbar .dropdown-menu {
    border: 1px solid var(--fc-border);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 0.5rem;
    min-width: 200px;
}
.site-navbar .dropdown-item {
    font-size: 0.85rem;
    border-radius: 4px;
    padding: 0.45rem 0.85rem;
    color: #444;
}
.site-navbar .dropdown-item:hover { background: var(--fc-bg-subtle); color: var(--fc-text); }

.btn-wa-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--fc-wa);
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: background var(--fc-transition), transform var(--fc-transition);
    margin-left: 0.5rem;
}
.btn-wa-nav:hover { background: var(--fc-wa-hover); color: #fff; transform: scale(1.08); }

/* Mobile nav tweaks */
@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        position: absolute;
        top: var(--navbar-h);
        left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--fc-border);
        padding: 1rem 1.25rem 1.5rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        z-index: 200;
    }
    .site-navbar .navbar-nav { gap: 0; }
    .site-navbar .nav-link { padding: 0.65rem 0.5rem; }
    .btn-wa-nav { margin-left: 0; margin-top: 0.75rem; }
}

/* === WhatsApp Button (standalone) === */
.btn-whatsapp {
    background: var(--fc-wa);
    color: #fff;
    border: none;
    font-weight: 500;
    transition: background var(--fc-transition);
}
.btn-whatsapp:hover { background: var(--fc-wa-hover); color: #fff; }

/* === Hero Fallback === */
.hero-section {
    background: var(--fc-bg-subtle);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-family: var(--fc-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.hero-subtitle { font-size: 1.1rem; color: var(--fc-muted); }
.hero-bg { display: none; }

/* === Carousel (Banner) === */
#heroCarousel .carousel-item {
    background: #f0ece6;
    min-height: 460px;
}
#heroCarousel .carousel-item img {
    max-height: 580px;
    object-fit: cover;
    width: 100%;
}
/* Base caption reset — position classes do the placement */
#heroCarousel .carousel-caption {
    right: auto;
    bottom: auto;
    left: auto;
    padding: 0;
    max-width: 500px;
}
#heroCarousel .carousel-caption h2 {
    font-family: var(--fc-serif);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
#heroCarousel .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
/* Caption position classes */
#heroCarousel .carousel-caption.fc-caption-left-center {
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 500px;
}
#heroCarousel .carousel-caption.fc-caption-center-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
    width: 80%;
}
#heroCarousel .carousel-caption.fc-caption-right-center {
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 460px;
}
#heroCarousel .carousel-caption.fc-caption-left-bottom {
    left: 6%;
    bottom: 12%;
    top: auto;
    transform: none;
    text-align: left;
    max-width: 500px;
}

/* === Section Headers === */
.section-header { margin-bottom: 2.5rem; }
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-accent);
    margin-bottom: 0.5rem;
    display: block;
}
.section-title {
    font-family: var(--fc-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    color: var(--fc-text);
    margin-bottom: 0.5rem;
}
.section-sub {
    font-size: 0.95rem;
    color: var(--fc-muted);
    margin-bottom: 0;
}

/* === Category Cards === */
.category-card { display: block; text-decoration: none; }
.category-card .card {
    border: 1px solid var(--fc-border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color var(--fc-transition), transform var(--fc-transition), box-shadow var(--fc-transition);
}
.category-card:hover .card {
    border-color: var(--fc-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08) !important;
}
.category-img-wrapper {
    aspect-ratio: 5/4;
    overflow: hidden;
    background: var(--fc-bg-subtle);
}
.category-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card:hover .category-img-wrapper img { transform: scale(1.06); }
.category-placeholder {
    aspect-ratio: 5/4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fc-bg-subtle);
}

/* === Product Cards === */
.product-card {
    border: 1px solid var(--fc-border);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color var(--fc-transition), box-shadow var(--fc-transition), transform var(--fc-transition);
}
.product-card:hover {
    border-color: var(--fc-border-hover);
    box-shadow: 0 10px 36px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.product-card-img-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--fc-bg-subtle);
    flex-shrink: 0;
}
.product-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2.5rem;
}

/* Badges */
.product-card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1;
}
.pc-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    display: inline-block;
    line-height: 1.4;
}
.pc-badge-new        { background: var(--fc-accent); color: #fff; }
.pc-badge-bestseller { background: #111; color: #fff; }
.pc-badge-featured   { background: rgba(0,0,0,0.65); color: #fff; }

/* Card body */
.product-card-body {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card-brand {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-muted);
    margin-bottom: 0.35rem;
}
.product-card-name {
    font-family: var(--fc-serif);
    font-size: 0.97rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--fc-text);
    margin-bottom: 0.25rem;
    text-decoration: none;
    display: block;
}
.product-card-name:hover { color: var(--fc-text); }
.product-card-code {
    font-size: 0.72rem;
    color: var(--fc-muted);
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}
.product-card-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fc-text);
    margin-bottom: 0.85rem;
}

/* Card actions */
.product-card-actions {
    margin-top: auto;
    display: flex;
    gap: 7px;
}
.pc-btn {
    flex: 1;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.45rem 0.4rem;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--fc-transition);
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
}
.pc-btn-enquire {
    background: var(--fc-wa);
    color: #fff;
    border-color: var(--fc-wa);
}
.pc-btn-enquire:hover { background: var(--fc-wa-hover); border-color: var(--fc-wa-hover); color: #fff; }
.pc-btn-details {
    background: transparent;
    color: var(--fc-text);
    border-color: var(--fc-border);
}
.pc-btn-details:hover { border-color: #999; background: var(--fc-bg-subtle); color: var(--fc-text); }

/* === Catalog Filter Bar === */
.catalog-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--fc-border);
    padding: 0.65rem 0;
    position: sticky;
    top: var(--navbar-h);
    z-index: 99;
}
.catalog-filter-bar .form-control,
.catalog-filter-bar .form-select {
    border-color: var(--fc-border);
    font-size: 0.85rem;
    background: var(--fc-bg-subtle);
}
.catalog-filter-bar .form-control:focus,
.catalog-filter-bar .form-select:focus {
    border-color: #aaa;
    box-shadow: none;
    background: #fff;
}
.catalog-result-count { font-size: 0.82rem; color: var(--fc-muted); white-space: nowrap; }

@media (max-width: 991.98px) {
    .catalog-filter-bar { position: static; }
}

/* === Catalog Empty State === */
.catalog-empty { padding: 5rem 0; text-align: center; }
.catalog-empty-icon { font-size: 3.5rem; color: #d5cec5; margin-bottom: 1.25rem; }

/* === Product Detail Page === */
.product-detail-carousel {
    aspect-ratio: 3/4;
    background: var(--fc-bg-subtle);
    border: 1px solid var(--fc-border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.product-detail-carousel .carousel-inner,
.product-detail-carousel .carousel-item {
    height: 100%;
}
.product-detail-carousel .carousel-item img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
}
.product-carousel-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #ccc; font-size: 3rem;
}
.product-carousel-ctrl {
    width: 12%;
    opacity: 0.55;
}
.product-carousel-ctrl:hover,
.product-carousel-ctrl:focus { opacity: 0.9; }
.product-carousel-dots {
    bottom: 8px;
    margin: 0;
}
.product-carousel-dots [data-bs-target] {
    width: 6px; height: 6px;
    border-radius: 50%;
    border-top: none; border-bottom: none;
    opacity: 0.5;
    background-color: #fff;
    transition: opacity 0.15s, width 0.15s;
}
.product-carousel-dots .active {
    opacity: 1;
    width: 18px;
    border-radius: 3px;
}
.product-detail-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.thumb-btn {
    width: 66px; height: 78px;
    border: 2px solid var(--fc-border);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--fc-bg-subtle);
    flex-shrink: 0;
    transition: border-color 0.15s;
}
.thumb-btn:hover  { border-color: #888; }
.thumb-btn.active { border-color: var(--fc-text); }
.thumb-btn img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-info { padding-left: 1rem; }

.product-detail-brand {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fc-muted);
    margin-bottom: 0.6rem;
    display: block;
}
.product-detail-name {
    font-family: var(--fc-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 0.5rem;
}
.product-detail-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1rem; }
.product-detail-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--fc-text);
    margin-bottom: 0;
}
.product-detail-divider {
    border: none;
    border-top: 1px solid var(--fc-border);
    margin: 1.5rem 0;
}
.detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fc-muted);
    margin-bottom: 0.35rem;
    display: block;
}
.detail-value {
    font-size: 0.95rem;
    color: var(--fc-text);
    margin-bottom: 1rem;
}
.size-chip {
    display: inline-block;
    border: 1px solid var(--fc-border);
    border-radius: 3px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--fc-text);
    margin: 0 5px 6px 0;
    background: #fff;
    transition: border-color var(--fc-transition);
}
.product-description { line-height: 1.8; color: #444; font-size: 0.95rem; }
.product-description p:last-child { margin-bottom: 0; }

/* Product detail sticky side on desktop */
@media (min-width: 992px) {
    .product-detail-sticky { position: sticky; top: calc(var(--navbar-h) + 1.5rem); }
}

/* === WhatsApp CTA Strip === */
.whatsapp-cta {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
}

/* === Footer === */
.site-footer { background: #111 !important; }
.footer-brand-text {
    font-family: var(--fc-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.footer-brand-text span { color: var(--fc-accent); }
.footer-nav-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}
.footer-link {
    color: #999;
    font-size: 0.875rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color var(--fc-transition);
}
.footer-link:hover { color: #fff; }
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid #333;
    border-radius: 50%;
    color: #888;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color var(--fc-transition), color var(--fc-transition);
}
.social-icon-btn:hover { border-color: var(--fc-accent); color: var(--fc-accent); }

/* === Breadcrumb === */
.breadcrumb-item + .breadcrumb-item::before { color: #bbb; }

/* === Responsive === */
@media (min-width: 576px) and (max-width: 767.98px) {
    #heroCarousel .carousel-caption {
        max-width: 72vw !important;
    }
    #heroCarousel .carousel-caption h2 { font-size: clamp(1.25rem, 3.5vw, 1.75rem); }
}
@media (max-width: 575.98px) {
    /* Banner — taller on mobile, crop from top so faces/content shows */
    #heroCarousel .carousel-item {
        min-height: 0;
        height: min(72vh, 560px);
        overflow: hidden;
    }
    #heroCarousel .carousel-item img {
        max-height: none;
        height: 100%;
        object-position: center top;
    }
    /* Collapse all caption positions to a safe bottom layout on mobile */
    #heroCarousel .carousel-caption,
    #heroCarousel .carousel-caption.fc-caption-left-center,
    #heroCarousel .carousel-caption.fc-caption-center-center,
    #heroCarousel .carousel-caption.fc-caption-right-center,
    #heroCarousel .carousel-caption.fc-caption-left-bottom {
        left: 5% !important;
        right: 5% !important;
        top: auto !important;
        bottom: 8% !important;
        transform: none !important;
        max-width: 90% !important;
        width: auto !important;
        text-align: left;
    }
    #heroCarousel .carousel-caption.fc-caption-center-center { text-align: center; }
    #heroCarousel .carousel-caption h2 { font-size: 1.2rem; }
    #heroCarousel .carousel-caption p { font-size: 0.82rem; margin-bottom: 0.65rem; }
    #heroCarousel .carousel-caption .btn-lg { font-size: 0.82rem; padding: 0.35rem 0.9rem; }
    /* Caption semi-transparent scrim so text stays readable over any image */
    #heroCarousel .carousel-caption {
        background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
        padding: 2rem 1rem 0.75rem;
        left: 0 !important;
        right: 0 !important;
        max-width: 100% !important;
        bottom: 0 !important;
    }
    .hero-section { min-height: auto; padding: 4rem 0; }
    .product-detail-info { padding-left: 0; }
    .product-detail-thumbnails { gap: 6px; }
    .thumb-btn { width: 56px; height: 66px; }
    /* Product card actions — stack Add to Cart full-width, WA + Details below */
    .product-card-actions { flex-wrap: wrap; gap: 5px; }
    .pc-btn-add-bag { flex: 0 0 100%; width: 100%; }
    .pc-btn-wa-icon { flex: 0 0 44px !important; }
    .pc-btn-details { flex: 1; }
    /* Slightly tighter card body on narrow screens */
    .product-card-body { padding: 0.65rem 0.65rem 0.75rem; }
    .product-card-name { font-size: 0.875rem; }
    .product-card-price { font-size: 0.875rem; margin-bottom: 0.6rem; }
}

/* ============================================================
   Homepage Additions
   ============================================================ */

/* === Category Hero Tiles === */
.cat-hero-link { display: block; text-decoration: none; }
.cat-hero-tile {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background: #e8e3db;
}
@media (min-width: 768px) { .cat-hero-tile { aspect-ratio: 4/3; } }

.cat-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.cat-hero-link:hover .cat-hero-img { transform: scale(1.05); }

.cat-hero-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #d4ccc0 0%, #bfb5a6 100%);
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.75rem 2rem;
    transition: background 0.25s ease;
}
.cat-hero-link:hover .cat-hero-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 55%, transparent 100%);
}

.cat-hero-name {
    font-family: var(--fc-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1.15;
}
.cat-hero-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}
.cat-hero-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.cat-hero-link:hover .cat-hero-cta { color: #fff; border-color: rgba(255,255,255,0.85); }

@media (max-width: 575.98px) {
    .cat-hero-overlay { padding: 1.25rem; }
    .cat-hero-name { font-size: 1.25rem; }
}

/* === Brand Cards === */
.brand-card-link { display: block; text-decoration: none; }
.brand-card {
    border: 1px solid var(--fc-border);
    border-radius: 6px;
    background: #fff;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    overflow: hidden;
    transition: border-color var(--fc-transition), box-shadow var(--fc-transition), transform var(--fc-transition);
}
.brand-card-link:hover .brand-card {
    border-color: var(--fc-border-hover);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.brand-card-logo {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    opacity: 0.65;
    transition: filter var(--fc-transition), opacity var(--fc-transition);
}
.brand-card-link:hover .brand-card-logo { filter: none; opacity: 1; }
.brand-card-name {
    font-family: var(--fc-serif);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--fc-muted);
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.3;
    transition: color var(--fc-transition);
}
.brand-card-link:hover .brand-card-name { color: var(--fc-text); }

/* === Sale Section === */
.sale-section { background: #fff7f7; }

/* === Size Guide Cards === */
.size-guide-card {
    border: 1px solid var(--fc-border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.size-guide-header {
    font-family: var(--fc-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--fc-text);
    padding: 1rem 1.25rem 0.875rem;
    background: var(--fc-bg-subtle);
    border-bottom: 1px solid var(--fc-border);
    display: flex;
    align-items: center;
}
.size-guide-card .table {
    font-size: 0.875rem;
    margin: 0;
}
.size-guide-card .table thead th {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fc-muted);
    background: transparent;
    border-bottom-color: var(--fc-border);
    padding: 0.65rem 1.25rem;
}
.size-guide-card .table tbody td {
    border-color: var(--fc-border);
    padding: 0.55rem 1.25rem;
    color: var(--fc-text);
}
.size-guide-card .table tbody tr:last-child td { border-bottom: 0; }
.size-guide-footer {
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--fc-border);
    background: var(--fc-bg-subtle);
}
.size-guide-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fc-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color var(--fc-transition);
}
.size-guide-link:hover { color: var(--fc-text); }

/* ============================================================
   Enquiry Bag
   ============================================================ */

/* Floating Action Button */
.fc-enquiry-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
}
.fc-enquiry-fab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--fc-text);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 16px 10px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.28);
    transition: background 0.18s, transform 0.15s, box-shadow 0.15s;
}
.fc-enquiry-fab-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.33);
    color: #fff;
}
.fc-enquiry-fab-btn .bi-bag-heart-fill { font-size: 1.1rem; }
.fc-enquiry-fab-btn .badge { font-size: 0.7rem; min-width: 18px; }

/* Offcanvas */
.fc-enquiry-canvas { min-width: 320px; max-width: 380px; }

/* Bag items */
.fc-bag-item:last-child { border-bottom: none !important; margin-bottom: 0 !important; padding-bottom: 0 !important; }
.fc-bag-item-img {
    width: 58px;
    height: 68px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid var(--fc-border);
    flex-shrink: 0;
}
.fc-bag-no-img {
    width: 58px;
    height: 68px;
    border-radius: 3px;
    border: 1px solid var(--fc-border);
    background: var(--fc-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Product card — "Add to Enquiry" button */
.pc-btn-add-bag {
    background: var(--fc-text);
    color: #fff;
    border-color: var(--fc-text);
    flex: 2;
}
.pc-btn-add-bag:hover { background: #2a2a2a; border-color: #2a2a2a; color: #fff; }
.pc-btn-add-bag.fc-added { background: #4b5563; border-color: #4b5563; color: #fff; }
.pc-btn-wa-icon { flex: 0 0 34px; padding-left: 0; padding-right: 0; }

/* Selectable size buttons on product detail */
.fc-size-btn {
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.fc-size-btn:hover { border-color: var(--fc-border-hover); }
.fc-size-btn.active {
    border-color: var(--fc-text) !important;
    background: var(--fc-text);
    color: #fff;
}

/* "Add to Enquiry" button on detail page — added state */
.btn.fc-added {
    background: #4b5563 !important;
    border-color: #4b5563 !important;
    color: #fff !important;
}

@media (max-width: 575.98px) {
    .fc-enquiry-fab { bottom: 16px; right: 16px; }
    .fc-enquiry-fab-btn { padding: 10px 12px; }
    .fc-enquiry-canvas { max-width: 100%; }
}
