/**
 * Aharguna Gallery - Luxury Antique & Curated Heritage Theme
 * Color Palette: Warm Ivory, Charcoal/Dark Ebony, Antique Gold/Brass
 * Typography: Cormorant Garamond (Headings), Inter & Manrope (Body)
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
    /* Color Palette */
    --bg-main: #FDFBF7;
    --bg-cream: #F7F3EB;
    --bg-card: #FFFFFF;
    --bg-dark: #161311;
    --bg-dark-secondary: #221D1A;
    --bg-dark-card: #2B2521;
    
    --text-main: #2A2421;
    --text-muted: #6B625B;
    --text-light: #F7F3EB;
    --text-light-muted: #C8BFB5;
    
    --gold-primary: #C5A059;
    --gold-light: #DFBA73;
    --gold-dark: #9A7B38;
    --gold-glow: rgba(197, 160, 89, 0.25);
    
    --border-light: #EBE4D8;
    --border-gold: #D4AF37;
    --border-dark: #3A322C;
    
    /* Status Colors */
    --status-avail-bg: #EAF5EA;
    --status-avail-text: #237823;
    --status-nego-bg: #FFF8E7;
    --status-nego-text: #B27B00;
    --status-res-bg: #EBF3FA;
    --status-res-text: #206095;
    --status-sold-bg: #F9EBEA;
    --status-sold-text: #9E2B25;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(34, 29, 26, 0.04);
    --shadow-md: 0 8px 24px rgba(34, 29, 26, 0.08);
    --shadow-lg: 0 16px 40px rgba(34, 29, 26, 0.12);
    --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1440px;
}

