/* Fashion Show Page Styles */

body:has(.fashion-show-page) {
    background-color: #000000;
    padding-top: 0 !important;
}

body:has(.fashion-show-page) .header-desktop,
body:has(.fashion-show-page) .header-mobile,
body:has(.fashion-show-page) .category-nav {
    display: none;
}

.fashion-show-page {
    background-color: #000000;
    color: #FFFFFF;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.fashion-show-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Video Section - full width */
.fashion-show-video {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.fashion-show-video-embed {
    position: relative;
    width: 100%;
    min-width: 100%;
    background: #000;
    overflow: hidden;
    height: 100vh;
    height: 100svh;
}

.fashion-show-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Header Section */
.fashion-show-header {
    text-align: center;
    padding: 120px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 60px;
}

.fashion-show-brand {
    font-family: 'Gothic A1', sans-serif;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fashion-show-season {
    font-family: 'Gothic A1', sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 50px;
    line-height: 1.3;
}

.fashion-show-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.fashion-show-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Gothic A1', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background-color: transparent;
}

.fashion-show-cta:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.fashion-show-cta svg {
    transition: transform 0.3s ease;
}

.fashion-show-cta:hover svg {
    transform: translateY(4px);
}

/* Gallery Section */
.fashion-show-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0;
    margin: 0;
    width: 100%;
}

.fashion-show-look {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.fashion-show-look-frame {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%; /* 3:4 aspect ratio (900x1200) */
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.2) 0%, rgba(255, 218, 185, 0.2) 100%);
    overflow: hidden;
    border-left: 2px solid rgba(255, 192, 203, 0.4);
    border-right: 2px solid rgba(255, 192, 203, 0.4);
}

.fashion-show-look-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid rgba(255, 192, 203, 0.5);
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(255, 192, 203, 0.3), 0 0 20px rgba(255, 192, 203, 0.2);
}

.fashion-show-look-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fashion-show-look:hover .fashion-show-look-frame img {
    transform: scale(1.05);
}

.fashion-show-look-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-family: 'Gothic A1', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 12px 24px;
    z-index: 3;
    white-space: nowrap;
    pointer-events: none;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .fashion-show-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fashion-show-header {
        padding: 100px 30px 60px;
        margin-top: 40px;
    }

    .fashion-show-brand {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .fashion-show-season {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .fashion-show-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .fashion-show-cta {
        padding: 14px 30px;
        font-size: 11px;
    }

    .fashion-show-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .fashion-show-look-label {
        font-size: 10px;
        padding: 6px 12px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .fashion-show-header {
        padding: 80px 20px 50px;
    }

    .fashion-show-brand {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .fashion-show-season {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .fashion-show-description {
        font-size: 13px;
    }

    .fashion-show-gallery {
        grid-template-columns: 1fr;
    }
}