/* 
   Camarão Lucrativo - Premium Gastronomy (Burgundy/Gold)
   Aesthetic: Sophisticated, Exclusive, Wine & Dining
*/

:root {
    /* Palette */
    --color-bg-body: #F6F7F6;
    /* Champagne / Sand (Light Beige) */
    --color-bg-dark: #476173;
    /* Deep Burgundy / Bordeaux */
    --color-bg-card: #FFFFFF;
    /* Clean White for cards */

    --color-primary: #476173;
    /* Azul Petróleo */
    --color-secondary: #D0936E;
    /* Terracota clara */
    --color-secondary-dark: #B57B5A;
    /* Darker Terracotta */
    --color-accent: #A4ADA1;
    /* Verde acinzentado */

    --color-text-main: #476173;
    /* Warm Charcoal */
    --color-text-light: #666666;
    /* Warm Grey */
    --color-text-white: #FDFBF7;
    /* Off-White */

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    /* Clean, humanist sans */
    --font-accent: 'Cormorant Garamond', serif;

    /* Spacing */
    --padding-section: 6rem 1.5rem;
    /* Generous breathing room */
    --max-width: 1100px;
    --border-radius: 4px;
    /* Sophisticated, slightly rounded */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.6;
    font-size: 1.1rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides for Light Theme */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
    /* Orange Headings */
}

p {
    color: var(--color-text-main);
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text-white);
    /* Hero usually dark bg */
}

h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    /* Section titles usually light bg */
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    font-weight: 400;
    font-size: 1.125rem;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Utilities */
.section-padding {
    padding: var(--padding-section);
}

.text-gold {
    color: var(--color-secondary);
}