/* Luxury Utilities */
.text-gold { color: var(--gold-primary) !important; }
.text-light { color: var(--text-light) !important; }
.text-muted { color: var(--text-muted) !important; }
.font-serif { font-family: var(--font-heading); }
.bg-cream { background-color: var(--bg-cream); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-dark-card { background-color: var(--bg-dark-card); }

.divider-gold {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 18px auto;
}

.divider-gold-left {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 16px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.bg-dark .section-title {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #FFFFFF;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.45);
    transform: translateY(-1px);
    color: #FFFFFF;
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
}

.btn-dark:hover {
    background: var(--bg-dark-secondary);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline-dark:hover {
    border-color: var(--text-main);
    background: var(--bg-cream);
}

.btn-wa {
    background: #25D366;
    color: #FFFFFF;
    font-weight: 600;
}

.btn-wa:hover {
    background: #20BA56;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 50px;
    text-transform: uppercase;
}

.status-available { background: var(--status-avail-bg); color: var(--status-avail-text); border: 1px solid rgba(35, 120, 35, 0.2); }
.status-negotiation { background: var(--status-nego-bg); color: var(--status-nego-text); border: 1px solid rgba(178, 123, 0, 0.25); }
.status-reserved { background: var(--status-res-bg); color: var(--status-res-text); border: 1px solid rgba(32, 96, 149, 0.2); }
.status-sold { background: var(--status-sold-bg); color: var(--status-sold-text); border: 1px solid rgba(158, 43, 37, 0.2); }
.status-archived { background: #ECEFF1; color: #546E7A; border: 1px solid #CFD8DC; }
.status-pending { background: #FFF9C4; color: #F57F17; }
.status-verified, .status-completed, .status-accepted { background: #E8F5E9; color: #2E7D32; }
.status-processing, .status-shipped, .status-order { background: #E1F5FE; color: #0277BD; }
.status-rejected, .status-cancelled { background: #FFEBEE; color: #C62828; }
.status-countered { background: #EDE7F6; color: #512DA8; }

/* Top Announcement Bar */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-light-muted);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-dark);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-links a {
    color: var(--text-light-muted);
}

.top-bar-links a:hover {
    color: var(--gold-light);
}

/* Header & Navigation */
.site-header {
    background: rgba(253, 251, 247, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(253, 251, 247, 0.98);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 84px;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-main);
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.action-icon-btn {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--text-main);
    cursor: pointer;
    position: relative;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon-btn:hover {
    color: var(--gold-primary);
}

.action-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-primary);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    background: linear-gradient(135deg, #181412 0%, #29231F 100%);
    color: var(--text-light);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-slider-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-slider-wrapper {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.hero-title span {
    color: var(--gold-light);
    font-style: italic;
}

.hero-desc {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-light-muted);
    margin-bottom: 34px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-showcase-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

.hero-showcase-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, var(--gold-primary), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 400px;
    background: #110E0D;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-showcase-card:hover .hero-image-wrapper img {
    transform: scale(1.04);
}

.hero-card-meta {
    padding: 18px 10px 6px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-card-title {
    font-size: 1.35rem;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.hero-card-period {
    font-size: 0.82rem;
    color: var(--gold-light);
}

/* Slider Controls & Navigation */
.hero-slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold-light);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
    border-color: var(--gold-primary);
    transform: scale(1.08);
}

.slider-indicators {
    display: flex;
    gap: 20px;
    align-items: center;
}

.indicator-dot {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px 0;
    opacity: 0.45;
    transition: var(--transition);
    position: relative;
}

.indicator-dot.active {
    opacity: 1;
}

.indicator-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
}

.indicator-label {
    font-size: 0.76rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light-muted);
}

.indicator-dot.active .indicator-label {
    color: #FFFFFF;
}

.indicator-progress {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 4px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.indicator-dot.active .indicator-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--gold-primary);
    animation: progressFill 6.5s linear infinite;
}

@keyframes progressFill {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

/* Features Strip */
.features-strip {
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-light);
    padding: 36px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Category Grid */
.category-section {
    padding: 80px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-dark);
    height: 280px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.category-card:hover .category-card-bg {
    transform: scale(1.08);
    opacity: 0.6;
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 75%;
    background: linear-gradient(to top, rgba(22, 19, 17, 0.95), transparent);
    pointer-events: none;
}

.category-card-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.category-icon-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.category-title {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.category-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gold-light);
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.category-card:hover .category-link-arrow {
    transform: translateX(6px);
}

/* Product Card & Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}

.product-image-box {
    position: relative;
    height: 280px;
    background: #F2EFE9;
    overflow: hidden;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-box img {
    transform: scale(1.06);
}

.product-badge-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 2;
}

.wishlist-btn:hover, .wishlist-btn.active {
    background: #FFFFFF;
    color: #E53935;
    transform: scale(1.1);
}

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.product-card-title {
    font-size: 1.28rem;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a:hover {
    color: var(--gold-dark);
}

.product-meta-specs {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spec-pill {
    background: var(--bg-cream);
    padding: 2px 8px;
    border-radius: 2px;
    border: 1px solid var(--border-light);
}

.product-price-row {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.product-price-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.product-price-val {
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.product-min-bid {
    font-size: 0.76rem;
    color: var(--gold-dark);
}

/* Negotiation Flow Section */
.negotiation-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 90px 0;
}

.nego-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.nego-step-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
}

.nego-step-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}

.nego-step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.2);
}

.nego-step-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.nego-step-title {
    font-size: 1.35rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.nego-step-desc {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    line-height: 1.6;
}

/* Stories / Articles Section */
.stories-section {
    padding: 80px 0;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.story-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.story-img-box {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #EBE4D8;
}

.story-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.story-body {
    padding: 24px;
}

.story-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.story-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 10px;
}

.story-excerpt {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

/* Malang Showroom Banner */
.showroom-banner {
    background: linear-gradient(135deg, #1F1916 0%, #2E2520 100%);
    color: var(--text-light);
    padding: 70px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.showroom-info h3 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.showroom-address-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-left: 3px solid var(--gold-primary);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.showroom-actions {
    display: flex;
    gap: 16px;
}

/* Footer */
.site-footer {
    background: #110E0C;
    color: var(--text-light-muted);
    padding: 80px 0 30px;
    border-top: 2px solid var(--gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background: var(--gold-primary);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #221D1A;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: var(--transition);
}

.social-icon-link:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

/* Floating WhatsApp Widget */
.floating-wa-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 990;
    transition: var(--transition);
    text-decoration: none;
}

.floating-wa-btn i {
    font-size: 1.4rem;
}

.floating-wa-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #FFFFFF;
}

/* Product Detail Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 40px 0 60px;
}

.gallery-main-view {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #FFFFFF;
    height: 480px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.gallery-main-view img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: #FFFFFF;
    flex-shrink: 0;
    transition: var(--transition);
}

.gallery-thumb.active, .gallery-thumb:hover {
    border-color: var(--gold-primary);
}

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

.product-detail-info h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.product-code-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-detail-price-box {
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 20px 0;
}

.detail-price-current {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

.detail-min-bid-notice {
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-top: 4px;
    font-weight: 500;
}

.product-actions-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.specs-table th, .specs-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    text-align: left;
}

.specs-table th {
    width: 35%;
    color: var(--text-muted);
    font-weight: 500;
    background: var(--bg-cream);
}

/* Aspect Video & Instagram Embeds */
.aspect-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #000000;
}

.aspect-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.aspect-instagram-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.aspect-instagram-wrapper iframe {
    width: 100%;
    min-height: 520px;
    border-radius: var(--radius-sm);
}

/* Modal Popup */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 15, 14, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #FFFFFF;
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 580px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-card {
    transform: translateY(0);
}

.modal-header {
    background: var(--bg-dark);
    color: #FFFFFF;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-dark);
}

.modal-header h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--text-light-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: #FFFFFF;
}

.modal-body {
    padding: 28px 24px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: #FFFFFF;
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Catalog Filter Sidebar */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    margin: 40px 0 80px;
}

.filter-sidebar {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 24px;
    align-self: flex-start;
}

.filter-group {
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-checkbox-label input {
    accent-color: var(--gold-primary);
}

.filter-checkbox-label:hover {
    color: var(--text-main);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.84rem;
    color: var(--text-muted);
    padding: 16px 0;
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

/* Responsive Grid Utilities */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.hero-banner-subpage {
    background: linear-gradient(135deg, #181412 0%, #29231F 100%);
    color: #FFFFFF;
    padding: 70px 0;
    text-align: center;
}

.hero-banner-subpage h1 {
    font-size: 2.8rem;
    margin-bottom: 14px;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .responsive-grid-2, .responsive-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .hero-banner-subpage {
        padding: 40px 0 !important;
    }
    .hero-banner-subpage h1 {
        font-size: 1.85rem !important;
    }
}

/* Mobile Navigation Drawer (Hidden Offscreen by Default) */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(16, 13, 11, 0.75);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FDFBF7;
    border-left: 1px solid var(--gold-primary);
    z-index: 9999;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4);
}

.mobile-nav-drawer.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-drawer-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer-close:hover {
    color: var(--gold-primary);
}

.mobile-drawer-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    background: var(--bg-cream);
    color: var(--gold-dark);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
}

.desktop-only-btn {
    display: flex;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nego-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 16px;
    }

    .header-inner {
        height: 68px;
    }

    .brand-title {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }

    .brand-subtitle {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .main-nav {
        display: none !important;
    }

    .desktop-only-btn {
        display: none !important;
    }

    .header-actions {
        gap: 8px;
    }

    .action-icon-btn {
        font-size: 1.2rem;
        padding: 4px;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: var(--bg-cream);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-sm);
        color: var(--text-main);
        font-size: 1.25rem;
        cursor: pointer;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-image-box {
        height: 200px;
    }

    .product-card-body {
        padding: 14px;
    }

    .product-card-title {
        font-size: 1.1rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .gallery-main-view {
        height: 320px;
    }

    .hero-slider-section {
        padding: 40px 0 60px;
    }

    .hero-slider-wrapper {
        min-height: auto;
    }

    .hero-image-wrapper {
        height: 280px;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-slider-controls {
        margin-top: 24px;
        padding-top: 16px;
    }

    .slider-indicators .indicator-label {
        display: none;
    }

    .slider-indicators {
        gap: 12px;
    }

    .section-title {
        font-size: 1.85rem !important;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .top-bar {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .floating-wa-btn span {
        display: none;
    }

    .floating-wa-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portal-layout {
        grid-template-columns: 1fr;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }
}

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .nego-steps-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .modal-card {
        padding: 0;
    }

    .hero-image-wrapper {
        height: 240px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   MODERN REFERENCE LAYOUT STYLES (MATCHING REFERENCE STRUCTURE)
   ========================================================================== */

/* 1. Header Search Pill Bar */
.header-search-form {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid var(--border-gold);
    border-radius: 50px;
    padding: 3px 6px 3px 14px;
    max-width: 380px;
    flex: 1;
    margin: 0 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-form-icon {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-right: 8px;
}

.header-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    width: 100%;
    color: var(--text-main);
}

.header-search-submit {
    border-radius: 50px;
    white-space: nowrap;
    padding: 6px 14px;
}

.btn-xs {
    padding: 4px 10px;
    font-size: 0.76rem;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

/* 2. Modern Hero Showcase Slider */
.modern-hero-slider-section {
    background: #14100E;
    padding: 20px 0 32px;
    position: relative;
    overflow: hidden;
}

.hero-slider-outer {
    position: relative;
}

.modern-slider-track {
    position: relative;
    min-height: 480px;
}

.modern-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    transform: scale(0.98);
}

.modern-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
    transform: scale(1);
}

.modern-slide-card {
    border-radius: 20px;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 50px 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-slide-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.modern-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.modern-slide-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.18;
    margin-bottom: 16px;
}

.modern-slide-title span {
    color: var(--gold-light);
    font-style: italic;
}

.modern-slide-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

.modern-slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.modern-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(24, 20, 18, 0.75);
    border: 1px solid rgba(197, 160, 89, 0.6);
    color: var(--gold-light);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.modern-slider-arrow:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.modern-slider-arrow.prev { left: 16px; }
.modern-slider-arrow.next { right: 16px; }

.modern-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.slider-dot {
    width: 28px;
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    width: 50px;
    background: var(--gold-primary);
}

/* 3. Quick Category Icon Navigation Bar */
.quick-category-bar-section {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.quick-category-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
}

.quick-category-strip::-webkit-scrollbar {
    display: none;
}

.quick-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 12px;
    transition: var(--transition);
    min-width: 110px;
    flex-shrink: 0;
}

.quick-cat-item:hover {
    background: var(--bg-cream);
    transform: translateY(-3px);
}

.quick-cat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-cream);
    border: 1.5px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
    transition: var(--transition);
}

.quick-cat-item:hover .quick-cat-icon {
    background: var(--gold-primary);
    color: #FFFFFF;
    border-color: var(--gold-primary);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.35);
}

.quick-cat-name {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.quick-cat-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* 4. Video Kurasi Reels Bar (YouTube Shorts / IG Reels Model) */
.video-reels-section {
    padding: 50px 0 60px;
    background: var(--bg-cream);
}

.reels-carousel-container {
    position: relative;
    width: 100%;
}

.reels-cards-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 4px 20px;
}

.reels-cards-track::-webkit-scrollbar {
    display: none;
}

.reel-story-card {
    position: relative;
    min-width: 250px;
    max-width: 250px;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: #FFFFFF;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: #110E0D;
}

.reel-story-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border-color: var(--gold-primary);
}

.reel-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.86);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.reel-story-card:hover .reel-bg-image {
    transform: scale(1.08);
    filter: brightness(0.76);
}

