/* Lookbook Styles */

.lookbook-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/lookbook-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 60px;
}

.lookbook-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.lookbook-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.lookbook-gallery {
    padding: 80px 0;
}

.lookbook-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    color: var(--dark-gray);
    font-weight: 500;
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.category-btn.active {
    color: var(--primary-purple);
}

.category-btn.active::after {
    width: 80%;
}

.category-btn:hover::after {
    width: 80%;
}

.lookbook-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.lookbook-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    opacity: 1;
    transition: all 0.5s ease;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-images {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.story-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: transform 0.5s ease;
}

.story-images img.active {
    display: block;
}

.story-images:hover img {
    transform: scale(1.05);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.nav-btn::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.nav-btn.prev::before {
    content: '\f104';
}

.nav-btn.next::before {
    content: '\f105';
}

.story-content {
    padding: 40px;
}

.story-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-purple);
    font-family: var(--font-secondary);
}

.story-content p {
    color: var(--mid-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-details {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--mid-gray);
}

.story-products h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-purple);
}

.product-links {
    display: flex;
    gap: 15px;
}

.shop-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.shop-link:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
}

/* Image dots navigation */
.image-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lookbook-hero {
        height: 300px;
    }

    .lookbook-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .lookbook-story {
        grid-template-columns: 1fr;
    }

    .story-content {
        padding: 30px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .lookbook-hero h1 {
        font-size: 28px;
    }

    .lookbook-hero p {
        font-size: 16px;
    }

    .story-details {
        flex-direction: column;
        gap: 10px;
    }
}