/* ============================================
   LUXURY LOOKBOOK PAGE - PREMIUM DESIGN
   High-end fashion lookbook with elegant animations
   ============================================ */

:root {
    --lux-gold: #D4A574;
    --lux-gold-light: #E7D8C3;
    --lux-gold-dark: #B8935A;
    --lux-black: #1A1614;
    --lux-charcoal: #2C2416;
    --lux-white: #FBF8F4;
    --lux-cream: #F5F0E8;
    --lux-shadow-sm: 0 2px 8px rgba(26, 22, 20, 0.08);
    --lux-shadow-md: 0 8px 24px rgba(26, 22, 20, 0.12);
    --lux-shadow-lg: 0 20px 60px rgba(26, 22, 20, 0.18);
    --lux-shadow-xl: 0 30px 80px rgba(26, 22, 20, 0.25);
}

.lookbook-page {
    background: var(--lux-white) !important;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   LUXURY HERO SECTION
   ============================================ */

.lux-hero-lookbook {
    position: relative;
    min-height: 65vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--lux-charcoal) 0%, 
        #3a2f1f 50%, 
        var(--lux-charcoal) 100%);
}

.lux-hero-parallax-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(231, 216, 195, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(184, 147, 90, 0.08) 0%, transparent 80%);
    animation: luxParallax 20s ease-in-out infinite;
}

@keyframes luxParallax {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

.lux-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(26, 22, 20, 0.3) 100%);
    pointer-events: none;
}

.lux-hero-content-lookbook {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem 1.5rem;
}

.lux-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.lux-hero-icon {
    color: var(--lux-gold);
}

.lux-hero-badge span {
    color: var(--lux-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.lux-hero-title-main {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 300;
    color: var(--lux-white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lux-hero-year {
    display: block;
    font-size: 0.5em;
    color: var(--lux-gold);
    letter-spacing: 8px;
    margin-top: 0.5rem;
    font-weight: 200;
}

.lux-hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--lux-gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.lux-hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(251, 248, 244, 0.85);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.lux-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.lux-btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--lux-gold) 0%, var(--lux-gold-dark) 100%);
    color: var(--lux-black);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.lux-btn-primary-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lux-gold-light) 0%, var(--lux-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lux-btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
}

.lux-btn-primary-hero:hover::before {
    opacity: 1;
}

.lux-btn-primary-hero svg,
.lux-btn-primary-hero span {
    position: relative;
    z-index: 1;
}

.lux-btn-primary-hero svg {
    transition: transform 0.4s ease;
}

.lux-btn-primary-hero:hover svg {
    transform: translateY(4px);
}

.lux-hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.lux-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--lux-gold) 50%, 
        transparent 100%);
    animation: luxScrollPulse 2s ease-in-out infinite;
}

@keyframes luxScrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   LUXURY COLLECTIONS SECTION
   ============================================ */

.lux-lookbook-collections {
    padding: 8rem 0;
    background: var(--lux-white);
    position: relative;
}

.lux-lookbook-collections .container {
    max-width: 1400px;
    margin: 0 auto;
}

.lux-lookbook-collections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--lux-charcoal) 0%, transparent 100%);
    pointer-events: none;
}

.lux-section-header-lookbook {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.lux-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.lux-section-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--lux-gold) 50%, 
        transparent 100%);
}

.lux-section-text {
    color: var(--lux-gold-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.lux-section-title-lookbook {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--lux-black);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.lux-section-subtitle-lookbook {
    font-size: 1.125rem;
    color: var(--lux-charcoal);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   LUXURY LOOKBOOK GRID
   ============================================ */

.lux-lookbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    max-width: 100%;
}

@media (min-width: 640px) {
    .lux-lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .lux-lookbook-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1400px) {
    .lux-lookbook-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   LUXURY LOOKBOOK CARD
   ============================================ */

.lux-lookbook-card {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--lux-shadow-sm);
    animation: luxFadeInUp 0.8s ease-out backwards;
}

@keyframes luxFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lux-lookbook-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--lux-shadow-xl);
}