.reel-top-bar {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.reel-type-badge {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.reel-top-controls {
    display: flex;
    gap: 6px;
}

.reel-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reel-center-play {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 2.5px solid rgba(255, 255, 255, 0.95);
    color: #FFFFFF;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 3;
}

.reel-story-card:hover .reel-center-play {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 24px rgba(197, 160, 89, 0.7);
}

.reel-social-stack {
    position: absolute;
    right: 12px;
    bottom: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 4;
}

.social-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #FFFFFF;
    font-size: 1.3rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.social-btn-item span {
    font-size: 0.7rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.social-btn-item.yt-badge-icon {
    font-size: 1.5rem;
    color: #FF0000;
    background: rgba(255, 255, 255, 0.95);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    margin-top: 4px;
}

.reel-bottom-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 14px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    z-index: 3;
}

.reel-profile-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.reel-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #1B1715;
    font-weight: 800;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #FFFFFF;
    flex-shrink: 0;
}

.reel-author {
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reel-date {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
}

.reel-caption {
    font-size: 0.78rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reels-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid var(--border-gold);
    color: var(--gold-dark);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.reels-nav-btn:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
    border-color: var(--gold-primary);
    transform: translateY(-50%) scale(1.1);
}

.reels-nav-btn.prev {
    left: -20px;
}

.reels-nav-btn.next {
    right: -20px;
}

@media (max-width: 768px) {
    .reels-nav-btn {
        display: none;
    }
}

/* 5. Product Rows & Modern Cards */
.product-row-section {
    padding: 55px 0;
}

.bg-cream-soft {
    background: #FAF7F2;
}

.product-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.modern-product-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.modern-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: var(--border-gold);
}

.modern-card-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #1B1715;
}

