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

body {
    font-family: 'Noto Sans', sans-serif;
    background: #4A4238;
    color: white;
    line-height: 1.6;
}

h1 {
    font-family: 'Noto Serif', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem 4rem 2rem;
}

.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

p {
    font-size: 1.1rem;
    margin: 1rem 0;
    text-align: left;
}

.pricing {
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
}

.pricing div {
    margin: 0.5rem 0;
}

.shipping-note {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.delivery-date {
    font-size: 1rem;
    margin: 0.5rem 0 1rem 0;
    opacity: 0.85;
}

.subscription-info {
    background: rgba(139, 115, 85, 0.15);
    border-left: 3px solid #8B7355;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: left;
}

.subscription-info p {
    margin: 0;
    font-size: 1rem;
}

.buttons {
    margin: 2rem 0 0 0;
}

.buttons form {
    display: inline-block;
}

.btn {
    display: inline-block;
    background: #7A6346;
    color: white;
    padding: 1rem 2rem;
    margin: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #7A6346;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
}

.btn:hover {
    background: #6B5444;
    border-color: #6B5444;
}

.btn-secondary {
    background: rgba(139, 115, 85, 0.2);
    border-color: #C9A882;
    color: #D4B896;
}

.btn-secondary:hover {
    background: #8B7355;
    border-color: #8B7355;
    color: white;
}

.newsletter-button-container {
    margin: 1rem 0;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 115, 85, 0.3);
}

.section-title {
    font-family: 'Noto Serif', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #C9A882;
}

.product-card {
    background: rgba(139, 115, 85, 0.1);
    border: 2px solid #8B7355;
    border-radius: 8px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.product-card-header h4 {
    font-family: 'Noto Serif', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.product-card-body {
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A882;
    font-weight: bold;
}

.coming-soon-note {
    text-align: center;
    font-style: italic;
    opacity: 0.8;
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* Support Footer */
.support-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.support-footer p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
}

.support-footer a {
    color: #C9A882;
    text-decoration: none;
    font-weight: 600;
}

.support-footer a:hover {
    color: #D4B896;
    text-decoration: underline;
}

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

.modal-content {
    background-color: #4A4238;
    margin: 10% auto;
    padding: 2rem;
    border: 2px solid #8B7355;
    width: 90%;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
}

.modal-content h2 {
    font-family: 'Noto Serif', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-content p {
    margin: 1rem 0;
}

.close {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.close:hover,
.close:focus {
    color: white;
}

#newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    background: #3A3228;
    border: 1px solid #8B7355;
    color: white;
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
}

#newsletter-form input::placeholder {
    color: #aaa;
}

#newsletter-form button {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    background: #2d5016;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
}

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

    h2 {
        font-size: 1.2rem;
    }

    .container {
        padding: 2rem 1rem;
    }

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

    .product-image img {
        max-width: 100%;
    }

    .product-info {
        text-align: center;
    }

    p {
        font-size: 1rem;
        text-align: center;
    }

    .pricing,
    .delivery-date,
    .subscription-info {
        text-align: center;
    }

    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .coming-soon-section {
        margin-top: 4rem;
        padding-top: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-card-header h4 {
        font-size: 1.5rem;
        text-align: center;
    }

    .product-card-body {
        text-align: center;
    }

    .feature-list li {
        font-size: 1rem;
    }
}