/* Force image wrapper height - override Bootstrap */
.lux-lookbook-card > .lux-card-image-wrapper,
a.lux-lookbook-card > .lux-card-image-wrapper,
.lux-lookbook-card .lux-card-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    overflow: hidden !important;
    background: var(--lux-cream) !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (min-width: 640px) {
    .lux-lookbook-card > .lux-card-image-wrapper,
    a.lux-lookbook-card > .lux-card-image-wrapper,
    .lux-lookbook-card .lux-card-image-wrapper {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
}

@media (min-width: 1024px) {
    .lux-lookbook-card > .lux-card-image-wrapper,
    a.lux-lookbook-card > .lux-card-image-wrapper,
    .lux-lookbook-card .lux-card-image-wrapper {
        height: 380px !important;
        min-height: 380px !important;
        max-height: 380px !important;
    }
}

@media (min-width: 1400px) {
    .lux-lookbook-card > .lux-card-image-wrapper,
    a.lux-lookbook-card > .lux-card-image-wrapper,
    .lux-lookbook-card .lux-card-image-wrapper {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
    }
}

.lux-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(26, 22, 20, 0) 0%, 
        rgba(26, 22, 20, 0.02) 60%, 
        rgba(26, 22, 20, 0.1) 100%);
    z-index: 1;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.lux-lookbook-card:hover .lux-card-image-overlay {
    opacity: 0.6;
}

/* Force image styles - override Bootstrap img defaults */
.lux-lookbook-card .lux-card-image,
.lux-lookbook-card img.lux-card-image,
.lux-card-image-wrapper > img,
.lux-card-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: relative !important;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lux-lookbook-card:hover .lux-card-image {
    transform: scale(1.08);
}

.lux-card-hover-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(212, 165, 116, 0.3) 0%, 
        rgba(184, 147, 90, 0.2) 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.6s ease;
    mix-blend-mode: overlay;
}

.lux-lookbook-card:hover .lux-card-hover-effect {
    opacity: 1;
}

.lux-card-content {
    padding: 1.5rem 1.25rem;
    background: #fff;
}

.lux-card-label {
    font-size: 0.7rem;
    color: var(--lux-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.lux-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--lux-black);
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.lux-lookbook-card:hover .lux-card-title {
    color: var(--lux-gold-dark);
}

.lux-card-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--lux-charcoal);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.lux-card-divider {
    color: var(--lux-gold);
}

.lux-card-products-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--lux-cream);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--lux-charcoal);
    font-weight: 500;
    margin-bottom: 1rem;
}

.lux-card-products-count svg {
    color: var(--lux-gold-dark);
}

.lux-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.875rem;
    color: var(--lux-gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.lux-card-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--lux-gold);
}

.lux-lookbook-card:hover .lux-card-arrow {
    transform: translateX(8px);
}

/* ============================================
   EMPTY STATE
   ============================================ */

.lux-empty-state {
    text-align: center;
    padding: 6rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.lux-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lux-cream);
    border-radius: 50%;
    color: var(--lux-gold-dark);
}

.lux-empty-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--lux-black);
    margin-bottom: 1rem;
}

