/* ====================================
   RECEITAS ANTI-INFLAMATÓRIAS
   Landing Page Styles
   ==================================== */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FDF8F3;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-red {
    color: #C41E3A;
}

.text-yellow {
    color: #D4A017;
}

.text-muted {
    color: #888;
    font-weight: 400;
}

.highlight {
    color: #C41E3A;
}

/* ====================================
   PROMO BANNER
   ==================================== */
.promo-banner {
    background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.promo-banner p {
    font-size: 14px;
    line-height: 1.4;
}

.promo-banner strong {
    font-size: 15px;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    background: linear-gradient(180deg, #FDF8F3 0%, #F5EBE0 100%);
    padding: 40px 0 50px;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #333;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Badges */
.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.badge {
    background: #FFF8E7;
    border: 2px solid #E8D5B5;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.checkmark {
    color: #4CAF50;
    font-weight: bold;
}

/* Hero Image */
.hero-image {
    margin: 30px auto;
    max-width: 350px;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features Row */
.features-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    font-size: 28px;
    background: #FFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* ====================================
   CTA BUTTON
   ==================================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.5);
}

.cta-button.big {
    font-size: 20px;
    padding: 22px 60px;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(196, 30, 58, 0.6), 0 0 0 10px rgba(196, 30, 58, 0.1);
    }

    100% {
        box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    }
}

/* ====================================
   SECTION TITLES
   ==================================== */
.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #333;
}

.section-title.big-title {
    font-size: 32px;
}

/* ====================================
   RECIPES SECTION
   ==================================== */
.recipes-section {
    padding: 50px 0;
    text-align: center;
    background: #FDF8F3;
}

.recipe-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding: 10px 0;
}

.recipe-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F5DEB3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-img:hover {
    transform: scale(1.1);
}

.recipes-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #555;
}

/* Benefits List */
.benefits-list {
    text-align: left;
    max-width: 320px;
    margin: 0 auto 35px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #FFF;
    border-radius: 15px;
    border-left: 4px solid #D4A017;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-text strong {
    font-size: 16px;
    color: #333;
}

/* ====================================
   AUTHOR SECTION
   ==================================== */
.author-section {
    padding: 50px 0;
    background: #FFF;
    text-align: center;
}

.author-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #FDF8F3;
    border-radius: 15px;
    border: 2px dashed #E8D5B5;
}

.author-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #D4A017;
}

