:root {
    --color-background: #fdfdfd;
    --color-text: #1a1a1a;
    --color-primary: #111111;
    --color-secondary: #757575;
    --color-accent: #d1c4b7;
    --color-white: #ffffff;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition-speed: 0.4s;
    --transition-slow: 1s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, border-color 0.4s;
}

.custom-cursor.inverted {
    border-color: var(--color-white);
}

body a:hover ~ .custom-cursor,
body button:hover ~ .custom-cursor {
    width: 30px;
    height: 30px;
    background-color: rgba(0,0,0,0.1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

section { padding: 6rem 0; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.9rem 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color var(--transition-speed) ease;
}

.cta-button:hover { background-color: #333; }

.secondary-button {
    display: inline-block;
    color: var(--color-primary);
    padding: 0.8rem 2rem;
    border: 1px solid var(--color-primary);
    font-weight: 600;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.secondary-button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(253, 253, 253, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-image { height: 28px; width: auto; }

.desktop-nav ul { display: flex; gap: 2.5rem; }

.desktop-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.burger-menu.active .burger-line:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.burger-menu.active .burger-line:nth-child(2) { opacity: 0; }
.burger-menu.active .burger-line:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-background);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.mobile-nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav a { font-size: 1.2rem; font-weight: 600; }
.mobile-nav.active { display: block; }

.hero-section {
    height: calc(100vh - 80px);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow) ease-in-out;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 1.5rem;
}

.hero-content {
    color: var(--color-white);
    max-width: 800px; 
    width: 100%;
    text-align: center; 
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
      margin-left: auto;
       margin-right: auto;
}

.philosophy-section { background-color: #f9f9f9; }
.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.philosophy-text-content h2 { margin-bottom: 1.5rem; }
.philosophy-image-wrapper img { width: 100%; height: auto; }

.featured-products-section { padding-bottom: 6rem; }
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}
.featured-card { position: relative; overflow: hidden; display: block; }
.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-card:hover img { transform: scale(1.05); }
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: var(--color-white);
}
.card-overlay h3 {
    font-size: 1.8rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}
.featured-card:hover .card-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}
.card-large { grid-column: 1 / 2; grid-row: 1 / 3; aspect-ratio: 3 / 4; }
.card-small { aspect-ratio: 4 / 3; }

.materials-focus-section { background-color: var(--color-background); }
.materials-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}
.materials-image-stack {
    position: relative;
    min-height: 450px;
}
.materials-image-stack img {
    position: absolute;
    width: 75%;
    height: auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}
.stack-image-back {
    top: 0;
    left: 0;
    z-index: 1;
}
.stack-image-front {
    bottom: 0;
    right: 0;
    z-index: 2;
}
.stack-image-back:hover { z-index: 3; transform: scale(1.03) rotate(-2deg); }
.stack-image-front:hover { z-index: 3; transform: scale(1.03) rotate(2deg); }

.materials-text-content h2 { margin-bottom: 1.5rem; }
.materials-text-content p { margin-bottom: 2rem; }

.interactive-tabs-section { background-color: #f9f9f9; }
.tabs-wrapper { display: grid; grid-template-columns: 1fr 3fr; gap: 3rem; }
.tabs-controls { display: flex; flex-direction: column; gap: 0.5rem; }
.tab-control {
    background: none;
    border: none;
    border-left: 3px solid #ddd;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}
.tab-control.active, .tab-control:hover {
    background-color: #fff;
    border-left-color: var(--color-primary);
    color: var(--color-primary);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { margin-bottom: 1rem; }

.lookbook-intro-section { padding-bottom: 3rem; }
.lookbook-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}
.lookbook-text h2 { margin-bottom: 1.5rem; }

.accordion-section { padding-top: 3rem; }
.accordion-item { border-bottom: 1px solid #ddd; }
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease;
    padding: 0 1rem;
}
.accordion-content p { padding-bottom: 2rem; }
.accordion-item.active .accordion-content { max-height: 300px; }
.accordion-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform var(--transition-speed) ease;
}
.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: var(--color-primary);
    transform: translate(-50%, -50%);
}
.accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.active .accordion-icon { transform: rotate(135deg); }