.lux-empty-text {
    font-size: 1rem;
    color: var(--lux-charcoal);
    opacity: 0.7;
    line-height: 1.6;
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */

.fade-in-up {
    animation: luxFadeInUp 1s ease-out backwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1199px) {
    .lux-hero-lookbook {
        min-height: 60vh;
        max-height: 600px;
    }
    
    .lux-lookbook-collections {
        padding: 4rem 0;
    }
}

@media (max-width: 767px) {
    .lux-hero-lookbook {
        min-height: 70vh;
        max-height: 600px;
        padding-top: 60px;
    }
    
    .lux-hero-content-lookbook {
        padding: 1.5rem 1rem;
    }
    
    .lux-card-image-wrapper {
        height: 320px;
    }
    
    .lux-hero-badge {
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .lux-hero-badge span {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .lux-hero-tagline {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }
    
    .lux-hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .lux-btn-primary-hero {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
    
    .lux-hero-scroll-indicator {
        bottom: 2rem;
    }
    
    .lux-lookbook-collections {
        padding: 4rem 0;
    }
    
    .lux-lookbook-collections::before {
        height: 100px;
    }
    
    .lux-section-header-lookbook {
        margin-bottom: 3rem;
    }
    
    .lux-section-line {
        width: 40px;
    }
    
    .lux-lookbook-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lux-card-content {
        padding: 1.25rem 1rem;
    }
    
    .lux-card-title {
        font-size: 1.125rem;
    }
}

/* ============================================
   SMOOTH SCROLLING & PERFORMANCE
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .lux-lookbook-card,
    .lux-card-image,
    .lux-hero-parallax-bg,
    .lux-scroll-line,
    .lux-card-arrow,
    .fade-in-up {
        animation: none !important;
        transition: none !important;
    }
}

.lux-lookbook-card:focus,
.lux-btn-primary-hero:focus {
    outline: 3px solid var(--lux-gold);
    outline-offset: 4px;
}

/* ============================================
   LOADING STATES
   ============================================ */

.lux-card-image,
.lux-empty-icon {
    background: linear-gradient(135deg, 
        var(--lux-cream) 0%, 
        var(--lux-gold-light) 50%, 
        var(--lux-cream) 100%);
    background-size: 200% 200%;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .lux-hero-lookbook,
    .landing-nav {
        display: none;
    }
    
    .lux-lookbook-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
    }
    
    .lux-lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Legacy support - keep old classes for backwards compatibility */
.lookbook-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
}

@media (min-width: 640px) {
    .lookbook-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .lookbook-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.lookbook-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(44, 36, 22, 0.08);
}

.lookbook-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 36, 22, 0.12);
}

.lookbook-gallery-item-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--lux-cream);
}

.lookbook-gallery-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lookbook-gallery-item:hover .lookbook-gallery-item-image {
    transform: scale(1.05);
}

.lookbook-gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(44, 36, 22, 0.9) 0%, rgba(44, 36, 22, 0.7) 50%, transparent 100%);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.lookbook-gallery-item-header {
    font-size: 0.7rem;
    color: var(--lux-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.4rem;
    opacity: 0.95;
}

.lookbook-gallery-item-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--lux-white);
    margin-bottom: 0.25rem;
    letter-spacing: -0.2px;
}

.lookbook-gallery-item-meta {
    font-size: 0.8rem;
    color: rgba(251, 248, 244, 0.8);
    margin-bottom: 0.5rem;
}

.lookbook-gallery-item-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--lux-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lookbook-gallery-item:hover .lookbook-gallery-item-cta {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PRODUCT DETAIL MODAL (Legacy Support)
   ============================================ */

.lookbook-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(44, 36, 22, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lookbook-detail-modal.active {
    display: flex;
    opacity: 1;
}

.lookbook-detail-container {
    position: relative;
    background: var(--brand-bg);
    border-radius: 12px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lookbook-detail-modal.active .lookbook-detail-container {
    transform: scale(1);
}

@media (min-width: 768px) {
    .lookbook-detail-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left side - Image */
.lookbook-detail-image-side {
    position: relative;
    background: var(--brand-bg-alt);
    overflow: hidden;
}

.lookbook-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right side - Products */
.lookbook-detail-content-side {
    padding: 2rem;
    overflow-y: auto;
    max-height: 90vh;
}

.lookbook-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(231, 216, 195, 0.3);
}

.lookbook-detail-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--brand-text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.lookbook-detail-meta {
    font-size: 0.9rem;
    color: var(--brand-text-secondary);
    margin-bottom: 0.75rem;
}

.lookbook-detail-description {
    font-size: 0.95rem;
    color: var(--brand-text-secondary);
    line-height: 1.6;
}

.lookbook-detail-products {
    margin-top: 1.5rem;
}

.lookbook-detail-products-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Product Cards in Modal */
.lookbook-product-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(231, 216, 195, 0.3);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.lookbook-product-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(44, 36, 22, 0.08);
    transform: translateX(4px);
}

.lookbook-product-card-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--brand-bg-alt);
}

