/* Main Stylesheet for DressMe Public Site */

/* Hero Animations (Future use in Phase 3) */
.hero-transition-enter {
    opacity: 0;
    transform: scale(1.1);
}

.hero-transition-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s, transform 1s;
}

/* ADMIN EDIT BUTTONS */
/* ADMIN EDIT BUTTONS */
.admin-edit-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #13a794;
    /* Turquoise Primary */
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    z-index: 2000;
    /* Above everything */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    transition: transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
}

.admin-edit-btn:hover {
    transform: scale(1.05);
    background: #108f7f;
    /* Darker Turquoise */
    color: white;
    box-shadow: 0 6px 15px rgba(20, 167, 148, 0.4);
}

/* HERO SECTION Styles */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darken for text readability */
}

.hero-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-title {
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 0px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -4px;
    line-height: 1;
}

.hero-title .highlight {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--color-primary);
    font-weight: 400;
    font-size: 11rem;
    margin-left: -20px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.hero-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: black;
    transform: translateY(-5px);
}

/* MARQUEE SECTION Styles */
/* SPOTLIGHT GALLERY SECTION */
.spotlight-section {
    padding: 80px 0;
    position: relative;
    /* Anchor admin button */
    background-color: #050505;
    border-bottom: 1px solid #222;
    overflow: hidden;
}

.spotlight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
}

/* Left Side: Info */
.spotlight-info {
    flex: 1;
    min-width: 300px;
}

.spotlight-header {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    color: white;
    color: white;
    margin-bottom: 30px;
}

.highlight-script {
    font-family: 'Mrs Saint Delafield', cursive;
    font-weight: 400;
    font-size: 6.5rem;
    color: var(--color-primary);
    display: block;
    margin-bottom: -30px;
    /* Overlap effect */
    margin-left: -20px;
    opacity: 0.9;
}

.highlight-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 4.5rem;
    letter-spacing: 0px;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.spotlight-desc {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 400px;
}

.spotlight-btn {
    padding: 15px 35px;
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.spotlight-btn:hover {
    background: white;
    color: black;
}

/* Right Side: Scroll Gallery */
.spotlight-gallery {
    flex: 2;
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 40px;
    padding-left: 5%;
    /* Center start */
    padding-right: 5%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: grab;
    /* Custom cursor hint */
    /* Hide Scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.spotlight-gallery::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.spotlight-card {
    height: 600px;
    width: auto;
    aspect-ratio: 2 / 3;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #111;
    scroll-snap-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.spotlight-card:hover {
    transform: translateY(-10px);
}

.spotlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-card:hover img {
    transform: scale(1.1);
}

/* NEW: Hover Overlay */
.spotlight-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6) 70%, transparent);
    display: flex;
    flex-direction: column;
    text-align: left;
    
    /* Hidden by default */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 10;
}

.spotlight-card:hover .spotlight-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

.spotlight-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.spotlight-card-desc {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.4;
    margin-bottom: 20px;
}

.spotlight-card-btn {
    display: inline-block;
    align-self: flex-start;
    background: var(--color-primary); /* Turquoise requested by user */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(19, 167, 148, 0.4);
    border: none;
}

.spotlight-card-btn:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Active Drag Cursor */
.spotlight-gallery:active {
    cursor: grabbing;
    transform: scale(0.99);
    /* Subtle press effect */
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #444;
    font-size: 2rem;
}

/* LIGHTBOX STYLES */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Responsive */
@media (max-width: 768px) {
    .spotlight-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .spotlight-gallery {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- SHARED COMPONENTS --- */
.section-heading {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-top: 80px;
    margin-bottom: 40px;
    color: white;
}

.section-heading .highlight {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--color-primary);
    font-weight: 400;
}

.section-subheading {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
}

/* --- 3D CAROUSEL SECTION (TIKTOK STYLE - FIXED) --- */
.carousel-3d-section {
    position: relative;
    padding: 80px 0 250px;
    background: #050505;
    overflow: visible !important;
    /* CRITICAL: Never hide content */
}

#galeria-3d .section-heading {
    position: absolute;
    top: 30px;
    width: 100%;
    z-index: 20;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.carousel-stage {
    position: relative;
    width: 380px;
    height: 500px;
    margin: 0 auto;
    perspective: 1000px;
    transform-style: preserve-3d;
    z-index: 10;
}

.carousel-spinner {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.1, 0.6, 0.1, 1);
}

