/* ========================================
   PREMIUM LUXURY SPLIT HERO SECTION
   Modern fullscreen ecommerce hero layout
   ======================================== */

/* Main hero section with grid layout */
.luxury-hero {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 100vh !important;
    overflow: hidden !important;
    background: #F5F1ED !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Left Content Side */
.luxury-hero__content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 60px !important;
    background: #ecfdf5 !important;
    position: relative !important;
    z-index: 2 !important;
}

.luxury-hero__text {
    max-width: 560px !important;
    width: 100% !important;
}

/* Typography */
.luxury-hero__heading {
    /* font-size: clamp(48px, 6vw, 76px) !important; */
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #2C2C2C !important;
    margin: 0 0 24px 0 !important;
    letter-spacing: -0.02em !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
}

.luxury-hero__subtitle {
    font-size: clamp(16px, 1.8vw, 20px) !important;
    line-height: 1.6 !important;
    color: #5A5A5A !important;
    margin: 0 0 40px 0 !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* Hero labels */
.hero-label--light {
    display: inline-block !important;
    padding: 8px 20px !important;
    background: rgba(45, 45, 45, 0.1) !important;
    border-radius: 30px !important;
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
}

/* Buttons */
.luxury-hero__buttons {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.luxury-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px 40px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}

.luxury-btn--primary {
    background: #2C2C2C !important;
    color: #FFFFFF !important;
    border: 2px solid #2C2C2C !important;
}

.luxury-btn--primary:hover {
    background: #1A1A1A !important;
    border-color: #1A1A1A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.2) !important;
}

.luxury-btn--outline {
    background: transparent !important;
    color: #2C2C2C !important;
    border: 2px solid #2C2C2C !important;
}

.luxury-btn--outline:hover {
    background: #2C2C2C !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
}

/* Right Media Side */
.luxury-hero__media {
    position: relative !important;
    overflow: hidden !important;
    background: #E8E4DF !important;
    min-height: 100vh !important;
}

.luxury-hero__image,
.luxury-hero__video,
.luxury-hero__youtube-wrapper {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* ========================================
   HERO PLAY BUTTON OVERLAY
   ======================================== */

.hero-play-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    width: 80px !important;
    height: 80px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1) !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3) !important;
}

.hero-play-btn:active {
    transform: translate(-50%, -50%) scale(0.95) !important;
}

.hero-play-icon {
    width: 32px !important;
    height: 32px !important;
    color: #2C2C2C !important;
    margin-left: 4px !important;
}

/* ========================================
   VIDEO MODAL
   ======================================== */

.hero-video-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.hero-video-modal.active {
    display: flex !important;
}

.hero-video-modal__overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(8px) !important;
    animation: fadeIn 0.3s ease-out !important;
}

.hero-video-modal__content {
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
    aspect-ratio: 16 / 9 !important;
    z-index: 10 !important;
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-video-modal__close {
    position: absolute !important;
    top: -50px !important;
    right: 0 !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    color: #FFFFFF !important;
}

.hero-video-modal__close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: rotate(90deg) !important;
}

.hero-video-modal__close svg {
    width: 20px !important;
    height: 20px !important;
}

.hero-video-modal__player {
    width: 100% !important;
    height: 100% !important;
    background: #000 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.hero-video-modal__player iframe,
.hero-video-modal__player video {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .luxury-hero {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }
    
    .luxury-hero__content {
        padding: 60px 40px !important;
        min-height: 60vh !important;
        text-align: center !important;
    }
    
    .luxury-hero__media {
        min-height: 50vh !important;
    }
    
    .luxury-hero__image,
    .luxury-hero__video {
        position: relative !important;
    }
    
    .luxury-hero__heading {
        font-size: clamp(40px, 8vw, 56px) !important;
    }
    
    .luxury-hero__buttons {
        justify-content: center !important;
    }
    
    .hero-play-btn {
        width: 70px !important;
        height: 70px !important;
    }
    
    .hero-play-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    .hero-video-modal__close {
        top: -45px !important;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .luxury-hero {
        grid-template-columns: 1fr !important;
    }
    
    .luxury-hero__content {
        padding: 50px 24px !important;
        min-height: 50vh !important;
    }
    
    .luxury-hero__media {
        min-height: 40vh !important;
    }
    
    .luxury-hero__heading {
        font-size: clamp(36px, 10vw, 48px) !important;
        margin-bottom: 20px !important;
      	padding-top: 100px;
    }
    
    .luxury-hero__subtitle {
        font-size: 16px !important;
        margin-bottom: 32px !important;
    }
    
    .luxury-hero__buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .luxury-btn {
        width: 100% !important;
        padding: 16px 32px !important;
    }
    
    .hero-play-btn {
        width: 60px !important;
        height: 60px !important;
    }
    
    .hero-play-icon {
        width: 24px !important;
        height: 24px !important;
    }
    
    .hero-video-modal {
        padding: 15px !important;
    }
    
    .hero-video-modal__close {
        top: -40px !important;
        width: 36px !important;
        height: 36px !important;
    }
    
    .hero-video-modal__close svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .luxury-hero__content {
        padding: 40px 20px !important;
    }
    
    .luxury-hero__heading {
        font-size: 32px !important;
    }
    
    .luxury-hero__subtitle {
        font-size: 15px !important;
    }
    
    .hero-play-btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    .hero-play-icon {
        width: 20px !important;
        height: 20px !important;
    }
    
    .hero-video-modal {
        padding: 10px !important;
    }
    
    .hero-video-modal__content {
        max-width: 100% !important;
    }
    
    .hero-video-modal__close {
        top: 10px !important;
        right: 10px !important;
    }
}
