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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    filter: drop-shadow(0 2px 4px rgba(125, 211, 192, 0.3));
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 300;
    color: #5CAE9A;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf8 0%, #ecfdf5 100%);
    padding: 80px 0;
}

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

.hero-text h2 {
    font-size: 3rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.2rem;
}

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

.hero-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

/* Seasonal Capsules */
.capsules {
    padding: 80px 0;
    background-color: #ffffff;
}

.capsules h2 {
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.capsules > .container > p {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

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

.capsule-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.capsule-card:hover {
    transform: translateY(-5px);
}

.capsule-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.capsule-card h3 {
    font-size: 1.5rem;
    color: #5CAE9A;
    margin-bottom: 15px;
}

.capsule-card p {
    color: #666;
    line-height: 1.6;
}

/* Size Finder */
.size-finder {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf8 0%, #ecfdf5 100%);
}

.size-finder h2 {
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.size-finder > .container > p {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

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

.finder-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.finder-input {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.finder-input:focus {
    outline: none;
    border-color: #7DD3C0;
}

.btn-primary {
    background: linear-gradient(135deg, #7DD3C0, #5CAE9A);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 211, 192, 0.4);
}

.size-guide-image {
    display: flex;
    justify-content: center;
}

.size-guide-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Products */
.products {
    padding: 80px 0;
    background-color: #ffffff;
}

.products h2 {
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.products > .container > p {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 1.4rem;
    color: #5CAE9A;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.3rem;
    color: #FFB5A7;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-secondary {
    background: transparent;
    color: #5CAE9A;
    padding: 12px 25px;
    border: 2px solid #5CAE9A;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5CAE9A;
    color: white;
    transform: translateY(-2px);
}

/* Eco Materials */
.eco-materials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf8 0%, #ecfdf5 100%);
}

.eco-materials h2 {
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.eco-materials > .container > p {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.material-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.material-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.material-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.material-item h3 {
    font-size: 1.5rem;
    color: #5CAE9A;
    margin-bottom: 15px;
}

.material-item p {
    color: #666;
    line-height: 1.6;
}

/* Monogramming */
.monogramming {
    padding: 80px 0;
    background-color: #ffffff;
}

.monogramming h2 {
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.monogramming > .container > p {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

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

.monogramming-options h3 {
    font-size: 1.5rem;
    color: #5CAE9A;
    margin-bottom: 25px;
}

.monogramming-options ul {
    list-style: none;
}

.monogramming-options li {
    color: #666;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.monogramming-options li::before {
    content: "✓";
    color: #7DD3C0;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.monogramming-image {
    display: flex;
    justify-content: center;
}

.monogramming-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Trade-in */
.trade-in {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf8 0%, #ecfdf5 100%);
}

.trade-in h2 {
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.trade-in > .container > p {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trade-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7DD3C0, #5CAE9A);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #5CAE9A;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Pickup */
.pickup {
    padding: 80px 0;
    background-color: #ffffff;
}

.pickup h2 {
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 20px;
    font-weight: 300;
}

.pickup > .container > p {
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.pickup-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pickup-cities h3 {
    font-size: 1.5rem;
    color: #5CAE9A;
    margin-bottom: 25px;
}

.pickup-cities ul {
    list-style: none;
}

.pickup-cities li {
    color: #666;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.pickup-cities li::before {
    content: "📍";
    position: absolute;
    left: 0;
}

.pickup-map-image {
    display: flex;
    justify-content: center;
}

.pickup-map-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contacts */
.contacts {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf8 0%, #ecfdf5 100%);
}

.contacts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #5CAE9A;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.contact-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #5CAE9A;
    margin-bottom: 15px;
}

.contact-item a {
    color: #FFB5A7;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #7DD3C0;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand-name {
    font-size: 1.2rem;
    color: #7DD3C0;
    font-weight: 300;
}

.footer-description {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: #7DD3C0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-details p,
.contact-details a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #7DD3C0;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text h3 {
    color: #7DD3C0;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

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

.cookie-btn.accept,
.cookie-btn.save {
    background: linear-gradient(135deg, #7DD3C0, #5CAE9A);
    color: white;
}

.cookie-btn.accept:hover,
.cookie-btn.save:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 211, 192, 0.4);
}

.cookie-btn.reject {
    background: #e74c3c;
    color: white;
}

.cookie-btn.reject:hover {
    background: #c0392b;
}

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

.cookie-btn.customize:hover {
    background: #7DD3C0;
    color: #2c3e50;
}

.cookie-btn.cancel {
    background: transparent;
    color: #95a5a6;
    border: 1px solid #bdc3c7;
}

.cookie-btn.cancel:hover {
    background: #bdc3c7;
    color: #2c3e50;
}

.cookie-link {
    color: #7DD3C0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #5CAE9A;
    text-decoration: underline;
}

.cookie-customization {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.cookie-customization.show {
    display: block;
}

.cookie-customization h4 {
    color: #7DD3C0;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
}

.cookie-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.cookie-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #7DD3C0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-label input[type="checkbox"]:checked + .checkmark {
    background: #7DD3C0;
}

.cookie-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

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

.cookie-info strong {
    color: #7DD3C0;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 5px;
}

.cookie-info p {
    color: #bdc3c7;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-custom-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

    .brand-name {
        font-size: 1.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-features {
        justify-content: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px;
    }

    .capsules h2,
    .size-finder h2,
    .products h2,
    .eco-materials h2,
    .monogramming h2,
    .trade-in h2,
    .pickup h2,
    .contacts h2 {
        font-size: 2rem;
    }

    .finder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .monogramming-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pickup-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        align-items: center;
        gap: 15px;
    }

    .contact-details {
        align-items: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cookie-categories {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .trade-process {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}