.lookbook-product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lookbook-product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lookbook-product-card-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.lookbook-product-card-meta {
    font-size: 0.8rem;
    color: var(--brand-text-secondary);
    margin-bottom: 0.5rem;
}

.lookbook-product-card-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-text-primary);
}

.lookbook-product-card-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--brand-primary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.lookbook-product-card:hover .lookbook-product-card-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Close Button */
.lookbook-detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 36, 22, 0.15);
}

.lookbook-detail-close:hover {
    background: var(--brand-primary);
    transform: rotate(90deg);
}

.lookbook-detail-close svg {
    width: 20px;
    height: 20px;
    color: var(--brand-text-primary);
}

/* Empty State */
.lookbook-no-products {
    text-align: center;
    padding: 2rem;
    color: var(--brand-text-secondary);
}

.lookbook-no-products-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    opacity: 0.3;
}

.lookbook-no-products-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lookbook-gallery-item {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.lookbook-gallery-item:nth-child(1) { animation-delay: 0.05s; }
.lookbook-gallery-item:nth-child(2) { animation-delay: 0.1s; }
.lookbook-gallery-item:nth-child(3) { animation-delay: 0.15s; }
.lookbook-gallery-item:nth-child(4) { animation-delay: 0.1s; }
.lookbook-gallery-item:nth-child(5) { animation-delay: 0.15s; }
.lookbook-gallery-item:nth-child(6) { animation-delay: 0.2s; }
.lookbook-gallery-item:nth-child(7) { animation-delay: 0.15s; }
.lookbook-gallery-item:nth-child(8) { animation-delay: 0.2s; }
.lookbook-gallery-item:nth-child(9) { animation-delay: 0.25s; }

/* Responsive Adjustments */
@media (max-width: 767px) {
    .lookbook-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .lookbook-collections {
        padding: 3rem 0;
    }
    
    .lookbook-section-header {
        margin-bottom: 2rem;
    }
    
    .lookbook-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lookbook-detail-container {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }
    
    .lookbook-detail-image-side {
        max-height: 50vh;
    }
    
    .lookbook-detail-content-side {
        padding: 1.5rem;
    }
    
    .lookbook-detail-title {
        font-size: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .lookbook-gallery-item,
    .lookbook-gallery-item-image,
    .lookbook-detail-modal,
    .lookbook-detail-container {
        animation: none;
        transition: none;
    }
}

/* Focus styles for accessibility */
.lookbook-gallery-item:focus,
.lookbook-detail-close:focus,
.lookbook-product-card:focus {
    outline: 3px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Loading state for images */
.lookbook-gallery-item-image,
.lookbook-detail-image,
.lookbook-product-card-image {
    background: linear-gradient(135deg, var(--brand-bg-alt) 0%, var(--brand-primary) 100%);
}

/* Print styles */
@media print {
    .lookbook-detail-modal {
        display: none;
    }
    
    .lookbook-gallery-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ============================================
   LOOKPRODUCT PAGE - LUXURY DETAIL VIEW
   ============================================ */

.lookproduct-page {
    background: var(--lux-white);
    min-height: 100vh;
}

.lux-lookproduct-hero {
    position: relative;
    background: var(--lux-white);
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.lux-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, var(--lux-charcoal) 0%, transparent 100%);
    opacity: 0.03;
    pointer-events: none;
}

.lux-back-nav {
    margin-bottom: 3rem;
}

.lux-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(231, 216, 195, 0.15);
    border: 1px solid rgba(231, 216, 195, 0.3);
    border-radius: 50px;
    color: var(--lux-charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-back-btn:hover {
    background: rgba(231, 216, 195, 0.25);
    border-color: var(--lux-gold);
    color: var(--lux-black);
    transform: translateX(-4px);
}

.lux-back-btn svg {
    transition: transform 0.3s ease;
}

.lux-back-btn:hover svg {
    transform: translateX(-4px);
}

.lux-lookproduct-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .lux-lookproduct-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
    }
}

.lux-lookproduct-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--lux-shadow-lg);
    background: var(--lux-cream);
}

