/* ============================================
   MARLUS - CSS STYLESHEET
   ============================================ */

/* ====================
   FONTS
   ==================== */
@font-face {
    font-family: 'Verve';
    src: url('/assets/Verve.woff2') format('woff2');
    font-display: swap;
}

/* ====================
   RESET & BASE
   ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8dec5;
    color: #666;
    font-weight: 300;
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* ====================
   ADMIN LOGIN
   ==================== */
.admin-login {
    background-color: #f8dec5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
}

.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
}

.admin-login-box {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.admin-logo {
    font-family: 'Verve', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #282424;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-login-input {
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-align: center;
    background: white;
    color: #282424;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.admin-login-input:focus {
    outline: none;
    border-color: #282424;
    box-shadow: 0 0 0 3px rgba(40, 36, 36, 0.1);
}

.admin-login-input::placeholder {
    color: #999;
    font-weight: 300;
}

.admin-login-error {
    color: #e74c3c;
    font-size: 1rem;
    min-height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.admin-login-btn {
    padding: 1rem 2rem;
    background: #282424;
    color: #f8dec5;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-login-btn:hover {
    background: #1a1818;
    transform: translateY(-2px);
}

.admin-login-back {
    display: inline-block;
    color: #888;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s;
}

.admin-login-back:hover {
    color: #282424;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ====================
   TYPOGRAPHY
   ==================== */
h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    color: inherit;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: inherit;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #888;
    font-weight: 300;
}

/* ====================
   LAYOUT
   ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* ====================
   SECTIONS
   ==================== */
.section {
    padding: 5rem 2rem;
}

.section-light {
    background-color: #f8dec5;
    color: #282424;
}

.section-light p {
    color: #888;
}

.section-light h2 {
    font-weight: 600;
}

.section-dark {
    background-color: #282424;
    color: white;
}

.section-dark p {
    color: #bbb;
}

.section-dark h2 {
    font-weight: 600;
}

/* ====================
   HERO SECTION
   ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8dec5;
    text-align: center;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('https://res.cloudinary.com/dqzwmnpdi/image/upload/v1760980323/marlus/back.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.logo-text {
    font-family: 'Verve', Georgia, serif;
    font-size: 7rem;
    font-weight: 400;
    color: #282424;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 1.3rem;
    color: #5a5a5a;
    margin-top: 4rem;
    margin-bottom: 2.5rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ====================
   BUTTONS
   ==================== */
.btn {
    display: inline-block;
    background: #282424;
    color: #f8dec5;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: #1a1818;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #282424;
    border: 2px solid #282424;
}

.btn-outline:hover {
    background: #282424;
    color: #f8dec5;
}

.btn-white {
    background: white;
    color: #282424;
    border: 2px solid #282424;
}

.btn-white:hover {
    background: #f5f5f5;
}

.accordion-btn {
    background: transparent;
    color: #f8dec5;
    border: 2px solid #f8dec5;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    background: rgba(248, 222, 197, 0.1);
    transform: translateY(-2px);
}

.section-light .accordion-btn {
    color: #282424;
    border-color: #282424;
}

.section-light .accordion-btn:hover {
    background: rgba(40, 36, 36, 0.05);
}

/* ====================
   STORY & INGREDIENTS SECTIONS
   ==================== */
.story-grid {
    align-items: start;
}

.story-image {
    position: sticky;
    top: 2rem;
}

.ingredients-grid {
    align-items: start;
    gap: 2rem;
}

.ingredients-image {
    position: static;
    margin-top: -1rem;
}

.story-grid .story-image {
    position: sticky;
    top: 2rem;
}

/* ====================
   ACCORDION
   ==================== */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
    margin-top: 2rem;
}

.ingredients-grid .accordion-content {
    grid-column: 1 / -1;
}

.story-grid .accordion-content {
    grid-column: 1 / -1;
}

.accordion-content.open {
    max-height: 2000px;
    opacity: 1;
}

.accordion-first-paragraph {
    margin-top: 1.5rem;
}

/* ====================
   PRODUCT SECTION
   ==================== */
.product-section {
    padding: 0;
    position: relative;
    background: linear-gradient(to bottom, #f8dec5 50%, #282424 50%);
}

.bottle-wrapper {
    text-align: center;
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

.bottle-wrapper img {
    max-width: 250px;
    margin: 0 auto;
    transition: transform 0.3s;
    cursor: pointer;
}

.bottle-wrapper img:hover {
    transform: scale(1.05);
}

.product-info {
    text-align: center;
    padding: 3rem 2rem 6rem;
}

.product-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f8dec5;
}

.product-info .btn {
    background: #f8dec5;
    color: #282424;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.product-info .btn:hover {
    background: #eed9bf;
    transform: translateY(-2px);
}

.product-price {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f8dec5;
    font-weight: 500;
    letter-spacing: 1px;
}

.product-description {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #bbb;
}

.product-info-btn {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

.product-info-accordion {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

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

.product-label img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 12px;
}

.product-recycling h3 {
    font-size: 1.2rem;
    color: #f8dec5;
    margin-bottom: 0.75rem;
}

.product-recycling p {
    color: #bbb;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-recycling ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-recycling li {
    color: #bbb;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(248, 222, 197, 0.1);
}

.product-recycling li:last-child {
    border-bottom: none;
}

/* ====================
   RECIPES
   ==================== */
.recipes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0;
}

.recipe-card {
    background: rgba(248, 222, 197, 0.1);
    border: 1px solid rgba(248, 222, 197, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: rgba(248, 222, 197, 0.15);
}

.recipe-image {
    width: 100%;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

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

.recipe-content {
    padding: 1.5rem;
}

.recipe-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    color: #f8dec5;
}

.recipe-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
}

/* ====================
   CONTACT SECTION
   ==================== */
.contact-section {
    text-align: center;
    padding: 5rem 2rem 6rem;
}

.contact-section h2 {
    margin-bottom: 1.5rem;
}

.contact-intro {
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

.btn-contact {
    font-size: 1.15rem;
    padding: 1.3rem 3rem;
    margin-top: 1rem;
}

/* ====================
   FOOTER
   ==================== */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.footer-top {
    display: flex;
    align-items: baseline;
    gap: 3rem;
    width: 100%;
}

.footer-logo {
    font-family: 'Verve', Georgia, serif;
    font-size: 2rem;
    color: white;
    letter-spacing: 1px;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 3px;
}

.social-links a {
    color: white;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 1.75rem;
    height: 1.75rem;
    display: block;
}

.footer-email {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-email:hover {
    color: #f8dec5;
}

.footer-legal-vat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #999;
}

.footer-vat {
    color: #999;
    font-size: 0.875rem;
}

.footer-legal {
    background: none;
    border: none;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    transition: color 0.3s;
    padding: 0;
}

.footer-legal:hover {
    color: #f8dec5;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #999;
}

.footer-by {
    color: #666;
    font-size: 0.8rem;
}

.footer-by a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-by a:hover {
    color: #f8dec5;
}

/* ====================
   MODALS
   ==================== */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    background: white;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #999;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: -0.5rem -0.5rem 0 0;
    z-index: 10;
}

.modal-close:hover {
    color: #282424;
    background: #f5f5f5;
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #282424;
    clear: both;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ====================
   FORMS
   ==================== */
.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #282424;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #282424;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row .form-group {
    margin-bottom: 1rem;
}

/* ====================
   LEGAL MODAL
   ==================== */
.legal-modal-content {
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
}

.legal-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 2rem;
}

.legal-tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: #999;
    transition: all 0.3s;
}