.author-intro p {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.instagram-handle {
    color: #333;
    font-weight: 600;
}

.instagram-preview {
    max-width: 350px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.instagram-img {
    width: 100%;
    height: auto;
}

/* Instagram Mock */
.instagram-mock {
    background: #FFF;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.insta-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #D4A017;
    object-fit: cover;
}

.insta-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.insta-name {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.insta-verified {
    background: #3897f0;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.instagram-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.instagram-stats .stat {
    text-align: center;
}

.instagram-stats .stat strong {
    display: block;
    font-size: 18px;
    color: #333;
}

.instagram-stats .stat span {
    font-size: 12px;
    color: #888;
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */
.testimonials-section {
    padding: 50px 0;
    background: #FDF8F3;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.testimonials-list {
    text-align: left;
}

.testimonial-item {
    background: #FFF;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E8D5B5 0%, #D4A017 100%);
    flex-shrink: 0;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
}

.testimonial-user strong {
    font-size: 14px;
    color: #333;
}

.testimonial-user .time {
    font-size: 12px;
    color: #888;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* ====================================
   DELIVERY SECTION
   ==================================== */
.delivery-section {
    padding: 50px 0;
    background: #FFF;
    text-align: center;
}

.delivery-box {
    background: #FDF8F3;
    border: 2px solid #E8D5B5;
    border-radius: 20px;
    padding: 25px 30px;
    max-width: 350px;
    margin: 0 auto;
}

.delivery-box p {
    font-size: 16px;
    line-height: 1.6;
}

.email-icon,
.whatsapp-icon {
    font-size: 18px;
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq-section {
    padding: 50px 0;
    background: #FDF8F3;
    text-align: center;
}

.faq-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.faq-list {
    max-width: 380px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    background: linear-gradient(135deg, #F5DEB3 0%, #E8D5B5 100%);
    padding: 18px 20px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    text-align: left;
}

.faq-answer {
    background: #FFF;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: left;
}

.faq-answer strong {
    color: #C41E3A;
}

/* ====================================
   BENEFITS SECTION
   ==================================== */
.benefits-section {
    padding: 60px 0;
    background: #FDF8F3;
    text-align: center;
}

.benefits-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.benefits-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* ====================================
   GUARANTEE SECTION
   ==================================== */
.guarantee-section {
    padding: 50px 0;
    background: #FFF;
    text-align: center;
}

.guarantee-box {
    background: #FDF8F3;
    border: 2px solid #D4A017;
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 350px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    animation: shine 3s infinite;
}

/* Guarantee Badge CSS */
.guarantee-badge-container {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.5);
    border: 4px solid #B8860B;
    animation: shine 3s infinite;
    position: relative;
}

.guarantee-badge-container::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 2px dashed #B8860B;
}

.guarantee-icon {
    font-size: 24px;
    margin-bottom: 2px;
}

.guarantee-days {
    font-size: 36px;
    font-weight: 800;
    color: #8B4513;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.guarantee-days span {
    font-size: 12px;
    font-weight: 700;
    margin-left: 2px;
}

.guarantee-label {
    font-size: 10px;
    font-weight: 700;
    color: #8B4513;
    letter-spacing: 1px;
}

@keyframes shine {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.guarantee-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ====================================
   AUTHOR BIO SECTION
   ==================================== */
.author-bio-section {
    padding: 50px 0;
    background: #FDF8F3;
    text-align: center;
}

.author-card {
    background: #FFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 380px;
    margin: 0 auto;
}

.author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #D4A017;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(212, 160, 23, 0.3);
}

.author-bio p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #FDF8F3 0%, #F5EBE0 100%);
    text-align: center;
}

.pricing-box {
    background: #FFF;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #E8D5B5;
}

.original-price {
    font-size: 16px;
    color: #888;
    margin-bottom: 5px;
}

.original-price s {
    color: #999;
}

.discount-text {
    display: inline-block;
    background: linear-gradient(135deg, #C41E3A 0%, #8B0000 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.final-price {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.final-price strong {
    font-size: 36px;
    color: #2E7D32;
}

.payment-info {
    font-size: 13px;
    color: #888;
}

.secure-purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.secure-icon {
    font-size: 18px;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: #333;
    color: #FFF;
    padding: 40px 0;
    text-align: center;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #D4A017;
}

.footer-copy {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #AAA;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4A017;
}

/* ====================================
   RESPONSIVE - MOBILE (Extra Small)
   ==================================== */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .badges {
        gap: 6px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .hero-image {
        max-width: 280px;
    }

    .features-row {
        gap: 25px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .feature-item span {
        font-size: 12px;
    }

    .cta-button {
        font-size: 14px;
        padding: 15px 30px;
    }

    .cta-button.big {
        font-size: 16px;
        padding: 18px 35px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title.big-title {
        font-size: 26px;
    }

    .recipe-img {
        width: 80px;
        height: 80px;
    }

    .recipes-description {
        font-size: 15px;
    }

    .benefit-item {
        padding: 12px;
    }

    .benefit-text strong {
        font-size: 14px;
    }

    .author-intro {
        flex-direction: column;
        text-align: center;
    }

    .author-intro p {
        text-align: center;
    }

    .instagram-stats {
        gap: 15px;
    }

    .instagram-stats .stat strong {
        font-size: 16px;
    }

    .testimonial-item {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .faq-question {
        font-size: 13px;
        padding: 14px 15px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 14px 15px;
    }

    .guarantee-badge-container {
        width: 100px;
        height: 100px;
    }

    .guarantee-days {
        font-size: 30px;
    }

    .final-price strong {
        font-size: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ====================================
   RESPONSIVE - MOBILE (Small)
   ==================================== */
@media (max-width: 480px) {
    .promo-banner p {
        font-size: 12px;
    }

    .promo-banner strong {
        font-size: 13px;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .badges {
        gap: 8px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-image {
        max-width: 300px;
        margin: 20px auto;
    }

    .features-row {
        gap: 30px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .feature-item span {
        font-size: 13px;
    }

    .cta-button {
        font-size: 15px;
        padding: 16px 35px;
        width: calc(100% - 40px);
        max-width: 320px;
    }

    .cta-button.big {
        font-size: 17px;
        padding: 18px 40px;
    }

    .section-title {
        font-size: 26px;
        padding: 0 10px;
    }

    .section-title.big-title {
        font-size: 28px;
    }

    .recipes-section,
    .author-section,
    .testimonials-section,
    .delivery-section,
    .faq-section,
    .benefits-section,
    .guarantee-section,
    .author-bio-section,
    .cta-section {
        padding: 40px 0;
    }

    .recipe-img {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }

    .recipe-images {
        gap: 10px;
    }

    .recipes-description {
        font-size: 16px;
        padding: 0 10px;
    }

    .benefits-list {
        max-width: 100%;
    }

    .benefit-item {
        padding: 14px;
        gap: 12px;
    }

    .benefit-text strong {
        font-size: 15px;
    }

    .author-intro {
        padding: 15px;
        gap: 12px;
    }

    .author-avatar-small {
        width: 45px;
        height: 45px;
    }

    .author-intro p {
        font-size: 13px;
    }

    .instagram-preview {
        max-width: 100%;
    }

    .insta-avatar {
        width: 50px;
        height: 50px;
    }

    .insta-name {
        font-size: 14px;
    }

    .instagram-stats {
        gap: 20px;
    }

    .instagram-stats .stat strong {
        font-size: 16px;
    }

    .instagram-stats .stat span {
        font-size: 11px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-item {
        padding: 16px;
    }

    .avatar-placeholder {
        width: 35px;
        height: 35px;
    }

    .testimonial-user strong {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .delivery-box {
        padding: 20px;
        max-width: 100%;
    }

    .delivery-box p {
        font-size: 15px;
    }

    .faq-list {
        max-width: 100%;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 18px;
    }

    .faq-answer {
        font-size: 13px;
        padding: 15px 18px;
    }

    .benefits-text {
        font-size: 15px;
    }

    .benefits-highlight {
        font-size: 16px;
    }

    .guarantee-box {
        padding: 25px 20px;
        max-width: 100%;
    }

    .guarantee-badge-container {
        width: 110px;
        height: 110px;
    }

    .guarantee-days {
        font-size: 32px;
    }

    .guarantee-box p {
        font-size: 14px;
    }

    .author-card {
        padding: 25px 20px;
        max-width: 100%;
    }

    .author-photo {
        width: 100px;
        height: 100px;
    }

    .author-bio p {
        font-size: 13px;
    }

    .pricing-box {
        padding: 25px 20px;
        max-width: 100%;
    }

    .original-price {
        font-size: 15px;
    }

    .discount-text {
        font-size: 13px;
    }

    .final-price {
        font-size: 20px;
    }

    .final-price strong {
        font-size: 34px;
    }

    .payment-info {
        font-size: 12px;
    }

    .secure-purchase {
        font-size: 13px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-brand {
        font-size: 18px;
    }

    .footer-copy {
        font-size: 12px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }
}

/* ====================================
   RESPONSIVE - TABLET
   ==================================== */
@media (min-width: 768px) {
    .container {
        max-width: 680px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .badges {
        gap: 15px;
    }

    .badge {
        font-size: 16px;
        padding: 10px 20px;
    }

    .hero-image {
        max-width: 450px;
    }

    .features-row {
        gap: 80px;
    }

    .feature-icon {
        font-size: 32px;
        width: 60px;
        height: 60px;
    }

    .feature-item span {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title.big-title {
        font-size: 42px;
    }

    .recipe-img {
        width: 130px;
        height: 130px;
    }

    .benefits-list {
        max-width: 450px;
    }

    .testimonials-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-item {
        margin-bottom: 0;
    }

    .faq-list {
        max-width: 500px;
    }

    .author-card {
        max-width: 500px;
    }

    .cta-button.big {
        font-size: 22px;
        padding: 25px 70px;
    }
}

/* ====================================
   RESPONSIVE - DESKTOP
   ==================================== */
@media (min-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .hero-title {
        font-size: 62px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-image {
        max-width: 500px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-title.big-title {
        font-size: 50px;
    }

    .recipe-images {
        gap: 25px;
    }

    .recipe-img {
        width: 150px;
        height: 150px;
    }

    .benefits-list {
        max-width: 600px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-item {
        margin-bottom: 0;
    }

    .testimonials-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-list {
        max-width: 700px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-item {
        margin-bottom: 0;
    }

    .author-card {
        max-width: 700px;
        display: flex;
        align-items: center;
        gap: 40px;
        text-align: left;
    }

    .author-photo {
        margin-bottom: 0;
        width: 150px;
        height: 150px;
    }

    .pricing-box {
        max-width: 400px;
    }

    .footer-links {
        gap: 30px;
    }
}

/* ====================================
   ANIMATIONS & EFFECTS
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.recipes-section,
.author-section,
.testimonials-section,
.delivery-section,
.faq-section,
.benefits-section,
.guarantee-section,
.author-bio-section,
.cta-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 60px;
}

/* Selection color */
::selection {
    background: #D4A017;
    color: white;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5EBE0;
}

::-webkit-scrollbar-thumb {
    background: #D4A017;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C49515;
}