.lux-image-shine {
    position: absolute;
    inset: -100%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 70%);
    animation: imageShine 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes imageShine {
    0%, 100% { 
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    10%, 20% { opacity: 1; }
    30% { 
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.lux-lookproduct-main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.lux-lookproduct-content-side {
    position: sticky;
    top: 100px;
}

.lux-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.25);
    border-radius: 50px;
    color: var(--lux-gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.lux-meta-badge svg {
    color: var(--lux-gold);
}

.lux-meta-divider {
    color: var(--lux-gold);
    opacity: 0.5;
}

.lux-content-header {
    color: var(--lux-gold-dark);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
}

.lux-lookproduct-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--lux-black);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.lux-lookproduct-description {
    font-size: 1.125rem;
    color: var(--lux-charcoal);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.lux-stats-box {
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(231, 216, 195, 0.15) 0%, 
        rgba(212, 165, 116, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.lux-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lux-stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 12px;
    color: var(--lux-gold-dark);
}

.lux-stat-value {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--lux-black);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.lux-stat-label {
    font-size: 0.9rem;
    color: var(--lux-charcoal);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Products Section */
.lux-lookproduct-products {
    padding: 6rem 0;
    background: var(--lux-white);
}

.lux-section-header-products {
    text-align: center;
    margin-bottom: 4rem;
}

.lux-section-title-products {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--lux-black);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.lux-section-subtitle-products {
    font-size: 1.125rem;
    color: var(--lux-charcoal);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.lux-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .lux-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lux-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1400px) {
    .lux-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.lux-product-card {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--lux-shadow-sm);
    animation: luxFadeInUp 0.8s ease-out backwards;
}

.lux-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lux-shadow-lg);
}

.lux-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--lux-cream);
}

.lux-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-product-card:hover .lux-product-image {
    transform: scale(1.06);
}

.lux-product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(26, 22, 20, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lux-product-card:hover .lux-product-overlay {
    opacity: 1;
}

.lux-variant-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    background: rgba(26, 22, 20, 0.85);
    backdrop-filter: blur(8px);
    color: var(--lux-gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.lux-product-content {
    padding: 1.5rem;
}

.lux-product-sku {
    color: var(--lux-gold-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}

.lux-product-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--lux-black);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.lux-product-card:hover .lux-product-name {
    color: var(--lux-gold-dark);
}

.lux-product-details {
    font-size: 0.875rem;
    color: var(--lux-charcoal);
    opacity: 0.7;
    margin-bottom: 1.25rem;
}

.lux-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.lux-product-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--lux-black);
    letter-spacing: -0.5px;
}

.lux-price-from {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-sans);
    color: var(--lux-charcoal);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.lux-product-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 50%;
    color: var(--lux-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-product-card:hover .lux-product-arrow {
    background: var(--lux-gold);
    color: var(--lux-black);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1023px) {
    .lux-lookproduct-content-side {
        position: static;
    }
    
    .lux-lookproduct-hero {
        padding: 4rem 0 4rem;
    }
    
    .lux-lookproduct-products {
        padding: 4rem 0;
    }
}

@media (max-width: 767px) {
    .lux-back-nav {
        margin-bottom: 2rem;
    }
    
    .lux-lookproduct-hero {
        padding: 3rem 0 3rem;
    }
    
    .lux-lookproduct-title {
        font-size: 2rem;
    }
    
    .lux-lookproduct-description {
        font-size: 1rem;
    }
    
    .lux-stats-box {
        padding: 1.5rem;
    }
    
    .lux-stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .lux-stat-value {
        font-size: 2rem;
    }
    
    .lux-product-image-wrapper {
        height: 280px;
    }
}