.carousel-item {
    position: absolute;
    width: 380px;
    /* Portrait Width */
    height: 500px;
    /* Portrait Height */
    left: 0;
    top: 0;
    border-radius: 12px;
    overflow: hidden;
    /* Neon Glow */
    box-shadow: 0 0 25px rgba(19, 167, 148, 0.5);
    border: 2px solid rgba(19, 167, 148, 0.9);
    background: #000;
    /* Floor Reflection */
    -webkit-box-reflect: below 15px linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.15));
    backface-visibility: visible;
    display: block !important;
    /* CRITICAL: Override Bootstrap's display:none */
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #111;
    color: #555;
    font-size: 3rem;
    font-weight: 700;
    border: 1px dashed #333;
}

.carousel-controls {
    text-align: center;
    margin-top: 50px;
}

.nav-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--color-primary);
    color: black;
}

/* --- CARD SLIDER SECTION (Yucatan Style) --- */
/* --- CARD SLIDER SECTION (Yucatan Style) --- */
/* --- CARD SLIDER SECTION (Yucatan Style) --- */
.cards-section {
    padding: 50px 20px;
    background: #000000; /* Pure Black */
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* Dark Silk Texture Animation */
.cards-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent 0%,
            transparent 2%,
            rgba(255, 255, 255, 0.02) 3%,
            rgba(255, 255, 255, 0.0) 4%
        );
    filter: blur(5px);
    animation: silkWave 20s linear infinite alternate;
    pointer-events: none;
    z-index: -1;
}

/* NEW: Blurred Dynamic Background - DISABLED for Pure Black Request */
.section-bg-blur {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(50px) brightness(0.4);
    transition: background-image 0.8s ease-in-out;
    z-index: 0; /* Above silk (-1), below content (2) */
    opacity: 0.6;
}

@keyframes silkWave {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-30px, -30px) rotate(2deg); }
}

.cards-container {
    position: relative;
    z-index: 2; /* Keep content above silk */
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    /* Tall cards */
    margin: 0 auto;
    gap: 10px;
}

.card-slide {
    flex: 0.5;
    /* Default collapsed state */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    filter: brightness(0.4); /* Dimmed when inactive, but COLOR */
}