.modern-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-product-card:hover .modern-card-thumb img {
    transform: scale(1.06);
}

.modern-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.modern-card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.78rem;
    color: #E5A93C;
    margin-bottom: 6px;
}

.curator-seal-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 6px;
}

.modern-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

/* 6. Split Journal & Reviews */
.split-journal-reviews-section {
    padding: 70px 0;
    background: var(--bg-cream);
}

.split-journal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.journal-col, .reviews-col {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.split-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--border-gold);
}

.split-col-header h3 {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.split-col-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-decoration: none;
}

.split-col-badge {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.journal-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.journal-item-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    text-decoration: none;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.journal-item-card:hover {
    transform: translateX(4px);
}

.journal-item-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.journal-thumb {
    width: 76px;
    height: 76px;
    border-radius: 8px;
    object-fit: cover;
}

.journal-tag {
    font-size: 0.72rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
}

.journal-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 2px 0 4px;
    line-height: 1.35;
}

.journal-excerpt {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.reviews-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-item-card {
    background: #FAF8F5;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 14px 16px;
}

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

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.reviewer-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-stars {
    margin-left: auto;
    color: #E5A93C;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.84rem;
    color: var(--text-main);
    line-height: 1.55;
    font-style: italic;
}

/* 7. Showroom Malang Sanctuary Banner */
.showroom-banner-section {
    padding: 50px 0;
    background: #14100E;
}

.showroom-banner-card {
    background: linear-gradient(135deg, #1F1916 0%, #2E2520 100%);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 16px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.showroom-badge-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    padding: 24px 30px;
    text-align: center;
    backdrop-filter: blur(6px);
}

/* 8. Trust Seals & Payment / Logistics */
.trust-partners-strip {
    background: #FFFFFF;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
}

.trust-partners-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-text strong {
    color: var(--text-main);
}

.trust-badges-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-badge-pill {
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Mobile Responsive Breakpoints for New Layout */
@media (max-width: 1024px) {
    .video-reels-grid, .product-row-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-journal-grid {
        grid-template-columns: 1fr;
    }
    .showroom-banner-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modern-slide-card {
        padding: 36px 24px;
        min-height: 420px;
    }
    .modern-slide-title {
        font-size: 2rem !important;
    }
    .video-reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .product-row-grid {
        grid-template-columns: 1fr;
    }
    .header-search-form {
        display: none;
    }
}

@media (max-width: 480px) {
    .video-reels-grid {
        grid-template-columns: 1fr;
    }
    .modern-slide-actions {
        flex-direction: column;
    }
    .modern-slide-actions .btn {
        width: 100%;
    }
}