.designer-quote-section { background-color: var(--color-primary); color: var(--color-white); }
.quote-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}
.quote-image-wrapper img { aspect-ratio: 1/1; object-fit: cover; }
.quote-container blockquote {
    font-size: 2rem;
    line-height: 1.4;
    font-style: italic;
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
}
.quote-container cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
}

.process-showcase-section { padding-top: 6rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.process-step img { margin-bottom: 1.5rem; aspect-ratio: 4/3; object-fit: cover; }
.process-step h3 { margin-bottom: 0.5rem; }

.final-cta-section { background-color: #f9f9f9; text-align: center; }
.cta-container h2 { margin-bottom: 1rem; }
.cta-container p { max-width: 600px; margin: 0 auto 2rem; color: var(--color-secondary); }

.main-footer { background-color: var(--color-primary); color: #a0a0a0; padding: 4rem 0; }
.footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3rem; }
.footer-brand { max-width: 250px; }
.footer-logo { height: 30px; filter: invert(1) brightness(0.8); margin-bottom: 1rem; margin-left: auto; margin-right: auto; }
.footer-nav-group { display: flex; gap: 5rem; flex-wrap: wrap; }
.footer-nav h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav a:hover { color: var(--color-white); }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    section { padding: 4rem 0; }
    .hero-content h1 { font-size: 3.5rem; }
    .philosophy-container, .materials-container, .quote-container { grid-template-columns: 1fr; }
    .materials-container { gap: 2rem; }
    .materials-image-stack {
        order: -1;
        margin: 0 auto 2rem;
        min-height: auto;
        display: block;
        position: relative;
        width: 100%;
        max-width: 500px;
    }
    .materials-image-stack img {
        position: static;
        width: 100%;
        display: block;
    }
    .materials-image-stack .stack-image-back {
        margin-bottom: 1.5rem;
    }
    .materials-image-stack img:hover { transform: none; }
    .quote-image-wrapper { max-width: 500px; margin: 0 auto; }
    .tabs-wrapper { grid-template-columns: 1fr; }
    .tabs-controls { flex-direction: row; border-bottom: 1px solid #ddd; margin-bottom: 2rem; overflow-x: auto; }
    .tab-control { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
    .tab-control.active, .tab-control:hover { border-bottom-color: var(--color-primary); background-color: transparent; }
    .featured-grid { grid-template-columns: 1fr; }
    .card-large, .card-small { grid-column: auto; grid-row: auto; aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
    .custom-cursor { display: none; }
    body { cursor: auto; }
    .desktop-nav { display: none; }
    .burger-menu { display: flex; }
    .hero-section { height: 80vh; }
    .hero-slide::after { background: rgba(0,0,0,0.4); }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    .lookbook-container { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .footer-nav-group { justify-content: center; }
     .policy-hero-section h1 {
        font-size: 2.5rem;
        word-break: break-word; 
    }
}

@media (max-width: 360px) {
    html { font-size: 15px; }
    .container { padding-left: 1rem; padding-right: 1rem; }
    section { padding: 3rem 0; }
    .hero-content h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .tabs-controls { padding-bottom: 0.5rem; }
    .policy-hero-section h1 {
        font-size: 2.2rem;
        word-break: break-word;
    }
}
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

#scrollToTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background-color: #333;
}










.shop-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 0;
}

.shop-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.shop-hero-section .container {
    position: relative;
    z-index: 2;
}

.shop-hero-section h1 {
    font-size: 4rem;
}

.shop-main-section {
    padding-top: 4rem;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.sort-controls select {
    border: 1px solid #ddd;
    padding: 0.7rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.product-info .price {
    font-size: 1rem;
    color: var(--color-secondary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-link {
    background: none;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-link:hover, .pagination-link.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.look-of-the-week-section {
    background-color: #f9f9f9;
}

.look-week-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.look-week-content h2 {
    margin-bottom: 1.5rem;
}

.look-week-content p {
    margin-bottom: 2rem;
}

.materials-showcase-section {
    background-color: var(--color-background);
}

.material-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.material-text h2 {
    margin-bottom: 1rem;
}

.style-guide-section {
    background-color: #f9f9f9;
}

.style-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.style-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.style-slide {
    flex: 0 0 33.33%;
    position: relative;
    padding: 0 1rem;
}

.style-slide img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--color-white);
    padding: 2rem 1.5rem 1.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

.craftsmanship-section {
    background-color: var(--color-background);
}

.craftsmanship-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.craftsmanship-text h2 {
    margin-bottom: 1rem;
}

.craftsmanship-text p {
    margin-bottom: 2rem;
}

.size-guide-promo-section {
    background-color: #f9f9f9;
    text-align: center;
}

.size-guide-container h3 {
    margin-bottom: 1rem;
}

.size-guide-container p {
    margin: 0 auto 2rem;
    max-width: 500px;
    color: var(--color-secondary);
}

.final-cta-section[data-cursor-dark] {
    background-color: #1a1a1a;
    color: var(--color-white);
    text-align: center;
}

.cta-container-shop h2 {
    margin-bottom: 1rem;
}

.cta-container-shop p {
    margin: 0 auto 2rem;
    max-width: 500px;
    color: #a0a0a0;
}

.cta-button-inverted {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 0.9rem 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-inverted:hover {
    background-color: #ccc;
}


@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .look-week-container, .material-container, .craftsmanship-container {
        grid-template-columns: 1fr;
    }
    .material-image {
        order: -1;
    }
    .style-slide {
        flex: 0 0 50%;
    }
}


@media (max-width: 768px) {
    .shop-hero-section h1 {
        font-size: 3rem;
    }
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-controls {
        justify-content: center;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .style-slide {
        flex: 0 0 100%;
    }
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .slider-nav.prev {
        left: 1rem;
    }
    .slider-nav.next {
        right: 1rem;
    }
}


@media (max-width: 360px) {
    .filter-controls {
        gap: 0.5rem;
    }
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}





















.new-hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: flex-end;
    padding: 0;
    color: var(--color-white);
}

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

.new-hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.new-hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.new-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
}

.new-hero-content p {
    font-size: 1.2rem;
    max-width: 500px;
}

.flagship-section {
    background-color: var(--color-background);
}

.flagship-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.flagship-subtitle {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.flagship-content h2 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.flagship-content p {
    margin-bottom: 1.5rem;
}

.flagship-price {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.new-arrivals-grid-section {
    background-color: #f9f9f9;
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.new-product-card {
    display: block;
    text-align: center;
}

.new-product-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.new-product-card:hover img {
    opacity: 0.85;
}

.new-product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.new-product-card p {
    color: var(--color-secondary);
}

.inspiration-section {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.inspiration-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.inspiration-text blockquote {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.detail-spotlight-section {
    background-color: #f9f9f9;
}

.detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.detail-text h2 {
    margin-bottom: 1rem;
}

.lookbook-gallery-section {
    padding-bottom: 6rem;
}

.lookbook-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.lookbook-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.lookbook-slide {
    flex: 0 0 100%;
}

.lookbook-slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: var(--color-primary);
}

.color-choice-section {
    background-color: #f9f9f9;
}

.color-choice-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.color-choice-image-wrapper img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.color-choice-controls h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.color-choice-controls p {
    margin-bottom: 2rem;
}

.swatches {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--color-background);
    cursor: pointer;
    outline-offset: 3px;
    transition: outline 0.2s ease;
}

.swatch.active {
    outline: 2px solid var(--color-primary);
}

.swatch-black { background-color: #222; }
.swatch-beige { background-color: #d1c4b7; }
.swatch-burgundy { background-color: #8B0000; }


@media (max-width: 992px) {
    .new-hero-content h1 {
        font-size: 3.5rem;
    }
    .flagship-container, .inspiration-container, .detail-container, .color-choice-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .inspiration-image {
        order: -1;
    }
    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .new-hero-section {
        height: 70vh;
    }
    .new-hero-content h1 {
        font-size: 2.8rem;
    }
    .flagship-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .new-arrivals-grid {
        grid-template-columns: 1fr;
    }
}














.sale-hero-section {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent) 100%);
    text-align: center;
    padding: 6rem 1.5rem;
}

.sale-hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.sale-hero-section p {
    font-size: 1.2rem;
    color: var(--color-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.countdown-section {
    padding: 3rem 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.countdown-container {
    text-align: center;
}

.countdown-container h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #a0a0a0;
}

.sale-grid-section {
    padding: 6rem 0;
}

.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #8B0000;
    color: var(--color-white);
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.price .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.price .sale-price {
    color: #8B0000;
    font-weight: 600;
}

.text-info-section-bg {
    position: relative;
    background: url('images/87.webp') no-repeat center center; 
    background-size: cover;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 6rem 0;
}

.text-info-section-bg .text-info-container {
    position: relative;
    z-index: 2;
}

.text-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}

.text-info-container {
    max-width: 800px;
    text-align: center;
}

.text-info-container h2 {
    margin-bottom: 1rem;
}

.spotlight-section {
    padding: 0;
    background-color: #1a1a1a;
    color: var(--color-white);
}

.spotlight-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 2rem;
}

.spotlight-content {
    padding: 4rem 0;
}

.spotlight-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    color: #a0a0a0;
}

.spotlight-content h2 {
    font-size: 2.8rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.spotlight-content p {
    max-width: 450px;
}

.spotlight-price {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}
.spotlight-price .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
    font-size: 1.2rem; 
}

.spotlight-price .sale-price {
    color: var(--color-white); 
    font-weight: 600;
}
.spotlight-image img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
}

.last-chance-section {
    background-color: #f9f9f9;
}

.last-chance-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.last-chance-item {
    text-align: center;
}

.last-chance-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.last-chance-item:hover img {
    opacity: 0.9;
}

.style-advice-section {
    background-color: var(--color-background);
}

.style-advice-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.style-advice-text h2 {
    margin-bottom: 1rem;
}

.sale-faq-section {
    background-color: #f9f9f9;
}

.sale-accordion .accordion-header {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .spotlight-container {
        grid-template-columns: 1fr;
    }
    .spotlight-image {
        order: -1;
        max-height: 400px;
    }
    .spotlight-content {
        padding: 4rem 0;
    }
    .last-chance-container {
        grid-template-columns: 1fr;
    }
    .style-advice-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sale-hero-section h1 {
        font-size: 3rem;
    }
    .countdown {
        gap: 1rem;
    }
    .countdown-item span:first-child {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .countdown {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 2rem;
    }
    .countdown-item {
        flex-basis: 40%;
    }
}


















.about-hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    color: var(--color-white);
}

.about-hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.about-hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 4rem;
}

.journey-section {
    background-color: #f9f9f9;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.journey-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-icon svg {
    width: 32px;
    height: 32px;
}

.journey-step h3 {
    margin-bottom: 0.5rem;
}

.founder-section {
    background-color: var(--color-background);
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.founder-text blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.founder-text cite {
    font-weight: 600;
}

.production-section {
    background-color: #f9f9f9;
}

.production-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.production-text h2 {
    margin-bottom: 1rem;
}

.production-collage {
    position: relative;
    min-height: 400px;
}

.production-collage img {
    position: absolute;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 60%;
}

.collage-img-1 {
    top: 0;
    left: 0;
    z-index: 1;
}

.collage-img-2 {
    bottom: 0;
    right: 0;
    z-index: 2;
}

.testimonials-section {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-content cite {
    font-weight: 600;
    font-style: normal;
}

.testimonials-section .slider-nav {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.sustainability-section {
    background-color: #f9f9f9;
}

.sustainability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sustainability-text h2 {
    margin-bottom: 1rem;
}

.behind-scenes-section {
    padding-bottom: 6rem;
}

.scenes-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.scene-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scene-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }
    .founder-container, .production-container, .sustainability-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .production-collage {
        min-height: 300px;
    }
    .scenes-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section h1 {
        font-size: 3rem;
    }
    .testimonial-slide {
        padding: 0 1rem;
    }
    .testimonial-content p {
        font-size: 1.2rem;
    }
    .testimonials-section .slider-nav.prev {
        left: 0rem;
    }
    .testimonials-section .slider-nav.next {
        right: 0rem;
    }
    .scenes-gallery {
        grid-template-columns: 1fr;
    }
}







.policy-hero-section {
    background-color: #f9f9f9;
    text-align: center;
    padding: 5rem 1.5rem;
}

.policy-hero-section h1 {
    font-size: 3.5rem;
}

.policy-hero-section p {
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.policy-content-section {
    padding: 4rem 0;
}

.policy-container {
    max-width: 800px;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.policy-container div:first-child h2 {
    margin-top: 0;
}

.policy-container p, .policy-container li {
    color: var(--color-secondary);
    line-height: 1.8;
}

.policy-container ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.policy-container li {
    margin-bottom: 0.75rem;
}

@media(max-width: 768px) {
    .policy-hero-section h1 {
        font-size: 2.5rem;
    }
}
.policy-hero-section {
    background-color: #f9f9f9;
    text-align: center;
    padding: 5rem 1.5rem;
}

.policy-hero-section h1 {
    font-size: 3.5rem;
}

.policy-hero-section p {
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.policy-content-section {
    padding: 4rem 0;
}

.policy-container {
    max-width: 800px;
}

.policy-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}

.policy-container div:first-child h2 {
    margin-top: 0;
}

.policy-container p, .policy-container li {
    color: var(--color-secondary);
    line-height: 1.8;
}

.policy-container ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.policy-container li {
    margin-bottom: 0.75rem;
}

@media(max-width: 768px) {
    .policy-hero-section h1 {
        font-size: 2.5rem;
    }
}
.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    text-align: center;
    padding: 2rem;
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-logo {
    height: 32px;
    margin: 0 auto 2.5rem;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-primary);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--color-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

@media(max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2rem;
    }
}











.support-hero-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
    text-align: center;
    padding: 5rem 1.5rem;
}

.support-hero-section h1 {
    font-size: 3.5rem;
}

.support-hero-section p {
    color: var(--color-secondary);
}

.quick-links-section {
    padding-top: 6rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-link-card {
    position: relative;
    display: block;
    overflow: hidden;
}

.quick-link-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.quick-link-card:hover img {
    transform: scale(1.05);
}

.quick-link-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 2.5rem 1.5rem 1.5rem;
    color: var(--color-white);
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 2;
}

.faq-section {
    background-color: #f9f9f9;
}

.support-accordion .accordion-header {
    font-size: 1.2rem;
}

.size-guide-section-support {
    padding: 6rem 0;
}

.size-guide-container-support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.size-guide-text h2 {
    margin-bottom: 1.5rem;
}

.size-guide-text ol {
    padding-left: 1.5rem;
}

.size-guide-text li {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.contact-info-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 5rem 0;
}

.contact-info-container h2 {
    margin-bottom: 1rem;
}

.contact-info-container p {
    max-width: 500px;
    margin: 0 auto 2.5rem;
    color: #a0a0a0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: underline;
}

.contact-details span {
    color: #a0a0a0;
}

.care-guide-section {
    background-color: #f9f9f9;
    padding-bottom: 3rem;
    text-align: center;
}

.care-guide-container {
    max-width: 800px;
}

.care-guide-container h2 {
    margin-bottom: 1rem;
}

.care-details-section {
    background-color: #f9f9f9;
    padding-top: 0;
}

.care-details-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.care-item h3 {
    margin-bottom: 0.5rem;
}

@media(max-width: 992px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .size-guide-container-support {
        grid-template-columns: 1fr;
    }
    .care-details-container {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px) {
    .support-hero-section h1 {
        font-size: 2.5rem;
    }
}

@media(max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}
.support-comfort-bg {
    position: relative;
    background: url('images/93.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 6rem 0;
}

.support-comfort-bg .text-info-container {
    position: relative;
    z-index: 2;
}

.support-comfort-bg h2,
.support-comfort-bg p {
    color: var(--color-white);
}
.hero-content h1,
.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
@media(max-width: 480px){
    .hero-content h1,
.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    }
}