/* Font Face Declarations */
@font-face {
    font-family: 'Impact Label';
    src: url('impact-label-font/ImpactLabel-lVYZ.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Impact Label Reversed';
    src: url('impact-label-font/ImpactLabelReversed-nDMR.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Embossing Tape';
    src: url('embossing_tape_typo/embosst1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Embossing Tape', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Fixed Subscribe Button - Mobile First */
.fixed-subscribe {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    background-color: #d75527;
    color: #000000;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Embossing Tape', 'Poppins', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fixed-subscribe:hover {
    background-color: #c04517;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.fixed-subscribe:active {
    transform: translateY(0);
}

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


/* Content Sections - Mobile First */
.content-section {
    min-height: auto;
    overflow: visible;
    position: relative;
    background-color: #f3d6ae;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3d6ae;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}


.content-section > * {
    position: relative;
    z-index: 1;
}

/* About Us Section */
#story {
    border-bottom: 2px dashed #d75527;
}

@media (min-width: 768px) {
    #story {
        border-bottom: none;
    }
}

.content-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.image-placeholder {
    width: 100vw;
    height: 300px;
    min-height: 300px;
    background-color: #f3d6ae;
    margin-left: calc(-50vw + 50%);
    flex-shrink: 0;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 2px dashed #d75527;
    border-bottom: 2px dashed #d75527;
    padding: 10%;
}

/* Specific section images */
.story-image {
    background-image: url("img/Nofondoyogur.png");
    background-color: #f3d6ae;
    background-size: 70%;
}

.process-image {
    background-image: url("img/nuevamaquina.png");
    background-color: #f3d6ae;
}

.ingredients-image {
    background-image: url("img/intento.png");
    background-color: #f3d6ae;
}

.research-image {
    background-image: url("img/intento.png");
    background-color: #f3d6ae;
    background-size: cover;
    padding: 0;
}

.center {
    display: flex; /* Habilita Flexbox */
    justify-content: center; /* Centra horizontalmente los elementos hijos */
  
    /* Opcional: Centrar también verticalmente */
    /* align-items: center; */
    /* height: 100vh; /* Requiere altura para centrado vertical */
}

.content {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 2rem 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d75527;
}

.content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #d75527;
}

.content p {
    margin-bottom: 1rem;
    color: #5d6d7e;
    line-height: 1.6;
}

/* Ingredients List */
.ingredients-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.ingredients-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 1.5rem;
}

.ingredients-list li:before {
    content: "•";
    color: #d75527;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Section Titles (General) */
.section-title,
.ingredients-title {
    font-family: 'Embossing Tape', sans-serif;
    font-size: 2.5rem;
    color: #d75527;
    text-align: left;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.section-title .black-letter,
.ingredients-title .black-letter {
    color: #000000;
}

/* Discount Title - Centered */
.discount-title {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title,
    .ingredients-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title,
    .ingredients-title {
        font-size: 3.5rem;
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.process-step p {
    margin: 0;
}

.step-number {
    background-color: #d75527;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-icon {
    font-size: 2rem;
    color: #d75527;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    filter: grayscale(100%) brightness(0.6) sepia(100%) hue-rotate(10deg) saturate(500%);
}

/* Links List */
.links-list {
    list-style: none;
    padding-left: 0;
}

.links-list li {
    margin-bottom: 0.8rem;
}

.links-list a {
    color: #d75527;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s ease;
}

.links-list a:hover {
    color: #d75527;
}

/* Pricing Section */
.pricing {
    background-color: #f3d6ae;
    padding: 4rem 20px;
    position: relative;
    border-top: 2px dashed #d75527;
}

.pricing .section-title {
    text-align: center;
}

@media (min-width: 768px) {
    .pricing {
        border-top: none;
    }
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3d6ae;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.pricing > * {
    position: relative;
    z-index: 1;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: #d75527;
}

.pricing h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #333;
    font-weight: 400;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-box {
    background-color: #f3d8af;
    padding: 0;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid #e0e0e0;
    overflow: hidden;
    position: relative;
}

.price-box:hover {
    border-color: #d75527;
    box-shadow: 0 4px 20px rgba(215, 85, 39, 0.2);
}

.price-box.featured {
    border: 3px solid #d75527;
    box-shadow: 0 4px 20px rgba(215, 85, 39, 0.15);
}

.price-box.featured::before {
    content: 'GET 21% DISCOUNT';
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000000;
    color: white;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transform: rotate(0deg);
}

.price-box h3 {
    font-size: 1.8rem;
    margin: 0;
    padding: 2rem 2rem 1rem 2rem;
    color: #000000;
    font-weight: 700;
    background-color: #f8f8f8;
}

.featured h3 {
    background-color: #d75527;
    color: white;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
    padding: 1rem 2rem 0.5rem 2rem;
    color: #000000;
    line-height: 1;
}

.featured .price {
    color: #d75527;
}

.price-box p {
    color: #666;
    margin: 0;
    padding: 0 2rem 2rem 2rem;
    font-size: 1rem;
}

.featured p {
    color: #333;
}

.price-box p span {
    font-size: 1.1rem;
    color: inherit;
    font-weight: 500;
}

.price-box .cta-button {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem 2rem;
    background-color: #d75527;
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
}

.price-box .cta-button:hover {
    background-color: #000000;
    transform: translateY(0);
}

.featured .cta-button {
    background-color: #000000;
    color: white;
}

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

/* CTA Section */
.cta-section {
    background-color: #d75527;
    color: white;
    padding: 3rem 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    padding: 0 10px;
}

.cta-button {
    background-color: #d75527;
    color: black;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    font-family: 'Embossing Tape', 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #d75527;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.instagram-text {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.instagram-link {
    color: #f9dfc7;
    text-decoration: none;
    font-weight: 600;
}

.instagram-link:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    background-color: #9c6d41;
    padding: 3rem 20px;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: white;
}

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

.testimonial-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 2px;
}

.testimonial-item:nth-child(1) {
    background-image: url('img/Testimonial1');
}

.testimonial-item:nth-child(2) {
    background-image: url('img/Testimonial2.png');
}

.testimonial-item:nth-child(3) {
    background-image: url('img/Testimonial3.png');
}

.testimonial-item:nth-child(4) {
    background-image: url('img/Testimonial4.png');
}

.testimonial-item:nth-child(n+5) {
    background-image: url('img/Testimonial1');
}

.testimonial-item:nth-child(6n+5) {
    background-image: url('img/Testimonial2.png');
}

.testimonial-item:nth-child(6n+6) {
    background-image: url('img/Testimonial3.png');
}

.testimonial-item:nth-child(6n+7) {
    background-image: url('img/Testimonial4.png');
}

.testimonial-item p {
    font-style: normal;
    color: white;
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Community Section */
.community-section {
    background-color: #f3d6ae;
    padding: 4rem 20px;
    position: relative;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3d6ae;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.community-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

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

.community-header h2 {
    font-size: 2rem;
    color: #d75527;
    margin-bottom: 0.5rem;
}

.community-subtitle {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin: 0;
}

.community-benefits {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.community-description {
    text-align: center;
    font-size: 1.1rem;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.community-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-list li {
    font-size: 1.1rem;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.community-cta {
    text-align: center;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
}

.community-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.instagram-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.instagram-text {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #d75527;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #000000;
    transform: translateY(-2px);
}

.instagram-icon {
    width: 32px;
    height: 32px;
}

@media (min-width: 768px) {
    .community-header h2 {
        font-size: 2.5rem;
    }

    .community-description {
        font-size: 1.2rem;
    }

    .community-list li {
        font-size: 1.2rem;
        padding: 1.25rem 0;
    }
}

/* Footer */
.footer {
    background-color: #d75527;
    color: white;
    /* padding: 2rem 0; */
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: left;
    /* gap: 1rem; */
}

.footer p {
    font-size: 1.2rem;
    margin: 0;
}

.footer-bacteria {
    width: auto;
    height: 120px;
    object-fit: contain;
}

/* Tablet Styles */
@media (min-width: 768px) {
    /* Subscribe button for tablet */
    .fixed-subscribe {
        padding: 12px 24px;
        font-size: 15px;
        bottom: 20px;
        right: 20px;
    }

    /* Content sections for tablet */
    .content-section {
        overflow: hidden;
    }

    .content-section::before {
        overflow: hidden;
    }

    .content-grid {
        flex-direction: row;
        align-items: stretch;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .content-section.alt .content-grid {
        flex-direction: row-reverse;
    }

    .image-placeholder {
        width: 50vw;
        height: auto;
        margin-left: 0;
        min-height: 400px;
        border: none;
    }

    .content {
        width: 50vw;
        max-width: 600px;
        padding: 3rem 2rem;
    }

    .content h2 {
        font-size: 2rem;
    }

    /* Process steps for tablet */
    .process-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* CTA Section for tablet */
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Testimonials grid for tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Pricing grid for tablet */
    .pricing-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .price-box {
        flex: 1;
        max-width: 450px;
    }

    .price-box.featured {
        transform: scale(1.05);
    }

    .price-box.featured:hover {
        transform: scale(1.08) translateY(-5px);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    /* Subscribe button for desktop */
    .fixed-subscribe {
        padding: 18px 40px;
        font-size: 18px;
        bottom: 30px;
        left: 30px;
        right: auto;
    }

    /* Footer center for desktop */
    .footer-content {
        justify-content: center;
    }

    /* Content sections for desktop */
    .image-placeholder {
        width: 50vw;
        min-height: 600px;
    }

    .content {
        width: 50vw;
        max-width: 700px;
        padding: 4rem 4rem;
    }

    .content h2 {
        font-size: 2.5rem;
    }

    /* Process steps grid for desktop */
    .process-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* CTA section improvements */
    .cta-section {
        padding: 4rem 40px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        max-width: 800px;
        margin: 0 auto 2rem;
    }

    /* Testimonials 4x2 grid for desktop */
    .testimonials {
        padding: 4rem 40px;
    }

    .testimonials h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .testimonial-item {
        padding: 2.5rem;
        min-height: 250px;
    }

    /* Pricing improvements for desktop */
    .pricing h2 {
        font-size: 2.5rem;
    }

    .pricing-grid {
        gap: 3rem;
    }

    .price-box {
        padding: 3rem 2.5rem;
    }

    .price {
        font-size: 3.5rem;
    }

}

/* Large Desktop */
@media (min-width: 1200px) {
    .image-placeholder {
        min-height: 550px;
    }

    .content h2 {
        font-size: 3rem;
    }

    .cta-content h2 {
        font-size: 3rem;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .fixed-subscribe {
        padding: 8px 16px;
        font-size: 13px;
        top: 10px;
        right: 10px;
    }

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

    .cta-content h2 {
        font-size: 1.3rem;
    }

    .testimonials h2 {
        font-size: 1.5rem;
    }

    .pricing h2 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-box {
        padding: 2rem 1.5rem;
    }
}

/* Title Section */
.title-section {
    width: 100%;
    background-color: #f3d6ae;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem 2rem 1rem;
}

.main-title {
    font-family: 'Embossing Tape', sans-serif;
    text-align: center;
    line-height: 0.85;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 10vw;
}

.title-line-black {
    color: #000000;
    display: block;
}

.title-line-orange {
    color: #d75527;
    display: block;
}

@media (min-width: 768px) {
    .title-section {
        padding: 4rem 2rem 3rem 2rem;
    }

    .main-title {
        font-size: 10vw;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 8vw;
    }
}

@media (min-width: 1400px) {
    .main-title {
        font-size: 6.4vw;
    }
}

/* Hero + Ingredients Wrapper */
.hero-ingredients-wrapper {
    display: block;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 50vh;
    background-color: #f3d6ae;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    overflow: hidden;
}

.hero-image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: contain;
    display: block;
}

/* Tablet and Desktop - hero image */
@media (min-width: 768px) {
    .hero-ingredients-wrapper {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .hero {
        width: 50%;
        height: 100vh;
        padding: 3rem 2rem;
    }

    .hero-image {
        max-width: 95%;
        max-height: 95%;
        object-fit: contain;
    }

    #ingredients {
        width: 50%;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    #ingredients .container {
        width: 100%;
    }
}
/* ==================== ACCORDIONS SECTION ==================== */

.accordion-container {
    max-width: 100%;
    padding: 0;
}

.accordion-item {
    margin-bottom: 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.accordion-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 0.02em;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #555;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

details[open] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Studies List */
.studies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studies-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.studies-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d75527;
    font-weight: 600;
}

.studies-list a {
    color: #2c2c2c;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s ease;
    display: inline-block;
}

.studies-list a:hover {
    color: #d75527;
    text-decoration: underline;
}

/* Recipes List */
.recipes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.recipe-card {
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    border-left: 4px solid #d75527;
    transition: all 0.3s ease;
}

.recipe-card:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.recipe-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.recipe-ingredients {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.recipe-benefits {
    font-size: 0.9rem;
    color: #d75527;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Responsive Accordion Styles */
@media (min-width: 768px) {
    .accordion-title {
        font-size: 1.5rem;
    }

    .accordion-header {
        padding: 1.5rem 2rem;
    }

    .accordion-content {
        padding: 0 2rem 2rem 2rem;
    }

    .recipes-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .studies-list li {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .accordion-item {
        margin-bottom: 2rem;
    }

    .accordion-header {
        padding: 1.75rem 2.5rem;
    }

    .accordion-content {
        padding: 0 2.5rem 2.5rem 2.5rem;
    }
}

.gap {
    gap: 10rem;
}

/* Discount Section */
#discount {
    padding: 4rem 20px;
    text-align: center;
}

.discount-content h2 {
    font-size: 2rem;
    color: #d75527;
    margin-bottom: 1rem;
}

.discount-content p {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 2rem;
}

.discount-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.discount-form input {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

.discount-form .cta-button {
    width: 100%;
}
.promo-image {
    width: 100%;
    margin-bottom: 1rem;
}

/* Section title images - centered in desktop */
.content .promo-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .content .promo-image {
        max-width: 400px;
    }

    .pricing .promo-image {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Pricing section image centering */
.pricing .promo-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Discount section - specific styles */
#discount .discount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    #discount .discount-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    #discount .promo-image {
        max-width: 400px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    #discount .discount-text-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex: 1;
        max-width: 500px;
    }

    #discount .discount-form {
        width: 100%;
    }
}

/* ==================== PRODUCTS SECTION ==================== */

.products-section {
    width: 100%;
    background-color: #f3d6ae;
    padding: 3rem 0;
    position: relative;
}

.products-title {
    text-align: center;
    margin-bottom: 2rem;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3d6ae;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.products-section > * {
    position: relative;
    z-index: 1;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

/* Mobile: 2x2 Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #faead7;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Embossing Tape', 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #2c2c2c;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.upcoming-title {
    font-family: 'Embossing Tape', 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ff6200;
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

/* Product Pricing Options */
.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.option-price {
    font-size: 1.04rem;
    font-weight: 700;
    color: #d75527;
}

.price-unit {
    font-size: 0.7em;
    font-weight: 600;
}

.product-cta-button {
    background-color: #d75527;
    color: #000000;
    padding: 0.3rem 0.6rem;
    border: none;
    border-radius: 4px;
    font-family: 'Embossing Tape', 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-cta-button:hover {
    background-color: #c04517;
    transform: translateY(-2px);
}

.product-cta-button.subscribe {
    background-color: #000000;
    color: #ffffff;
}

.product-cta-button.subscribe:hover {
    background-color: #333333;
}

/* Product Accordion */
.product-accordion {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.3);
}

.product-accordion[open] {
    margin-top: auto;
}

.product-accordion-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
    font-weight: 600;
    color: #d75527;
}

.product-accordion-header::-webkit-details-marker {
    display: none;
}

.product-accordion-header:hover {
    background-color: rgba(215, 85, 39, 0.1);
}

.product-accordion-content {
    padding: 1rem;
    animation: slideDown 0.3s ease-out;
    background-color: rgba(255, 255, 255, 0.2);
}

.product-accordion-content p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    color: #333;
}

.product-accordion-content p:last-child {
    margin-bottom: 0;
}

.product-benefits {
    color: #d75527 !important;
    font-weight: 500;
    font-size: 0.7rem !important;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .products-section {
        padding: 4rem 0;
    }

    .container-full {
        padding: 0 40px;
    }

    .products-grid {
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .option-price {
        font-size: 1.12rem;
    }

    .product-cta-button {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }

    .product-accordion-content p {
        font-size: 0.9rem;
    }

    .product-benefits {
        font-size: 0.85rem !important;
    }
}

/* Featured Product Card - Larger */
.product-card-featured {
    grid-column: 1 / -1;
}

.product-card-featured .product-image {
    height: 400px;
}

.product-card-featured .product-info {
    min-height: auto;
}

.product-card-featured .product-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.product-card-featured .option-price {
    font-size: 1.44rem;
}

.product-card-featured .product-cta-button {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

/* Featured Product Image - Hidden on Mobile */
.product-featured-image {
    display: none;
}

/* Desktop: 4 Cards Horizontal */
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .product-image {
        height: 250px;
    }

    .product-card:not(.product-card-featured) .product-info {
    }

    .product-title {
        font-size: 1.1rem;
    }

    .option-price {
        font-size: 1.2rem;
    }

    .product-cta-button {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
    }

    .product-accordion-header {
        padding: 1rem;
    }

    .product-card-featured {
        grid-column: 1 / 3;
    }

    .product-card-featured .product-image {
        height: 490px;
    }

    .product-card-featured .product-info {
        min-height: auto;
    }

    .product-card-featured .product-title {
        font-size: 1.8rem;
    }

    .product-card-featured .option-price {
        font-size: 1.76rem;
    }

    .product-card-featured .product-cta-button {
        padding: 0.55rem 1.3rem;
        font-size: 0.9rem;
    }

    .product-card-featured .product-accordion-content p {
        font-size: 0.9rem;
    }

    .product-card-featured .product-benefits {
        font-size: 0.85rem !important;
    }

    /* Featured Product Image - Show on Desktop */
    .product-featured-image {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f3d6ae;
        grid-column: 3 / 5;
        padding: 2rem;
    }

    .product-featured-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container-full {
        max-width: 1400px;
        margin: 0 auto;
    }

    .products-grid {
        gap: 2.5rem;
    }

    .product-image {
        height: 280px;
    }
}
