/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --grey-light: #F5F5F5;
    --grey-medium: #CCCCCC;
    --grey-dark: #666666;
    --grey-darker: #333333;
}

body {
    font-family: 'Gothic A1', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    margin-top: 0;
    padding-top: 0;
}

/* Header styles moved to header.css */

/* New Arrival Banner */
.new-arrival-banner {
    position: relative;
    height: 87vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.new-arrival-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/nvcollection-banner.jpeg');
    background-size: cover;
    background-position: center top;
    margin-top: 0;
}

.new-arrival-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.new-arrival-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.new-arrival-text {
    max-width: 700px;
    margin: 0 auto;
}

.new-arrival-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
}

.new-arrival-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Gothic A1', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
    cursor: not-allowed;
    opacity: 0.7;
}

.new-arrival-button:hover {
    opacity: 0.8;
}

/* Collection Categories Section */
.collection-categories {
    padding: 60px 40px;
    margin: 0;
    background-color: var(--white);
}

.collection-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.collection-category-card {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.collection-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background 0.3s ease;
}

.collection-category-card:hover .collection-category-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.collection-category-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.collection-category-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
}

.collection-category-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Gothic A1', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
    cursor: not-allowed;
    opacity: 0.7;
}

.collection-category-button:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/efbanner.jpeg');
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-subtitle-main {
    font-family: 'Gothic A1', sans-serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--black);
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--black);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--black);
}

.section-title.centered {
    text-align: center;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-darker);
    margin-bottom: 20px;
    font-weight: 300;
}

/* New Collection Intro Section */
.new-collection-intro {
    padding: 80px 0 40px;
    background-color: var(--white);
    text-align: center;
}

.new-collection-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Collections Section */
.collections {
    padding: 0 0 100px;
    background-color: var(--white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-card {
    background-color: var(--white);
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

a.collection-card {
    text-decoration: none;
    color: inherit;
}

.collection-card:hover {
    transform: translateY(-3px);
}

.card-image {
    height: 500px;
    background-color: var(--grey-light);
    position: relative;
    overflow: hidden;
    flex: 1;
}

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

.collection-card:hover .card-image img {
    transform: scale(1.05);
}

.collection-card:active .card-image img,
.collection-card:focus .card-image img {
    transform: scale(1.05);
}

.card-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-family: 'Gothic A1', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.collection-button {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: block;
    text-align: center;
}

.collection-card:hover .collection-button {
    background-color: var(--black);
    color: var(--white);
}

/* Avenue Bag Collection Section */
.avenue-collection {
    padding: 0;
    background-color: var(--white);
}

.avenue-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.avenue-image {
    background-color: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.avenue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.avenue-text {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    align-items: flex-start;
}

.avenue-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.avenue-subtitle {
    font-family: 'Gothic A1', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.avenue-button {
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.avenue-button:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Best Sellers Carousel */
.best-sellers {
    padding: 100px 0;
    background-color: var(--white);
}

.best-sellers-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0 60px;
}

.best-sellers-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid var(--black);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--black);
}

.carousel-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--grey-medium);
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background-color: var(--black);
}

.carousel-indicator:hover {
    background-color: var(--black);
    opacity: 0.7;
}

/* Responsive adjustments for carousel */
@media (max-width: 1200px) {
    .best-sellers-carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(33.333% - 14px);
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .best-sellers-carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
}

@media (max-width: 480px) {
    .best-sellers-carousel-wrapper {
        padding: 0 45px;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-btn-prev {
        left: 0;
    }
    
    .carousel-btn-next {
        right: 0;
    }
}

.products-section-footer {
    text-align: center;
    margin-top: 50px;
}

.view-more-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    text-decoration: none;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-more-button:hover {
    background-color: var(--black);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.product-card {
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    background-color: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.product-heart svg {
    width: 20px;
    height: 20px;
    color: var(--black);
    stroke-width: 2;
}

.product-heart:hover {
    opacity: 0.6;
}

.product-heart.active svg {
    fill: var(--black);
    color: var(--black);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--black);
    color: var(--white);
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 10;
}

.badge.trend {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

.product-video {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: transparent;
    border: none;
    color: var(--black);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 12px;
    font-weight: 500;
    z-index: 10;
    transition: opacity 0.3s ease;
    font-family: 'Gothic A1', sans-serif;
}

.product-video:hover {
    opacity: 0.6;
}

.product-info {
    padding: 15px 15px 18px;
}

.product-description {
    font-size: 12px;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 300;
    min-height: auto;
    overflow: visible;
    text-overflow: unset;
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
}

.product-info h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--black);
    letter-spacing: 0.5px;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    line-height: 1.4;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.product-colors {
    display: flex;
    gap: 8px;
    margin-top: 0;
}

.color-swatch {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.color-swatch:hover {
    transform: scale(1.15);
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.stock-status {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.stock-status.in-stock {
    color: var(--grey-dark);
}

.stock-status.limited {
    color: var(--grey-dark);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--grey-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.service-item {
    text-align: left;
    position: relative;
}


.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-item h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 14px;
    color: var(--grey-darker);
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--grey-medium);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: var(--grey-medium);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid var(--grey-darker);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--grey-medium);
    font-size: 12px;
    letter-spacing: 1px;
}

/* New Arrivals Section */
.new-arrivals {
    padding: 100px 0;
    background-color: var(--white);
}

/* Lookbook Section */
.lookbook {
    padding: 100px 0;
    background-color: var(--white);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 20px;
    margin-top: 60px;
}

.lookbook-item {
    overflow: hidden;
    position: relative;
}

.lookbook-item.large {
    grid-row: 1 / 3;
    grid-column: 1 / 3;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.lookbook-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Lookbook Page Styles */
.lookbook-page {
    padding: 100px 0;
    background-color: var(--white);
    min-height: 80vh;
}

.lookbook-header {
    text-align: center;
    margin-bottom: 60px;
}

.lookbook-subtitle {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    color: var(--grey-darker);
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Notre Histoire Page Styles */
.notre-histoire-page {
    padding: 120px 0;
    background-color: var(--white);
    min-height: 80vh;
    position: relative;
}

.histoire-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.histoire-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--black);
    margin: 30px auto 0;
}

.histoire-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.histoire-intro {
    margin-bottom: 100px;
    text-align: center;
    padding: 0 20px;
}

.histoire-intro-text {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--grey-darker);
    line-height: 2;
    letter-spacing: 0.8px;
    max-width: 950px;
    margin: 0 auto;
    font-style: italic;
}

.histoire-timeline {
    margin-bottom: 100px;
    position: relative;
    padding-left: 80px;
}

.histoire-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--black) 0%, var(--grey-medium) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    padding-left: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--black);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--black);
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    font-family: 'Gothic A1', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.timeline-year::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--black);
}