.legal-tab.active {
    color: #282424;
    border-bottom-color: #282424;
}

.legal-tab:hover {
    color: #282424;
}

.legal-content {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: left;
}

.legal-content h3 {
    color: #282424;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    text-align: left;
}

.legal-content p {
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content li {
    margin-bottom: 0.5rem;
    text-align: left;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ====================
   LANGUAGE TOGGLE
   ==================== */
.lang-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
}

.lang-btn {
    background: none;
    border: none;
    color: #282424;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
    padding: 0;
}

.lang-btn:hover {
    opacity: 0.6;
}

.lang-btn.active {
    font-weight: 600;
}

.lang-toggle::after {
    content: '|';
    color: #282424;
    font-size: 0.75rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* ====================
   AGE GATE PAGE
   ==================== */
.age-gate-title {
    font-size: 2.5rem;
    color: #282424;
    margin: 3rem 0 1.5rem 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.age-gate-text {
    font-size: 1.1rem;
    color: #888;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-buttons .btn {
    min-width: 180px;
}

/* ====================
   COMING SOON PAGE
   ==================== */
body.coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.coming-soon .container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 700px;
}

.coming-soon .logo-text {
    cursor: pointer;
}

.coming-soon .divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #282424, transparent);
    margin: 2.5rem auto;
}

.coming-soon h2 {
    margin-bottom: 1.5rem;
}

.coming-soon p {
    margin-bottom: 3rem;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
}

.btn-amazon,
.btn-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-amazon {
    background: linear-gradient(135deg, #FF9900 0%, #FF7700 100%);
    color: white;
}

.btn-email {
    background: linear-gradient(135deg, #282424 0%, #1a1818 100%);
    color: #f8dec5;
}

.btn-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2rem;
}

.password-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, background-color 0.2s;
    background: #fafafa;
}

.password-input:focus {
    outline: none;
    border-color: #282424;
    background: white;
    box-shadow: 0 0 0 4px rgba(40, 36, 36, 0.05);
}

.error-message {
    color: #d63031;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    min-height: 1.25rem;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #282424 0%, #1a1818 100%);
    color: #f8dec5;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(40, 36, 36, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(40, 36, 36, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ====================
   ANIMATIONS
   ==================== */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.shake {
    animation: shake 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .logo-wrapper::before {
        width: 400px;
        height: 400px;
    }

    .logo-text {
        font-size: 5rem;
    }

    .tagline {
        font-size: 1.2rem;
        margin-top: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .grid-2,
    .recipes-container {
        grid-template-columns: 1fr;
    }

    .story-image {
        position: static;
    }

    .story-grid .story-image {
        position: static;
    }

    .ingredients-image {
        position: static;
    }

    /* Mobile: accordion pushes image down */
    .ingredients-grid {
        display: flex;
        flex-direction: column;
    }

    .ingredients-content {
        order: 1;
        margin-bottom: 0.5rem;
    }

    .accordion-content[data-accordion-content="ingredients"] {
        order: 2;
        margin-top: 0;
    }

    .ingredients-image {
        order: 3;
        margin-top: 0;
    }

    .accordion-content[data-accordion-content="ingredients"].open {
        margin-bottom: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-legal-vat {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-credits {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .lang-toggle {
        top: 1rem;
        right: 1rem;
    }

    .coming-soon h2 {
        font-size: 1.75rem;
    }

    .buttons-container {
        max-width: 100%;
    }

    .btn-icon {
        width: 26px;
        height: 26px;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-height: 85vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .logo-wrapper::before {
        width: 300px;
        height: 300px;
    }

    .logo-text {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1rem;
        margin-top: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .bottle-wrapper img {
        max-width: 200px;
    }

    .contact-email {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 2rem;
    }

    .product-info h2 {
        font-size: 1.6rem;
    }

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

    .product-label img {
        max-width: 250px;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        width: 98%;
        max-height: 90vh;
    }

    .modal-content h2 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .modal-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-buttons .btn {
        width: 100%;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }

    .coming-soon .divider {
        margin: 2rem auto;
    }

    .btn-icon {
        width: 24px;
        height: 24px;
    }
}
