/* =========================
   STYLES LIST SECTION
========================= */

.styles-list-section {
    padding: 100px 7%;
    background-color: #000000;
    color: #ffffff;
}

.styles-list-container {
    max-width: 1400px;
    margin: 0 auto;
}

.styles-tabs-nav {
    display: flex;
    justify-content: flex-start;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 60px;
    gap: 50px;
}

.styles-mobile-nav {
    display: none;
}

.tab-nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: inherit;
}

.tab-nav-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab-nav-btn.active {
    color: #ffffff;
}

.tab-nav-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.tab-nav-btn.active::after {
    transform: scaleX(1);
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFadeIn 0.8s cubic-bezier(0.25, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Detail Grid Layout */
.style-detail-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 70px;
    align-items: start;
}

.style-detail-image {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.style-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.style-detail-grid:hover .style-detail-image:not(.style-slideshow-container) img {
    transform: scale(1.08);
}

/* Reusable Style Slideshow styles */
.style-slideshow-container {
    position: relative;
}

.style-slideshow-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.style-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.style-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.style-slideshow-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.style-slideshow-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.style-slideshow-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.style-slideshow-dots .dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 10px;
}

/* Detail Content Info */
.style-detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 10px;
}

.style-detail-info h3 {
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.style-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 45px;
    max-width: 800px;
}

/* Tags Section matching the reference image layout */
.style-tags-section {
    margin-bottom: 50px;
}

.style-tags-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    cursor: default;
}

.tag-pill:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Actions CTA */
.style-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #000000;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    text-decoration: none;
    align-self: flex-start;
    border: 2px solid #ffffff;
}

.style-book-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15);
}

/* What to Wear Section */
.style-wear-section {
    margin-top: 10px;
}

.style-wear-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
}

.style-wear-section p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

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

@media screen and (max-width: 1100px) {
    .style-detail-grid {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }

    .style-detail-image {
        height: 500px;
    }

    .style-detail-info h3 {
        font-size: 44px;
    }

    .styles-tabs-nav {
        gap: 30px;
    }

    .tab-nav-btn {
        font-size: 13px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 767px) {
    .styles-list-section {
        padding: 70px 24px;
    }

    .styles-tabs-nav {
        display: none;
    }

    .styles-mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 320px;
        margin: 0 auto 40px auto;
        border-bottom: 2px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 15px;
    }

    .mobile-nav-arrow {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
    }

    .mobile-nav-arrow svg {
        width: 30px;
        height: 30px;
    }

    .mobile-nav-arrow:hover {
        color: #ffffff;
    }

    .mobile-nav-arrow:active {
        transform: scale(0.9);
    }

    .mobile-nav-title {
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2.5px;
        color: #ffffff;
        text-align: center;
        flex-grow: 1;
    }

    .style-detail-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .style-detail-image {
        height: 380px;
        border-radius: 20px;
    }

    .style-detail-info {
        padding-top: 0;
    }

    .style-detail-info h3 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .style-description {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .style-tags-section {
        margin-bottom: 35px;
    }

    .style-tags-section h4 {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .tag-pill {
        padding: 10px 20px;
        font-size: 13px;
    }

    .style-book-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }
}