.timeline-content {
    background-color: var(--white);
    padding: 40px;
    border-left: 3px solid var(--grey-light);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-left-color: var(--black);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.timeline-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
}

.timeline-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--grey-darker);
    line-height: 1.9;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

.timeline-description:last-child {
    margin-bottom: 0;
}

.histoire-image-section {
    width: 100%;
    max-width: 900px;
    margin: 100px auto 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.histoire-image-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.histoire-image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.histoire-image-section:hover img {
    transform: scale(1.02);
}

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

@media (max-width: 1024px) {
    .histoire-timeline {
        padding-left: 60px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: -35px;
    }
}

@media (max-width: 768px) {
    .notre-histoire-page {
        padding: 80px 0;
    }
    
    .histoire-header {
        margin-bottom: 60px;
    }
    
    .histoire-intro {
        margin-bottom: 60px;
        padding: 0 15px;
    }
    
    .histoire-intro-text {
        font-size: 17px;
        line-height: 1.8;
    }
    
    .histoire-timeline {
        margin-bottom: 60px;
        padding-left: 0;
    }
    
    .histoire-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 50px;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-year {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .timeline-content {
        padding: 30px 20px;
        border-left: none;
        border-top: 3px solid var(--grey-light);
    }
    
    .timeline-item:hover .timeline-content {
        border-left: none;
        border-top-color: var(--black);
        transform: translateY(-3px);
    }
    
    .timeline-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .timeline-description {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .histoire-image-section {
        margin-top: 60px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .histoire-intro-text {
        font-size: 15px;
    }
    
    .timeline-year {
        font-size: 26px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-description {
        font-size: 14px;
    }
    
    .timeline-content {
        padding: 25px 15px;
    }
}

/* Brand Story Section */
.brand-story {
    padding: 100px 0;
    background-color: var(--white);
}

.brand-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-story-image {
    height: 600px;
    overflow: hidden;
}

.brand-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.brand-story:hover .brand-story-image img {
    transform: scale(1.05);
    filter: grayscale(80%);
}

.brand-story-text {
    padding: 20px;
}

/* Elisabetta World Section */
.elisabetta-world {
    padding: 100px 0;
    background-color: var(--white);
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.world-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.world-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.world-card-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--grey-light);
}

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

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

.world-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.world-card:hover .world-card-overlay {
    opacity: 1;
}

.world-card-content {
    padding: 30px;
    background-color: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.world-card-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.world-card-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--grey-darker);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.world-card-link {
    font-family: 'Gothic A1', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.world-card:hover .world-card-link {
    color: var(--grey-dark);
}

/* Responsive adjustments for Elisabetta World */
@media (max-width: 1024px) {
    .world-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .world-card-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .world-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .world-card-image {
        height: 300px;
    }
    
    .world-card-content {
        padding: 25px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--grey-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border: 1px solid var(--grey-medium);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey-darker);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-header {
    width: 100%;
    margin-bottom: 40px;
}

.newsletter-title {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-align: center;
}

.newsletter-description {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    color: #000000;
    font-size: 14px;
    font-family: 'Gothic A1', sans-serif;
    outline: none;
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-button {
    width: 100%;
    padding: 15px 40px;
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FFFFFF;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Gothic A1', sans-serif;
    font-weight: 500;
}

.newsletter-button:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

/* Newsletter Popup Modal */
.newsletter-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-popup-modal.active {
    display: flex;
    opacity: 1;
}

.newsletter-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.newsletter-popup-content {
    position: relative;
    background-color: var(--black);
    padding: 60px 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    z-index: 10000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.newsletter-popup-modal.active .newsletter-popup-content {
    transform: scale(1);
}

.newsletter-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.newsletter-popup-close:hover {
    opacity: 0.7;
}

.newsletter-popup-close svg {
    width: 24px;
    height: 24px;
}

.newsletter-popup-header {
    margin-bottom: 40px;
}

.newsletter-popup-title {
    font-family: 'Gothic A1', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

.newsletter-popup-description {
    font-family: 'Gothic A1', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    letter-spacing: 0.5px;
    margin: 0;
}

.newsletter-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-popup-input {
    width: 100%;
    padding: 18px 20px;
    background-color: var(--white);
    border: none;
    color: var(--black);
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.newsletter-popup-input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.newsletter-popup-input::placeholder {
    color: #999999;
}

.newsletter-popup-button {
    width: 100%;
    padding: 18px 40px;
    background-color: var(--white);
    color: var(--black);
    border: none;
    font-family: 'Gothic A1', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-popup-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.newsletter-popup-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .newsletter-popup-content {
        padding: 50px 30px;
        max-width: 90%;
    }
    
    .newsletter-popup-title {
        font-size: 28px;
    }
    
    .newsletter-popup-description {
        font-size: 14px;
    }
    
    .newsletter-popup-close {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .newsletter-popup-content {
        padding: 40px 25px;
    }
    
    .newsletter-popup-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .newsletter-popup-description {
        font-size: 13px;
    }
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 100px 0;
    background-color: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 60px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
    filter: grayscale(70%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header responsive styles moved to header.css */

    .hero-subtitle-main {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .new-collection-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-image {
        height: 400px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .avenue-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .avenue-image {
        height: 400px;
    }

    .avenue-text {
        padding: 40px 20px;
    }

    .avenue-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .lookbook-item.large {
        grid-row: auto;
        grid-column: auto;
    }

    .brand-story-content {
        grid-template-columns: 1fr;
    }

    .brand-story-image {
        height: 400px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }

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

@media (max-width: 480px) {
    /* Header responsive styles moved to header.css */

    .new-arrival-banner {
        height: 87vh;
        min-height: 300px;
    }

    .new-arrival-bg-image {
        background-position: right center;
    }

    .new-arrival-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .new-arrival-button {
        padding: 12px 30px;
        font-size: 12px;
    }

    .collection-categories {
        padding: 40px 20px;
    }

    .collection-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-category-card {
        height: 50vh;
        min-height: 400px;
    }

    .collection-category-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .collection-category-button {
        padding: 12px 30px;
        font-size: 12px;
    }

    .hero {
        margin-top: 0;
    }
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .hero-subtitle-main {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 28px;
    }

    .new-collection-intro {
        padding: 60px 0 30px;
    }

    .new-collection-title {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item {
        text-align: center;
    }

    .service-icon {
        justify-content: center;
        margin: 0 auto 20px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-image {
        height: 280px;
    }

    .product-info {
        padding: 12px 8px;
    }

    .product-description {
        font-size: 11px;
        min-height: 32px;
        line-height: 1.4;
    }

    .product-price {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .product-colors {
        gap: 6px;
    }

    .color-swatch {
        width: 16px;
        height: 16px;
    }

    .product-heart {
        top: 10px;
        right: 10px;
        padding: 6px;
    }

    .product-heart svg {
        width: 18px;
        height: 18px;
    }

    .badge {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 9px;
    }

    .product-video {
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .card-image {
        height: 300px;
    }

    .card-title-overlay {
        font-size: 18px;
        bottom: 12px;
        left: 12px;
    }

    .collection-button {
        padding: 14px 12px;
        font-size: 11px;
    }

    .avenue-content {
        grid-template-columns: 1fr;
    }

    .avenue-image {
        height: 350px;
    }

    .avenue-text {
        padding: 30px 15px;
    }

    .avenue-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .avenue-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .avenue-button {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 120px;
    right: 40px;
    background-color: var(--black);
    color: var(--white);
    padding: 18px 28px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Gothic A1', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    min-width: 280px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.toast-notification.success {
    background-color: var(--black);
    border-left: 4px solid #4CAF50;
}

.toast-notification.error {
    background-color: var(--black);
    border-left: 4px solid #f44336;
}

.toast-notification-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-notification-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.toast-notification-message {
    flex: 1;
    line-height: 1.4;
}

.toast-notification-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.toast-notification-close:hover {
    opacity: 1;
}

.toast-notification-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .toast-notification {
        top: 100px;
        right: 20px;
        left: 20px;
        min-width: auto;
        max-width: none;
    }
}
