


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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fafafa;
    color: #333;
}


/* ===== SUBHEADER / ANNOUNCEMENT BAR ===== */
.subheader {
    background: linear-gradient(90deg, #CC1020 0%, #E8192C 50%, #CC1020 100%);
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    max-height: 50px;
    opacity: 1;
}

.subheader.hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.subheader-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.55rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

/* Offer Ticker */
.offer-ticker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.ticker-label {
    background: rgba(255,255,255,0.25);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.78rem;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.ticker-track {
    position: relative;
    overflow: hidden;
    flex: 1;
    height: 1.4em;
}

.ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ticker-item.active {
    opacity: 1;
    transform: translateY(0);
}

.ticker-item.exit {
    opacity: 0;
    transform: translateY(-100%);
}

/* Distributor Button */
.distributor-btn {
    background: white;
    color: #CC1020;
    padding: 0.38rem 1.1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.distributor-btn:hover {
    background: #fff0f1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}






/* Navbar */
header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #CC1020;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #CC1020;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #CC1020;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.order-btn {
    background: #CC1020;
    color: white;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(204, 16, 32, 0.3);
}

.order-btn:hover {
    background: #A80D19;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(204, 16, 32, 0.4);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-overlay.active {
    opacity: 1;
}



/* Hero Section */
.hero {
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.hero-text h1 {
    font-size: 3.2rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 900;
}

.hero-text h1 .highlight {
    color: #CC1020;
}

.hero-text p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #fff0f1;
    color: #CC1020;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-main {
    background: #CC1020;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(204, 16, 32, 0.3);
}

.btn-main:hover {
    background: #A80D19;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(204, 16, 32, 0.4);
}

.btn-secondary {
    background: white;
    color: #CC1020;
    padding: 1rem 2.5rem;
    border: 2px solid #CC1020;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff0f1;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.momo-image {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    box-shadow: 0 15px 40px rgba(204, 16, 32, 0.15);
    animation: float 3s ease-in-out infinite;
}

.momo-image img{
    width: 350px;
    height: 350px;
    border-radius: 10%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section 2 - Products */
.products-section {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.section-header h2 .highlight {
    color: #CC1020;
}

.section-header p {
    color: #999;
    font-size: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(204, 16, 32, 0.2);
}

.product-img {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

.product-card:hover .product-img {
    background: linear-gradient(135deg, #ffe8ea 0%, #ffd4d7 100%);
}

.product-info {
    padding: 1.8rem;
}

.product-badge {
    display: inline-block;
    background: #fff0f1;
    color: #CC1020;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.product-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.nutrition-info {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: #666;
}

.nutrition-info strong {
    color: #CC1020;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #CC1020;
}

.add-btn {
    width: 50px;
    height: 50px;
    background: #CC1020;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(204, 16, 32, 0.3);
    font-weight: bold;
}

.add-btn:hover {
    background: #A80D19;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(204, 16, 32, 0.4);
}

 /* Flavor Variants Section */
 .flavors {
    padding: 80px 50px;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #000;
    font-weight: bold;
}

.flavor-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.flavor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.flavor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.flavor-header {
    padding: 40px 20px;
    text-align: center;
    color: white;
    font-weight: bold;
}

.flavor-header.yellow {
    background: linear-gradient(135deg, #FFE066 0%, #FFD43B 100%);
    color: #000;
}

.flavor-header.green {
    background: linear-gradient(135deg, #51CF66 0%, #37B24D 100%);
}

.flavor-header.red {
    background: linear-gradient(135deg, #CC1020 0%, #E8192C 100%);
}

.flavor-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.flavor-body {
    padding: 30px;
}

.flavor-body h4 {
    color: #CC1020;
    margin-bottom: 15px;
    font-size: 18px;
}

.flavor-body p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.flavor-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.flavor-body li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.flavor-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #CC1020;
    font-weight: bold;
}

/* Section 3 - Why Us */
.why-us {
    background: #fff5f5;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.why-us-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.why-item {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(204, 16, 32, 0.12);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.why-item p {
    color: #777;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section 4 - How to Cook */
.cooking-guide {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.cooking-method {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    border-left: 4px solid #CC1020;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.cooking-method:hover {
    box-shadow: 0 8px 20px rgba(204, 16, 32, 0.12);
}

.cooking-title {
    font-size: 1.4rem;
    color: #CC1020;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cooking-steps {
    list-style: none;
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.cooking-steps li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.cooking-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #CC1020;
    font-weight: bold;
}

/* Section 5 - Testimonials */
.testimonials {
    background: #fff5f5;
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(204, 16, 32, 0.12);
}

.stars {
    color: #CC1020;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

/* Section 6 - CTA */
.cta-section {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #CC1020 0%, #E8192C 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(204, 16, 32, 0.3);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-btn {
    background: white;
    color: #CC1020;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: #f5f5f5;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid #eee;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #CC1020;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #CC1020;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: black;
    font-size: 0.9rem;
    font-weight: bold;
}

.footer-bottom p a {
    color: #999;
    text-decoration: none;
    color: black;
    font-weight: bold;
}


/* Hero Banner - About Page */
.mx-about-hero {
    background: linear-gradient(135deg, #CC1020 0%, #E8192C 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.mx-about-hero::before {
    content: '🥟';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: mx-float 3s ease-in-out infinite;
}

@keyframes mx-float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.mx-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mx-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.mx-about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.mx-about-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
}

/* Story Section */
.mx-story-section {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mx-story-image {
    position: relative;
}

.mx-img-main {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8ea 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    box-shadow: 0 15px 40px rgba(204, 16, 32, 0.15);
    transition: all 0.4s;
}

.mx-img-main img {
        width: 100%;
    height: 500px;
    border-radius: 3%;
}

.mx-img-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(204, 16, 32, 0.25);
}

.mx-img-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.mx-img-badge h3 {
    font-size: 2rem;
    color: #CC1020;
    margin-bottom: 0.3rem;
}

.mx-img-badge p {
    font-size: 0.9rem;
    color: #666;
}

.mx-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.mx-story-content h2 .mx-highlight {
    color: #CC1020;
}

.mx-story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.mx-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.mx-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff5f5;
    border-radius: 12px;
    transition: all 0.3s;
}

.mx-stat-item:hover {
    background: #fff0f1;
    transform: translateY(-5px);
}

.mx-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #CC1020;
    margin-bottom: 0.5rem;
}

.mx-stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Values Section */
.mx-values-section {
    background: #fff5f5;
    padding: 5rem 2rem;
}

.mx-values-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.mx-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.mx-section-header h2 .mx-highlight {
    color: #CC1020;
}

.mx-section-header p {
    font-size: 1.05rem;
    color: #666;
}

.mx-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mx-value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mx-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #CC1020, #E8192C);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.mx-value-card:hover::before {
    transform: scaleX(1);
}

.mx-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(204, 16, 32, 0.2);
}

.mx-value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s;
}

.mx-value-card:hover .mx-value-icon {
    transform: scale(1.1) rotate(5deg);
}

.mx-value-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mx-value-card p {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
}

/* Team Section */
.mx-team-section {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.mx-team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.mx-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(204, 16, 32, 0.2);
}

.mx-team-img {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    transition: all 0.4s;
}

.mx-team-card:hover .mx-team-img {
    background: linear-gradient(135deg, #ffe8ea 0%, #ffd4d7 100%);
}

.mx-team-info {
    padding: 2rem;
    text-align: center;
}

.mx-team-info h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.mx-team-role {
    color: #CC1020;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mx-team-info p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Process Section */
.mx-process-section {
    background: white;
    padding: 5rem 2rem;
}

.mx-process-container {
    max-width: 1300px;
    margin: 0 auto;
}

.mx-process-timeline {
    position: relative;
    margin-top: 3rem;
}

.mx-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #CC1020, #E8192C);
    transform: translateX(-50%);
}

.mx-timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.mx-timeline-item:nth-child(even) .mx-timeline-content {
    order: 2;
}

.mx-timeline-item:nth-child(even) .mx-timeline-number {
    order: 1;
}

.mx-timeline-content {
    background: #fff5f5;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
}

.mx-timeline-content:hover {
    transform: translateX(-10px);
    box-shadow: 0 8px 25px rgba(204, 16, 32, 0.15);
}

.mx-timeline-item:nth-child(even) .mx-timeline-content:hover {
    transform: translateX(10px);
}

.mx-timeline-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mx-timeline-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.mx-timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mx-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #CC1020, #E8192C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 20px rgba(204, 16, 32, 0.3);
    position: relative;
    z-index: 2;
}

/* CTA Section */
.mx-cta-section {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #CC1020 0%, #E8192C 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(204, 16, 32, 0.3);
}

.mx-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.mx-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.mx-cta-btn {
    background: white;
    color: #CC1020;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mx-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* ===== PRODUCTS PAGE ===== */

:root {
    --pm-primary: #CC1020;
    --pm-light: #E8192C;
    --pm-paneer: #FFE066;
    --pm-veg: #51CF66;
    --pm-chicken: #CC1020;
    --pm-dark: #1a1a1a;
    --pm-gray: #666;
    --pm-bg: #fafafa;
    --pm-white: #ffffff;
}

/* Hero Section */
.pm-hero {
    background: linear-gradient(135deg, var(--pm-primary) 0%, var(--pm-light) 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: pm-hero-fade 0.8s ease-out;
}

@keyframes pm-hero-fade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pm-hero::before {
    content: '🥟';
    position: absolute;
    font-size: 12rem;
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pm-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pm-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.pm-hero p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Products Section */
.pm-products-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2.5rem 0rem;
}

.pm-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 0;
}

/* Product Card */
.pm-card {
    background: var(--pm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pm-card-pop 0.5s ease-out;
    position: relative;
}

@keyframes pm-card-pop {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pm-products-grid .pm-card:nth-child(1) { animation-delay: 0.1s; }
.pm-products-grid .pm-card:nth-child(2) { animation-delay: 0.15s; }
.pm-products-grid .pm-card:nth-child(3) { animation-delay: 0.2s; }

.pm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(204, 16, 32, 0.2);
}

.pm-card-top {
    background: var(--pm-primary);
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.pm-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.pm-card-paneer .pm-card-top { background: var(--pm-paneer); }
.pm-card-veg .pm-card-top { background: var(--pm-veg); }
.pm-card-chicken .pm-card-top { background: var(--pm-chicken); }

/* Card Header */
.pm-card-head {
    padding: 1.2rem 1.4rem 0.8rem;
}

.pm-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.3rem 0.8rem;
    border-radius: 14px;
    margin-bottom: 0.6rem;
}

.pm-badge-veg { background: #d3f9d8; color: #2f5233; }
.pm-badge-nv { background: #ffe0e0; color: #7a2020; }

.pm-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pm-dark);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.pm-subtitle {
    font-size: 0.8rem;
    color: var(--pm-primary);
    font-weight: 600;
}

/* Card Body */
.pm-card-body {
    padding: 0.8rem 1.4rem;
}

.pm-desc {
    font-size: 0.85rem;
    color: var(--pm-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.pm-items {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 9px;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
}

.pm-items-label {
    font-weight: 700;
    color: var(--pm-gray);
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pm-items-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.8rem;
}

.pm-items-list li {
    color: var(--pm-gray);
    font-size: 0.75rem;
    display: flex;
    gap: 0.3rem;
}

.pm-items-list li::before {
    content: '•';
    color: var(--pm-primary);
    font-weight: bold;
    flex-shrink: 0;
}

.pm-kcal {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.pm-kcal-paneer { color: var(--pm-paneer); }
.pm-kcal-veg { color: var(--pm-veg); }
.pm-kcal-chicken { color: var(--pm-chicken); }

/* Card Footer */
.pm-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.pm-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pm-primary);
    line-height: 1;
}

.pm-unit {
    font-size: 0.65rem;
    color: #999;
    margin-top: 0.1rem;
}

.pm-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--pm-primary), var(--pm-light));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(204, 16, 32, 0.3);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pm-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.pm-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(204, 16, 32, 0.35);
}

.pm-btn:hover::after {
    width: 60px;
    height: 60px;
}

.pm-btn:active {
    transform: scale(0.95);
}

/* Why Section */
.pm-why {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8ea 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.pm-why-title {
    text-align: center;
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pm-dark);
}

.pm-why-title .pm-hl {
    color: var(--pm-primary);
}

.pm-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.pm-why-item {
    background: var(--pm-white);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pm-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(204, 16, 32, 0.12);
}

.pm-why-emoji {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: inline-block;
    transition: transform 0.3s;
}

.pm-why-item:hover .pm-why-emoji {
    transform: scale(1.15);
}

.pm-why-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--pm-dark);
    margin-bottom: 0.3rem;
}

.pm-why-desc {
    font-size: 0.75rem;
    color: var(--pm-gray);
    line-height: 1.4;
}

/* CTA */
.pm-cta {
    background: linear-gradient(135deg, var(--pm-primary) 0%, var(--pm-light) 100%);
    padding: 2.2rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(204, 16, 32, 0.2);
    animation: pm-cta-rise 0.6s ease-out 0.3s both;
}

@keyframes pm-cta-rise {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pm-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.pm-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
    opacity: 0.95;
    line-height: 1.5;
}

.pm-cta-btn {
    background: var(--pm-white);
    color: var(--pm-primary);
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.pm-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

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



/* ===================================================
   MOMOS-X — RESPONSIVE CSS ONLY
   Breakpoints: 768px (tablet), 480px (mobile)
=================================================== */

/* ===== TABLET (max-width: 768px) ===== */
@media (max-width: 768px) {

    /* --- Subheader --- */
    .subheader-inner {
        padding: 0.5rem 1rem;
        gap: 0.6rem;
    }

    .ticker-label {
        display: none;
    }

    .distributor-btn {
        font-size: 0.75rem;
        padding: 0.32rem 0.75rem;
    }

    /* --- Navbar --- */
    .hamburger {
        display: flex;
    }

    .nav-overlay {
        display: block;
        pointer-events: none;
    }

    .nav-overlay.active {
        pointer-events: all;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 5rem 2rem 2rem;
        z-index: 1050;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 1.5rem;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.05rem;
    }

    .nav-links a::after {
        display: none;
    }

    .order-btn {
        width: 100%;
        padding: 0.9rem;
        border-radius: 25px;
    }

    /* --- Hero --- */
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
        min-height: auto;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .momo-image {
        width: 260px;
        height: 260px;
        font-size: 7rem;
    }

    .momo-image img {
        width: 260px;
        height: 260px;
    }

    /* --- Section Headers --- */
    .section-header h2 {
        font-size: 2rem;
    }

    /* --- Products Grid --- */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* --- Flavor Cards --- */
    .flavors {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .flavor-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* --- Why Us --- */
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    /* --- Cooking Guide --- */
    .cooking-grid {
        grid-template-columns: 1fr;
    }

    /* --- Testimonials --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* --- CTA Section --- */
    .cta-section {
        padding: 3rem 1.5rem;
        margin: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* ---- About Page ---- */
    .mx-about-hero {
        padding: 3rem 1.5rem;
    }

    .mx-about-hero h1 {
        font-size: 2rem;
    }

    .mx-story-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem auto;
    }

    .mx-img-main {
        height: 280px;
        font-size: 7rem;
    }

    .mx-img-badge {
        bottom: -15px;
        right: 10px;
        padding: 1rem;
    }

    .mx-img-badge h3 {
        font-size: 1.5rem;
    }

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

    .mx-story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .mx-stat-number {
        font-size: 1.5rem;
    }

    .mx-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mx-team-grid {
        grid-template-columns: 1fr;
    }

    .mx-timeline-line {
        display: none;
    }

    .mx-timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mx-timeline-item:nth-child(even) .mx-timeline-content {
        order: unset;
    }

    .mx-timeline-item:nth-child(even) .mx-timeline-number {
        order: unset;
    }

    .mx-timeline-content:hover {
        transform: none;
    }

    .mx-timeline-item:nth-child(even) .mx-timeline-content:hover {
        transform: none;
    }

    .mx-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mx-cta-section {
        margin: 3rem 1rem;
        padding: 3rem 1.5rem;
    }

    .mx-cta-section h2 {
        font-size: 1.8rem;
    }

    /* ---- Products Page ---- */
    .pm-hero h1 {
        font-size: 1.9rem;
    }

    .pm-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pm-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .pm-cta h2 {
        font-size: 1.5rem;
    }
}


/* ===== MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {

    /* --- Subheader --- */
    .subheader-inner {
        padding: 0.45rem 0.75rem;
    }

    /* --- Navbar --- */
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    /* --- Hero --- */
    .hero {
        padding: 2.5rem 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.5rem 0.9rem;
    }

    .momo-image {
        width: 220px;
        height: 220px;
        font-size: 5.5rem;
    }

    .momo-image img {
        width: 220px;
        height: 220px;
    }

    /* --- Section Headers --- */
    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .mx-img-main img{
        height: 300px;
    }

    /* --- Products Section --- */
    .products-section {
        margin: 3rem auto;
        padding: 0 1rem;
    }

    .product-img {
        height: 200px;
    }

    .product-name {
        font-size: 1.3rem;
    }

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

    /* --- Flavors --- */
    .flavors {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .flavor-header h3 {
        font-size: 26px;
    }

    /* --- Why Us --- */
    .why-us {
        padding: 3rem 1rem;
        margin: 3rem 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-icon {
        font-size: 2.5rem;
    }

    /* --- Cooking Guide --- */
    .cooking-guide {
        padding: 0 1rem;
        margin: 3rem auto;
    }

    .cooking-title {
        font-size: 1.2rem;
    }

    /* --- Testimonials --- */
    .testimonials {
        padding: 3rem 1rem;
    }

    /* --- CTA --- */
    .cta-section {
        padding: 2.5rem 1rem;
        margin: 2rem 0.75rem;
        border-radius: 16px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }

    /* --- Footer --- */
    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* ---- About Page ---- */
    .mx-about-hero {
        padding: 2.5rem 1rem;
    }

    .mx-about-hero h1 {
        font-size: 1.7rem;
    }

    .mx-about-hero p {
        font-size: 0.95rem;
    }

    .mx-story-section {
        padding: 0 1rem;
        margin: 2.5rem auto;
        gap: 2.5rem;
    }

    .mx-img-main {
        height: 240px;
        font-size: 5.5rem;
    }

    .mx-story-content h2 {
        font-size: 1.7rem;
    }

    .mx-story-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .mx-stat-number {
        font-size: 1.8rem;
    }

    .mx-values-section {
        padding: 3rem 1rem;
    }

    .mx-value-card {
        padding: 2rem 1.5rem;
    }

    .mx-section-header h2 {
        font-size: 1.7rem;
    }

    .mx-team-section {
        padding: 0 1rem;
        margin: 3rem auto;
    }

    .mx-team-img {
        height: 220px;
        font-size: 5rem;
    }

    .mx-process-section {
        padding: 3rem 1rem;
    }

    .mx-timeline-content {
        padding: 1.5rem;
    }

    .mx-timeline-content h3 {
        font-size: 1.2rem;
    }

    .mx-cta-section {
        margin: 2rem 0.75rem;
        padding: 2.5rem 1rem;
        border-radius: 16px;
    }

    .mx-cta-section h2 {
        font-size: 1.5rem;
    }

    .mx-cta-section p {
        font-size: 0.95rem;
    }

    /* ---- Products Page ---- */
    .pm-hero {
        padding: 2.5rem 1rem;
    }

    .pm-hero h1 {
        font-size: 1.6rem;
    }

    .pm-products-wrapper {
        padding: 1.5rem 1rem;
    }

    .pm-card-top {
        height: 160px;
    }

    .pm-title {
        font-size: 1.15rem;
    }

    .pm-price {
        font-size: 1.4rem;
    }

    .pm-why {
        padding: 2rem 1rem;
    }

    .pm-why-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .pm-why-title {
        font-size: 1.3rem;
    }

    .pm-cta {
        padding: 1.8rem 1rem;
    }

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

    .pm-cta-btn {
        padding: 0.8rem 2rem;
    }
}


/* ===================================================
   MOMOS-X — 320px (Small Mobile) RESPONSIVE CSS
=================================================== */

@media (max-width: 320px) {

    /* --- Subheader --- */
    .subheader-inner {
        padding: 0.4rem 0.5rem;
        gap: 0.4rem;
    }

    .distributor-btn {
        font-size: 0.68rem;
        padding: 0.28rem 0.55rem;
    }

    /* --- Navbar --- */
    nav {
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        width: 100vw;
        right: -100vw;
        padding: 4.5rem 1.5rem 2rem;
    }

    .nav-links.open {
        right: 0;
    }

    /* --- Hero --- */
    .hero {
        padding: 2rem 0.75rem;
    }

    .hero-text h1 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .hero-text p {
        font-size: 0.88rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-features {
        gap: 0.6rem;
    }

    .btn-main,
    .btn-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .momo-image {
        width: 180px;
        height: 180px;
        font-size: 4.5rem;
    }

    .momo-image img {
        width: 180px;
        height: 180px;
    }

    /* --- Section Headers --- */
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    /* --- Products --- */
    .products-section {
        padding: 0 0.75rem;
        margin: 2.5rem auto;
    }

    .product-img {
        height: 180px;
        font-size: 4.5rem;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .product-desc {
        font-size: 0.88rem;
    }

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

    .add-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    /* --- Flavors --- */
    .flavors {
        padding: 35px 12px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .flavor-header {
        padding: 25px 15px;
    }

    .flavor-header h3 {
        font-size: 22px;
    }

    .flavor-body {
        padding: 20px 15px;
    }

    .flavor-body h4 {
        font-size: 15px;
    }

    .flavor-body p,
    .flavor-body li {
        font-size: 13px;
    }

    /* --- Why Us --- */
    .why-us {
        padding: 2.5rem 0.75rem;
        margin: 2rem 0;
    }

    .why-item {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        font-size: 2rem;
    }

    .why-item h3 {
        font-size: 1.1rem;
    }

    .why-item p {
        font-size: 0.85rem;
    }

    /* --- Cooking Guide --- */
    .cooking-guide {
        padding: 0 0.75rem;
        margin: 2.5rem auto;
    }

    .cooking-method {
        padding: 1.5rem 1rem;
    }

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

    .cooking-steps {
        font-size: 0.88rem;
    }

    /* --- Testimonials --- */
    .testimonials {
        padding: 2.5rem 0.75rem;
        margin: 2rem 0;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* --- CTA --- */
    .cta-section {
        padding: 2rem 0.75rem;
        margin: 2rem 0.5rem;
        border-radius: 14px;
    }

    .cta-section h2 {
        font-size: 1.35rem;
    }

    .cta-section p {
        font-size: 0.88rem;
    }

    .cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    /* --- Footer --- */
    footer {
        padding: 1.5rem 0.75rem 0.75rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
    }

    .footer-col a {
        font-size: 0.82rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* ---- About Page ---- */
    .mx-about-hero {
        padding: 2rem 0.75rem;
    }

    .mx-about-hero h1 {
        font-size: 1.5rem;
    }

    .mx-about-hero p {
        font-size: 0.88rem;
    }

    .mx-hero-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }

    .mx-story-section {
        padding: 0 0.75rem;
        margin: 2rem auto;
        gap: 2rem;
    }

    .mx-img-main {
        height: 200px;
        font-size: 4.5rem;
    }

    .mx-img-badge {
        padding: 0.75rem;
        bottom: -12px;
        right: 8px;
    }

    .mx-img-badge h3 {
        font-size: 1.2rem;
    }

    .mx-img-badge p {
        font-size: 0.78rem;
    }

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

    .mx-story-content p {
        font-size: 0.9rem;
    }

    .mx-story-stats {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .mx-stat-item {
        padding: 1rem;
    }

    .mx-stat-number {
        font-size: 1.6rem;
    }

    .mx-stat-label {
        font-size: 0.82rem;
    }

    .mx-values-section {
        padding: 2.5rem 0.75rem;
    }

    .mx-section-header h2 {
        font-size: 1.5rem;
    }

    .mx-section-header p {
        font-size: 0.88rem;
    }

    .mx-value-card {
        padding: 1.5rem 1rem;
    }

    .mx-value-icon {
        font-size: 2.5rem;
    }

    .mx-value-card h3 {
        font-size: 1.1rem;
    }

    .mx-value-card p {
        font-size: 0.88rem;
    }

    .mx-team-section {
        padding: 0 0.75rem;
        margin: 2.5rem auto;
    }

    .mx-team-img {
        height: 180px;
        font-size: 4rem;
    }

    .mx-team-info {
        padding: 1.5rem 1rem;
    }

    .mx-team-info h3 {
        font-size: 1.1rem;
    }

    .mx-team-role {
        font-size: 0.85rem;
    }

    .mx-team-info p {
        font-size: 0.85rem;
    }

    .mx-process-section {
        padding: 2.5rem 0.75rem;
    }

    .mx-timeline-content {
        padding: 1.2rem 1rem;
    }

    .mx-timeline-content h3 {
        font-size: 1.1rem;
    }

    .mx-timeline-content p {
        font-size: 0.88rem;
    }

    .mx-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .mx-cta-section {
        margin: 2rem 0.5rem;
        padding: 2rem 0.75rem;
        border-radius: 14px;
    }

    .mx-cta-section h2 {
        font-size: 1.35rem;
    }

    .mx-cta-section p {
        font-size: 0.88rem;
    }

    .mx-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.88rem;
    }

    /* ---- Products Page ---- */
    .pm-hero {
        padding: 2rem 0.75rem;
    }

    .pm-hero h1 {
        font-size: 1.4rem;
    }

    .pm-hero p {
        font-size: 0.88rem;
    }

    .pm-products-wrapper {
        padding: 1.2rem 0.75rem;
    }

    .pm-card-top {
        height: 140px;
    }

    .pm-card-head {
        padding: 1rem 1rem 0.6rem;
    }

    .pm-title {
        font-size: 1.05rem;
    }

    .pm-subtitle {
        font-size: 0.75rem;
    }

    .pm-card-body {
        padding: 0.6rem 1rem;
    }

    .pm-desc {
        font-size: 0.8rem;
    }

    .pm-items {
        padding: 0.75rem;
    }

    .pm-items-list li {
        font-size: 0.7rem;
    }

    .pm-card-foot {
        padding: 0.85rem 1rem;
    }

    .pm-price {
        font-size: 1.3rem;
    }

    .pm-btn {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .pm-why {
        padding: 1.5rem 0.75rem;
    }

    .pm-why-title {
        font-size: 1.15rem;
    }

    .pm-why-item {
        padding: 1rem 0.75rem;
    }

    .pm-why-emoji {
        font-size: 1.5rem;
    }

    .pm-why-text {
        font-size: 0.82rem;
    }

    .pm-why-desc {
        font-size: 0.7rem;
    }

    .pm-cta {
        padding: 1.5rem 0.75rem;
    }

    .pm-cta h2 {
        font-size: 1.2rem;
    }

    .pm-cta p {
        font-size: 0.88rem;
    }

    .pm-cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}





       /* Nutritional Info Dropdown */
        .pm-nutri-toggle {
            width: 100%;
            background: none;
            border: 2px solid #f0f0f0;
            border-radius: 10px;
            padding: 0.65rem 1rem;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--pm-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            margin-bottom: 0;
            font-family: inherit;
            margin: 5px;
        }
        .pm-nutri-toggle:hover { border-color: var(--pm-primary); background: #fff5f5; }
        .pm-nutri-toggle .arrow {
            transition: transform 0.3s;
            font-size: 0.7rem;
        }
        .pm-nutri-toggle.open .arrow { transform: rotate(180deg); }

        .pm-nutri-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }
        .pm-nutri-content.open { max-height: 400px; }

        .pm-nutri-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.82rem;
            margin-top: 0.6rem;
            border-radius: 8px;
            overflow: hidden;
        }
        .pm-nutri-table thead tr {
            background: linear-gradient(135deg, var(--pm-primary), var(--pm-light));
            color: white;
        }
        .pm-nutri-table thead th {
            padding: 0.6rem 0.8rem;
            text-align: left;
            font-weight: 600;
        }
        .pm-nutri-table tbody tr { border-bottom: 1px solid #f0f0f0; transition: background 0.2s; }
        .pm-nutri-table tbody tr:hover { background: #fff5f5; }
        .pm-nutri-table tbody td { padding: 0.55rem 0.8rem; color: #555; }
        .pm-nutri-table tbody td:first-child { font-weight: 600; color: #333; }