.font-accent {
    font-family: var(--font-accent);
    font-style: italic;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--color-secondary);
    /* Gold */
    color: #fff;
    font-family: var(--font-heading);
    /* Serif for elegance */
    font-weight: 600;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-secondary);
    border-radius: 2px;
    /* Sharp */
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.price-anchor {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.strike {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 0.5rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* Buttons (Retro Ticket Style) */
/* URGENCY HEADER TOP BAR */
/* URGENCY HEADER TOP BAR */
.urgency-header {
    background-color: #476173;
    /* Azul Petróleo */
    color: #F6F7F6;
    /* Branco acinzentado */
    text-align: center;
    padding: 0.8rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #D0936E;
    /* Terracota border */
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.urgency-header strong {
    color: #D0936E;
    /* Terracota Highlight */
    font-weight: 800;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-bg-dark);
    /* Azul Petróleo */
    padding: 8rem 0 6rem;
    overflow: hidden;
    margin-top: 40px;
    /* Offset for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 97, 115, 0.95), rgba(47, 64, 77, 0.9));
    /* Azul Petróleo Gradient */
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

.badge-premium {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    /* Subtle glass */
    border: 1px solid var(--color-secondary);
    /* Gold Border */
    color: var(--color-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text-white);
    font-weight: 400;
    /* Editorial elegance */
}

.hero h1 .text-gold {
    color: var(--color-secondary);
    /* Gold highlight */
    text-decoration: none;
    font-style: italic;
    font-family: var(--font-accent);
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
}

/* Hero Mobile CTA Control */
.hero-cta-mobile {
    display: none !important;
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero .cta-container {
        align-items: center;
    }

    /* Swap CTAs on Mobile */
    .hero-cta-desktop {
        display: none !important;
    }

    .hero-cta-mobile {
        display: flex !important;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* SECTIONS */
.section-title {
    font-size: 2.5rem;
    /* Increased size */
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
}

/* GALLERY (Clean Premium Grid) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #fff;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-item p.dish-name {
    position: relative;
    /* Reset from absolute */
    background: #fff;
    color: var(--color-text-main);
    padding: 1.5rem;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    /* Prominent size */
    text-align: center;
    transform: none;
    font-weight: 700;
    border-top: 4px solid var(--color-secondary);
    /* Orange accent line */
}

.gallery-item:hover p.dish-name {
    color: var(--color-secondary);
}



/* Problem Section */
.problem {
    background-color: #fff;
}

.problem p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.problem .impact-text {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 2rem;
    border-left: 4px solid var(--color-secondary);
    padding-left: 1.5rem;
    text-align: left;
}

/* BENEFITS (Minimalist Luxury) */
.benefits {
    background-color: var(--color-bg-body);
    /* Subtle off-white */
    border: none;
}

.benefits h2 {
    color: var(--color-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: left;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft, modern shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-card .icon {
    font-size: 2rem;
    color: var(--color-secondary);
    background: transparent;
    width: auto;
    height: auto;
    line-height: normal;
    border-radius: 0;
    margin: 0 0 1.5rem 0;
    display: inline-block;
}

.benefit-card h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* COURSE MODULES (Elegant List) */
.course-intro {
    background-color: #fff;
    border-bottom: 1px solid var(--color-accent);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius);
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.module-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
}

.module-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-list li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
    color: var(--color-text-light);
}

.recipe-list li::before {
    content: '•';
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    /* Larger bullet */
    line-height: 1;
    top: -2px;
}

/* PROFITABILITY SECTION (Gold/Premium Block) */
.profitability {
    background-color: var(--color-primary);
    /* Dark block */
    color: #fff;
    clip-path: none;
    margin: 0;
    padding: var(--padding-section);
}

.profitability .container {
    max-width: 900px;
}

.profitability h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: none;
}

.profit-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.profit-box::before {
    content: none;
}

.profit-message {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.4;
    color: var(--color-secondary);
}

.profit-message strong {
    color: #fff;
    font-weight: 600;
}

/* OFFER SECTION (Premium Petrol Card) */
.offer {
    background-image: none;
    background-color: var(--color-bg-body);
    padding: 8rem 0;
}

.offer-card {
    border: none;
    padding: 5rem 3rem;
    text-align: center;
    background: #476173;
    /* Azul Petróleo */
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(71, 97, 115, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    border-top: 6px solid var(--color-secondary);
    /* Terracota Top Border */
}

.offer-card::before {
    content: none;
}

.offer-header h3 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.offer-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.pricing .new-price {
    font-size: 4.5rem;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
    display: block;
    margin: 1.5rem 0 0.5rem;
    font-weight: 500;
}

.installment {
    color: var(--color-secondary);
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    margin-bottom: 2.5rem;
}

/* Urgency Alert Styles (Reference Match) */
.urgency-alert {
    background-color: rgba(80, 0, 0, 0.6);
    /* Darker bed for contrast */
    color: #FFB7B2;
    /* Light Red/Pink text */
    border: 1px solid #9B2C2C;
    /* Red Border */
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.offer-features {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.offer-features li {
    font-size: 1.25rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.offer-features li::first-letter {
    color: var(--color-secondary);
    font-weight: 400;
    font-size: 1.25rem;
}

/* Ebook Section Styles & iPad Mockup */

/* Ebook Section Styles & iPad Mockup */

/* Ebook Section Styles - Burgundy Updates */

.ebook-offer {
    background-color: var(--color-bg-dark);
    /* Burgundy to match Footer area */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6rem 0;
}

.ebook-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.ebook-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
}

.ebook-content-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.ebook-details {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

/* Override shared class for ebook clarity */
.ebook-offer .offer-features li {
    color: rgba(255, 255, 255, 0.9);
    /* White text */
    justify-content: center;
    /* Center align for dramatic effect */
    padding-left: 0;
    color: #fff;
}

.price-box {
    margin: 2rem 0;
}

.price-box p:first-child {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: #fff;
}

.ebook-price {
    font-size: 4rem;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

/* iPad Mockup CSS */
.ipad-mockup {
    width: 300px;
    height: 400px;
    background: #333;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 2px solid #444;
}

.ipad-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simulated eBook Cover inside iPad */
.ebook-cover-preview {
    background: var(--color-secondary);
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-image: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.ebook-cover-preview h4 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: #fff;
}

.ebook-cover-preview h5 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #fff;
}

.ebook-cover-preview p {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.filet-ebook-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.ebook-price,
.filet-ebook-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

/* FAQ */
.faq-item {
    border: 2px solid var(--color-chocolate);
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    background-color: var(--color-cream);
    color: var(--color-chocolate);
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #eaddcf;
    /* Slightly darker cream on hover */
}

/* Active state for potential JS toggle (future proofing) or just visual separation */
.faq-item.active .faq-question {
    border-bottom: 1px solid var(--color-chocolate);
    background-color: var(--color-terracotta);
    color: #fff;
}

.faq-answer {
    padding: 1.5rem;
    color: #555;
    line-height: 1.6;
}

/* FOOTER */
footer {
    background: var(--color-chocolate);
    color: var(--color-cream);
    padding: 4rem 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* RESPONSIVE */
/* SWIPER STYLES */
.swiper {
    width: 100%;
    padding-bottom: 40px !important;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 280px;
    /* Fixed width for better carousel feel */
    height: auto;
    border-radius: 8px;
    /* Smooth corners */
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-secondary) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary) !important;
}



/* Demo Section Styles */
.demo-section {
    background-color: #fff;
    color: var(--color-text-main);
    border-top: 1px solid var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
}

.demo-section .section-title {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.demo-benefits {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    list-style: none;
    padding: 0;
}

.demo-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.demo-benefits li i {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-right: 1.2rem;
    margin-top: 2px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: -1rem auto 3rem auto;
    border-radius: 2px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: none;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.demo-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Customer Feedback */
.customer-feedback {
    background-color: var(--color-bg-body);
}

/* FOOTER */
footer {
    background: var(--color-primary);
    /* Burgundy */
    color: #ffffff;
    /* Explicit White */
    padding: 6rem 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border-top: 4px solid var(--color-secondary);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        /* Even smaller for mobile */
        padding: 0;
        margin-bottom: 2rem;
    }

    .section-title::before,
    .section-title::after {
        display: none;
        /* Ensure lines are gone on mobile */
    }

    .hero h1 {
        font-size: 2rem;
        /* Much smaller mobile title */
    }

    .container {
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }

    .pricing .new-price {
        font-size: 3rem;
    }

    /* Gallery Mobile 2 Columns */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        /* consistent unit */
        padding: 0;
    }

    .gallery-item {
        padding: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transform: none !important;
        /* Force no rotation */
    }

    .gallery-item img {
        height: 140px;
        border-radius: 4px;
    }

    /* Reset interactions for mobile */
    .gallery-item:hover {
        transform: none;
    }

    .gallery-item p.dish-name {
        transform: translateY(0);
        background: #fff;
        /* Solid background for mobile legibility */
        padding-top: 1rem;
        color: var(--color-text-main);
    }

    .gallery-item:nth-child(odd),
    .gallery-item:nth-child(even) {
        transform: none;
    }

    /* Center alignment fixes */
    .text-center-mobile {
        text-align: center;
    }

    .hero-content,
    .offer-card {
        padding: 1.5rem;
    }

    .video-container {
        transform: none;
        margin-bottom: 2rem;
    }

    /* Carousel Adjustment for Mobile */
    .swiper-slide {
        width: 80%;
        /* Show one main slide with peek at others */
    }
}