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

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2D2D2D;
    background-color: #FEFEFE;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Centered sections */
.centered-section .container {
    text-align: center;
}

.centered-section .materials-grid,
.centered-section .craftsmanship-grid {
    text-align: left;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2D2D2D;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2D2D2D;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #2D2D2D;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2D2D2D;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4A4A4A;
}

a {
    color: #6B7A8F;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2D2D2D;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: #FEFEFE;
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.5rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2D2D2D;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background-color: #F5F3F0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    margin-bottom: 2rem;
    color: #2D2D2D;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #5A5A5A;
}

.hero-cta {
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: #2D2D2D;
    color: #FEFEFE;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #6B7A8F;
    transform: translateY(-1px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img,
.materials-img,
.craftsmanship-img,
.process-img,
.product-img,
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-img {
    height: 400px;
}

.materials-img,
.craftsmanship-img,
.process-img {
    height: 300px;
}

.product-img {
    height: 250px;
}

.about-img {
    height: 250px;
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background-color: #FEFEFE;
}

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

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

/* Materials Section */
.materials {
    padding: 6rem 0;
    background-color: #F9F8F6;
}

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

.materials-list {
    list-style: none;
    margin-top: 2rem;
}

.materials-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E8E8E8;
    color: #6B7A8F;
    font-weight: 500;
}

.materials-list li:last-child {
    border-bottom: none;
}

/* Capsule Wardrobe Section */
.capsule-wardrobe {
    padding: 6rem 0;
    background-color: #FEFEFE;
}

.capsule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.capsule-item {
    text-align: center;
    padding: 2rem;
}

.capsule-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background-color: #F5F3F0;
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: #FEFEFE;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 2rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
    margin: 1rem 0 1.5rem;
}

.product-btn {
    background-color: #2D2D2D;
    color: #FEFEFE;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-btn:hover {
    background-color: #6B7A8F;
    transform: translateY(-1px);
}

/* Craftsmanship Section */
.craftsmanship {
    padding: 6rem 0;
    background-color: #FEFEFE;
}

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

.craftsmanship-features {
    margin-top: 2rem;
}

.feature {
    margin-bottom: 1.5rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
}

.feature p {
    color: #6B7A8F;
    margin: 0;
}

/* Sustainability Section */
.sustainability {
    padding: 6rem 0;
    background-color: #F9F8F6;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.sustainability-item {
    text-align: center;
    padding: 2rem;
}

/* Design Process Section */
.design-process {
    padding: 6rem 0;
    background-color: #FEFEFE;
}

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

.process-image {
    margin-top: 3rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #F5F3F0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-grid {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: #2D2D2D;
}

.contact-item p {
    color: #5A5A5A;
}

/* Footer */
.footer {
    background-color: #2D2D2D;
    color: #FEFEFE;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: #FEFEFE;
}

.footer-description {
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: #FEFEFE;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #CCCCCC;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FEFEFE;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D2D2D;
    color: #FEFEFE;
    padding: 2rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-text {
    margin-bottom: 1.5rem;
}

.cookie-text h3 {
    color: #FEFEFE;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin: 0;
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 600px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: #6B7A8F;
    color: #FEFEFE;
}

.cookie-btn.accept:hover {
    background-color: #5A6B7F;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #CCCCCC;
    border: 1px solid #555;
}

.cookie-btn.reject:hover {
    background-color: #555;
    color: #FEFEFE;
}

.cookie-btn.customize {
    background-color: transparent;
    color: #6B7A8F;
    border: 1px solid #6B7A8F;
}

.cookie-btn.customize:hover {
    background-color: #6B7A8F;
    color: #FEFEFE;
}

.cookie-link {
    color: #6B7A8F;
    text-decoration: underline;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-link:hover {
    color: #FEFEFE;
}

/* Cookie Modal Styles */
.cookie-categories {
    margin: 2rem 0;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    background-color: #F9F8F6;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category h3 {
    margin: 0;
    font-size: 1.125rem;
    color: #2D2D2D;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-category p {
    margin: 0;
    color: #5A5A5A;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cookie-modal-actions .cookie-btn {
    min-width: 120px;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #6B7A8F;
    border: 1px solid #6B7A8F;
}

.cookie-btn.decline:hover {
    background-color: #6B7A8F;
    color: #FEFEFE;
}
/* Placeholder Images */
.placeholder-image {
    background-color: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #888;
    font-size: 0.9rem;
    border-radius: 4px;
}

.hero-image .placeholder-image {
    height: 400px;
}

.product-image .placeholder-image {
    height: 250px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #FEFEFE;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    color: #888;
}

.close:hover {
    color: #2D2D2D;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B7A8F;
}

#orderForm button {
    background-color: #2D2D2D;
    color: #FEFEFE;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#orderForm button:hover {
    background-color: #6B7A8F;
}

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

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-img {
        height: 250px;
    }

    .materials-grid,
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .capsule-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
        min-width: auto;
    }

    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }

    .materials-img,
    .craftsmanship-img,
    .process-img {
        height: 200px;
    }

    .product-img {
        height: 180px;
    }

    .about-img {
        height: 200px;
    }

    .cookie-content {
        text-align: center;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .cookie-modal-actions .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-img {
        height: 200px;
    }

    h2 {
        font-size: 1.75rem;
    }

    .capsule-item,
    .sustainability-item {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }
    
    .cookie-banner {
        padding: 1rem 0;
    }
    
    .cookie-content {
        padding: 0 1rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .materials-img,
    .craftsmanship-img,
    .process-img,
    .about-img {
        height: 180px;
    }

    .product-img {
        height: 160px;
    }
}