.card-slide.active {
    flex: 3.5;
    /* Expanded state */
    filter: brightness(1); /* Full brightness */
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.cards-section-desc {
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #bbb;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.vertical-label {
    position: absolute;
    bottom: 80px;
    left: 20px;
    transform-origin: left bottom;
    transform: rotate(-90deg) translate(0, 100%);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-slide.active .vertical-label {
    opacity: 0;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    opacity: 0;
    color: white;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.card-slide.active .card-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.card-content h3 {
    margin: 0;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

/* --- TRANSFORMATION SECTION (Hover Reveal) --- */
.transformation-section {
    padding: 50px 0 100px;
    background: #050505;
}

.transformation-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.transformation-card {
    position: relative;
    width: 350px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease;
}

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

.img-wrapper.before {
    z-index: 2;
    /* On top initially */
}

.transformation-card:hover .img-wrapper.before {
    opacity: 0;
    /* Fade out on hover to reveal 'after' */
}

.label-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-badge.primary {
    border: 1px solid white;
}

.label-badge.secondary {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

/* --- ADMIN EDIT BUTTON (Consolidated above) --- */
/* --- SECTION DIVIDERS (Clean & Minimal) --- */
.section-divider {
    display: block;
    height: 1px;
    width: 100%;
    margin: 0;
    background: #222;
    /* Subtle separation */
    border: none;
    opacity: 1;
    z-index: 10;
}

/* Cleanup: Removed custom shape divider */

/* UTILITY CLASSES for IDE-friendly templates */
.d-none { display: none !important; }
.d-block { display: block !important; }
.opacity-0 { opacity: 0 !important; }

/* --- SECTION 3: THE BEAUTY LOUNGE (Infinite Scroll) --- */
.beauty-section {
    background-color: #050505; /* Dark Black to match brand */
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #222;
}

.beauty-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

/* Left Content */
.beauty-content {
    flex: 1;
    min-width: 400px;
    position: relative;
    z-index: 10;
}

.beauty-subtitle {
    font-family: 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.beauty-title-group {
    position: relative;
    margin-bottom: 120px;
}

.beauty-title {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    line-height: 0.8;
    color: #fff; /* White title */
    margin: 0;
    letter-spacing: -2px;
}

.beauty-script {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 4.5rem;
    color: #13a794; /* Turquoise */
    position: absolute;
    bottom: -90px;
    left: 50px;
    white-space: nowrap;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5); /* Dark shadow */
    z-index: 2;
}

.beauty-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.btn-beauty-outline {
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ddd;
    background: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0; /* Modern sharp edges or minimal radius */
}

.btn-beauty-outline:hover {
    background: #fff;
    color: #000;
}

.beauty-logo-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    opacity: 0.05;
    z-index: -1;
    width: 400px;
    pointer-events: none;
}

/* Right Carousel (Infinite Scroll) */
.beauty-carousel-wrapper {
    flex: 1.5;
    overflow: hidden;
    position: relative;
    /* Fade masks at edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.beauty-carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

.beauty-card {
    width: 300px;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.beauty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(90%); /* Vintage elegant look */
    transition: filter 0.3s;
}

.beauty-card:hover {
    transform: translateY(-10px);
}

.beauty-card:hover img {
    filter: none;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Scrolls half width (first set) */
}

/* Responsive */
@media (max-width: 900px) {
    .beauty-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .beauty-content {
        min-width: auto;
    }

    .beauty-script {
        position: static;
        display: block;
        font-size: 3rem;
        margin-top: 10px;
    }

    .beauty-buttons {
        justify-content: center;
    }
    
    .beauty-carousel-wrapper {
        width: 100%;
    }
}

/* --- RESPONSIVE MOBILE OVERRIDES --- */
@media (max-width: 768px) {
    /* HEADER: Stack and center */
    header {
        flex-direction: column;
        padding: 15px;
        background: rgba(0,0,0,0.95);
        height: auto;
    }
    .header-left, .logo-container, .header-right {
        flex: none !important;
        width: 100%;
        justify-content: center !important;
        margin-bottom: 5px;
    }
    .header-right {
        flex-direction: column;
    }
    .header-right nav {
        display: flex; 
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
        margin-right: 0 !important;
    }
    .nav-link-tab {
        margin: 0;
        font-size: 1.1rem;
    }
    .nav-link-tab::after {
        display: none;
    }
    .login-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* HERO: Scale text */
    .hero-title {
        font-size: 3rem;
    }
    .hero-title .highlight {
        font-size: 5rem;
        margin-left: 0;
        display: block;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.4;
    }

    /* SPOTLIGHT */
    .spotlight-container {
        padding: 0 20px;
        gap: 40px;
    }
    .spotlight-header {
        font-size: 3rem; 
    }
    .highlight-script {
        font-size: 4rem;
        margin-left: 0;
    }
    .spotlight-gallery {
        padding: 0;
    }
    /* BEAUTY SECTION */
    .beauty-container {
        padding: 0 20px;
        gap: 40px;
    }
    .beauty-title {
        font-size: 3.5rem;
    }
    .beauty-script {
        font-size: 3rem; 
    }

    /* 3D CAROUSEL: Scale Down */
    .carousel-3d-section {
        transform: scale(0.65);
        transform-origin: top center;
        margin-bottom: -150px; 
        height: 600px; /* Force height to fit scaled content */
        overflow: hidden; /* Hide potential spillover */
    }
    .section-heading {
        font-size: 2.2rem;
    }

    /* CARDS SECTION: Vertical Stack */
    .cards-container {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    .card-slide {
        width: 100%;
        height: 80px; /* Collapsed */
        flex: none; 
    }
    .card-slide.active {
        flex: none;
        height: 400px; /* Expanded */
    }
    .vertical-label {
        transform: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        bottom: auto;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    .card-content {
        left: 20px;
        bottom: 20px;
    }
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    /* GLOBAL */
    body {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
}

/* MOBILE HEADER OPTIMIZATION */
@media (max-width: 768px) {
    header {
        padding: 10px 20px !important; /* Force override */
        background: rgba(0, 0, 0, 0.9) !important; /* Slightly darker for mobile readability */
    }

    .logo-container svg {
        height: 40px !important; /* Smaller logo */
    }
    
    .login-btn {
        padding: 5px 15px !important;
        font-size: 0.8rem !important;
    }
    
    .user-profile-card-mini {
        padding: 5px 10px !important;
    }
    

    /* DRESSMENI MOBILE OPTIMIZATION */
    .dressmeni-section {
        padding: 40px 20px !important;
    }
    .dressmeni-container {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .content-side.left {
        width: 100% !important;
        text-align: center !important;
        order: 1; /* Content first */
    }
    .content-side.right {
        width: 100% !important;
        height: 300px !important; /* Smaller collage height on mobile */
        order: 2;
    }
    .dressmeni-section img[style*="border-radius: 50%"] {
        width: 150px !important; /* Fix Logo Size */
        height: 150px !important;
    }
    .cta-button {
        padding: 10px 25px !important;
        font-size: 0.9rem !important;
        width: auto !important;
        display: inline-block !important;
        margin-top: 10px !important;
    }
}

