@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

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

:root {

    /* Pot-Protéine VitaFruits Palette */

    --primary-dark: #3b113c;
    --primary-light: #7a1c6a;
    --primary-hover: #5e1352;

    --bg-light: #faf3f5;
    --bg-soft: #f5e9ed;
    --bg-alt: #ffffff;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(245, 233, 237, 0.8);

    --text-dark: #1a071c;
    --text-light: #ffffff;
    --text-muted: #111827;
    --text-light-gray: #ffffff;

    --gold: #d4a853;

    --whatsapp-green: #25d366;
    --whatsapp-hover: #20ba5a;

    --border-radius: 1.25rem;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    --shadow: 0 4px 20px rgba(59, 17, 60, 0.06);
    --shadow-lg: 0 12px 40px rgba(59, 17, 60, 0.12);

    /* Spacing Design Tokens */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
}

/* ============================== */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-synthesis: none;
    overflow-x: hidden;
}

/* Isolate sticky navbar on its own GPU compositing layer to prevent text tearing during scroll */
.nav-container {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

h1,
h2,
h3,
h4,
.section-title,
.nav-brand,
.price-tag,
.heading-section,
.heading-subsection {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    color: #1a071c;
    letter-spacing: -0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==============================
   VITAFRUITS SIGNATURE COMPONENTS
   ============================== */

.btn-pill-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b113c;
    color: #ffffff;
    border: 1px solid #3b113c;
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(59, 17, 60, 0.2);
}

.btn-pill-arrow .arrow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #ffffff;
    color: #3b113c;
    font-size: 0.75rem;
    transition: var(--transition);
}

.btn-pill-arrow:hover {
    background: #5e1352;
    border-color: #5e1352;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 17, 60, 0.3);
}

.btn-pill-arrow:hover .arrow-badge {
    background: #ffffff;
    color: #5e1352;
    transform: translateX(2px) translateY(-2px);
}

.btn-pill-purple,
.btn-pill-arrow-purple {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b113c;
    color: #ffffff;
    border: 1px solid #3b113c;
    padding: 0.65rem 1.35rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(59, 17, 60, 0.2);
}

.btn-pill-purple .arrow-badge,
.btn-pill-arrow-purple .arrow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #ffffff;
    color: #3b113c;
    font-size: 0.75rem;
    transition: var(--transition);
}

.btn-pill-purple:hover,
.btn-pill-arrow-purple:hover {
    background: #5e1352;
    border-color: #5e1352;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 17, 60, 0.3);
}

.btn-pill-purple:hover .arrow-badge,
.btn-pill-arrow-purple:hover .arrow-badge {
    background: #ffffff;
    color: #5e1352;
    transform: translateX(2px) translateY(-2px);
}

.card-plum {
    background: #3b113c !important;
    color: #ffffff !important;
}

.card-plum * {
    color: #ffffff !important;
}

/* ==============================
   BUTTONS
   ============================== */

.btn-primary {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-light);
    padding: 12px 32px;
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* WhatsApp Button */

.btn-whatsapp {
    display: inline-block;
    background: var(--whatsapp-green);
    color: var(--text-light);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==============================
   HERO SECTION
   ============================== */

.hero-section {
    background: linear-gradient(135deg,
            var(--bg-light),
            var(--bg-soft));
}

/* ==============================
   PRODUCT CARDS
   ============================== */

.product-card {
    background: #ffffff;
    border-radius: var(--border-radius, 1.25rem);
    box-shadow: 0 4px 14px rgba(59, 17, 60, 0.06);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(59, 17, 60, 0.14);
}

.product-card:focus-within {
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* ==============================
   GLASS / PREMIUM CARD
   ============================== */

.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* ==============================
   FILTER BUTTONS
   ============================== */

.filter-btn {
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    padding: var(--space-xs, 0.25rem) var(--space-lg, 1.25rem);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid #e9d5e4;
    background-color: #ffffff;
    color: var(--text-muted);
}

.filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.filter-active,
.filter-btn.filter-active {
    background-color: var(--primary-light) !important;
    color: #ffffff !important;
    border-color: var(--primary-light) !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(122, 28, 106, 0.25);
}

.filter-btn:not(.filter-active) {
    color: var(--text-muted);
}

/* ==============================
   CART MODAL
   ============================== */

#cart-modal {
    transition: opacity 0.25s ease;
}

.cart-modal-container {
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

#cart-modal.hidden {
    display: none !important;
}

#cart-overlay {
    display: block;
}

/* ==============================
   OPTIONS
   ============================== */

.option-item {
    transition: var(--transition);
}

.option-item:hover {
    border-color: var(--primary-light);
    background-color: rgba(34, 197, 94, 0.08);
}

/* ==============================
   FORM STYLING
   ============================== */

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* Form validation states */
input.border-red-500 {
    border-color: #ef4444;
}

input.border-red-500:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error-msg {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    animation: slideDown 0.2s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-input-info {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Checkbox */

input[type="checkbox"] {
    cursor: pointer;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary-light);
}

input[type="checkbox"]:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* ==============================
   BUTTON FOCUS & KEYBOARD STATES
   ============================== */

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-whatsapp:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}



/* ==============================
   ACCESSIBILITY IMPROVEMENTS
   ============================== */

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-main:focus {
    top: 0;
}

/* Improved focus indicators for links */
a {
    transition: var(--transition);
}

a:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==============================
   UTILITIES
   ============================== */

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==============================
   ANIMATIONS
   ============================== */

@keyframes pageFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-slide-up {
    animation: slideUp 0.3s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.3s ease-out;
}

.animate-bounce {
    animation: bounce 0.6s ease-in-out;
}

/* ==============================
   SECTION BACKGROUNDS
   ============================== */

.section-hero {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-soft), var(--bg-alt));
}

.section-light {
    background: var(--bg-light);
}

.section-alt {
    background: var(--bg-alt);
}

.section-white {
    background: #ffffff;
}

.section-dark {
    background: var(--primary-dark);
    color: var(--text-light-gray);
}

/* ==============================
   TEXT COLORS
   ============================== */

.text-primary-dark {
    color: var(--primary-dark);
}

.text-primary-light {
    color: var(--primary-light);
}

.text-dark {
    color: var(--text-dark);
}

.text-muted {
    color: var(--text-muted);
}

.text-light {
    color: var(--text-light);
}

.text-light-gray {
    color: var(--text-light-gray);
}

/* ==============================
   HEADING STYLES
   ============================== */

.heading-hero {
    color: #000000;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .heading-hero {
        font-size: 3.75rem;
    }
}

.heading-section {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.heading-subsection {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.heading-card {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* ==============================
   BORDER & SHADOW UTILITIES
   ============================== */

.border-green-left {
    border-left: 4px solid var(--primary-light);
}

.border-green {
    border-color: var(--primary-light);
}

.border-whatsapp {
    border-color: var(--whatsapp-green);
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
}

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

/* ==============================
   GRADIENT BACKGROUNDS
   ============================== */

.gradient-green {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.gradient-button {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)) !important;
}

.gradient-hero {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-soft), var(--bg-alt));
}

/* ==============================
   LINK & ANCHOR STYLES
   ============================== */

.link-green {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.link-green:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.link-whatsapp {
    color: var(--whatsapp-green);
    text-decoration: none;
    transition: var(--transition);
}

.link-whatsapp:hover {
    color: var(--whatsapp-hover);
}

.link-light {
    color: var(--text-light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.link-light:hover {
    color: var(--primary-light);
}

/* ==============================
   ICON UTILITIES
   ============================== */

.icon-lg {
    font-size: 5rem;
}

.icon-md {
    font-size: 3rem;
}

.icon-sm {
    font-size: 1.875rem;
}

/* ==============================
   BACKGROUND COLORS
   ============================== */

.bg-primary-dark {
    background: var(--primary-dark);
}

.bg-primary-light {
    background: var(--primary-light);
}

.bg-light {
    background: var(--bg-light);
}

.bg-soft {
    background: var(--bg-soft);
}

.bg-alt {
    background: var(--bg-alt);
}

.bg-white {
    background: white;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

/* ==============================
   CARD BACKGROUNDS
   ============================== */

.card-light {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.card-gradient {
    background: linear-gradient(135deg, #dcfce7, #e8f7f3, #f0fdf4);
}

/* ==============================
   HERO SECTION
   ============================== */

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    color: #000000;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.hero-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.hero-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

/* ==============================
   FEATURE CARDS
   ============================== */

.feature-card {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-card-light {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.feature-card-icon {
    font-size: 1.875rem;
    margin-bottom: 8px;
}

.feature-card-title {
    color: #6b7280;
    font-weight: 500;
}

/* ==============================
   SECTION HEADERS
   ============================== */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ==============================
   FOOTER SECTION
   ============================== */

.footer-section {
    padding: 48px 0;
    background: var(--primary-dark);
    color: #ffffff;
}

.footer-section p,
.footer-section a:not(.link-whatsapp) {
    color: #ffffff;
}

/* ==============================
   PRODUCT CARD STYLING
   ============================== */

.product-icon-bg {
    background: linear-gradient(135deg, #dcfce7, #e8f7f3, #f0fdf4);
}

.product-name {
    color: var(--text-dark);
}

.product-ingredients {
    color: var(--text-muted);
}

.info-grid-item {
    padding: 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    text-align: center;
}

.info-box-green {
    background: #dcfce7;
}

.info-box-green .info-label {
    color: #6b7280;
}

.info-box-green .info-value {
    color: var(--primary-dark);
    font-weight: bold;
}

.info-box-teal {
    background: #f5e9ed;
}

.info-box-teal .info-label {
    color: var(--text-muted);
}

.info-box-teal .info-value {
    color: var(--primary-light);
    font-weight: bold;
}

.info-box-light {
    background: #faf3f5;
}

.info-box-light .info-label {
    color: var(--text-muted);
}

.info-box-light .info-value {
    color: var(--primary-dark);
    font-weight: bold;
}

/* ==============================
   ADD TO CART BUTTON
   ============================== */

.btn-add-to-cart {
    background: var(--primary-dark);
    color: #ffffff;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-add-to-cart:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Featured products gradient button */
.btn-featured-add-to-cart {
    background: linear-gradient(135deg, #3b113c, #7a1c6a);
    color: #ffffff;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-featured-add-to-cart:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

/* ==============================
   MOBILE MENU ACTIVE STATE
   ============================== */

.mobile-menu-item-active {
    background: #f5e9ed;
    color: var(--primary-dark);
}

/* ==============================
   PAGE HEADER GRADIENT
   ============================== */

.gradient-green {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

/* ==============================
   CART MODAL CLASSES
   ============================== */

.cart-modal-container {
    border-color: #dcfce7;
}

.cart-header {
    border-color: #dcfce7;
}

.cart-footer {
    border-color: #dcfce7;
}

/* ==============================
   FOOTER STYLING
   ============================== */

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
}

.text-soft {
    color: #dcfce7;
}

.text-muted-footer {
    color: #ffffff;
}

/* ==============================
   CHECKOUT PAGE STYLING
   ============================== */

.checkout-bg {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.checkout-heading {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 32px;
}

.form-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

.form-label {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 8px 16px;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(122, 28, 106, 0.18);
}

.form-input-info {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 4px;
}

.form-submit-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all var(--transition);
    background: #3b113c;
    color: white;
    cursor: pointer;
    border: none;
}

.form-submit-btn:hover {
    background: #5e1352;
    transform: translateY(-2px);
}

.summary-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 24px;
    position: sticky;
    top: 96px;
}

.summary-heading {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.summary-items {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #dcfce7;
    max-height: 256px;
    overflow-y: auto;
}

.summary-divider {
    border-color: #dcfce7;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-total-amount {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-light);
}

/* ==============================
   NAVIGATION LOGO & BRAND
   ============================== */

.nav-gradient-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
}

.nav-brand-text {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.back-menu-btn {
    background: var(--primary-light);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.back-menu-btn:hover {
    background: var(--primary-hover);
}

/* ==============================
   UTILITY BORDER COLORS
   ============================== */

.border-soft {
    border-color: #dcfce7;
}

.nav-mobile-active {
    background: #dcfce7;
    color: var(--primary-dark);
}

/* ==============================
   CONTACT BOX BORDER COLORS
   ============================== */

.contact-box-primary {
    border-color: var(--primary-light) !important;
}

.contact-box-dark {
    border-color: var(--primary-dark) !important;
}

/* ==============================
   FOOTER HEADINGS & DIVIDER
   ============================== */

.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-divider-bottom {
    border-color: rgba(255, 255, 255, 0.15);
}

/* ==============================
   CONTACT SECTION
   ============================== */

.contact-section-dark {
    background: var(--primary-dark);
}

.contact-box {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #f5e9ed;
    border-left: 4px solid var(--primary-light);
    box-shadow: 0 4px 14px rgba(59, 17, 60, 0.05);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.contact-box:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(59, 17, 60, 0.12);
    transform: translateY(-4px);
}

.contact-icon {
    transition: var(--transition);
}

.contact-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-link {
    font-weight: 600;
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-hover);
}

.contact-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 4px;
}

/* ==============================
   NAVIGATION
   ============================== */

/* ==============================
   NAVIGATION & BRAND IDENTITY
   ============================== */

.nav-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.brand-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-wordmark {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.brand-accent {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #7a1c6a 0%, #c026d3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-light);
    opacity: 0.85;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.925rem;
    text-decoration: none;
    padding: 0.5rem 0.85rem;
    border-radius: 9999px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-light);
    background-color: rgba(122, 28, 106, 0.06);
}

.nav-link.active {
    color: var(--primary-light);
    font-weight: 700;
    background-color: rgba(122, 28, 106, 0.1);
}

/* Cart Badge Styling & High Contrast */
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #10b981;
    /* High contrast emerald green */
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.45);
    border: 2px solid #ffffff;
    transition: transform 0.2s ease;
}

@keyframes badgeScalePop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.45);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.cart-badge-bump {
    animation: badgeScalePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mobile Menu Slide-Down Animation */
.mobile-menu-drawer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.is-open {
    max-height: 480px;
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .premium-card:hover {
        transform: translateY(-4px);
    }

    #cart-modal {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}

/* ==============================
   NAVIGATION LINKS
   ============================== */

nav a {
    position: relative;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-light);
}

nav a:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ==============================
   BUTTONS - Enhanced
   ============================== */

button:focus,
a[role="button"]:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}

button:active,
a[role="button"]:active {
    transform: scale(0.98);
}

/* ==============================
   FORM INPUTS - Enhanced
   ============================== */

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 0 3px rgba(122, 28, 106, 0.18) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* ==============================
   CONTACT CARDS
   ============================== */

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(59, 17, 60, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--primary-light);
}

.contact-card:hover {
    box-shadow: 0 8px 25px rgba(59, 17, 60, 0.12);
    transform: translateY(-2px);
}

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

#featured-products .featured-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 233, 237, 0.5));
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 17, 60, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

#featured-products .featured-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(59, 17, 60, 0.16);
}

#featured-products .featured-icon {
    background: linear-gradient(135deg, #dcfce7, #e8f7f3, #f0fdf4);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

#featured-products .featured-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#featured-products .featured-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#featured-products .featured-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

#featured-products .featured-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
    flex: 1;
}

#featured-products .nutrition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

#featured-products .nutrition-item {
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.75rem;
}

#featured-products .nutrition-protein {
    background: #dcfce7;
    color: #14532d;
}

#featured-products .nutrition-calories {
    background: #f5e9ed;
    color: var(--primary-light);
}

#featured-products .nutrition-price {
    background: #faf3f5;
    color: var(--primary-dark);
}

#featured-products .nutrition-value {
    font-weight: 700;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 2px;
}

#featured-products .nutrition-label {
    color: #6b7280;
}

/* ==============================
   ACCESSIBILITY - Skip Link
   ============================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-light);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ==============================
   LOADER STATES
   ============================== */

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loader {
    border: 3px solid rgba(34, 197, 94, 0.1);
    border-top: 3px solid var(--primary-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

.hero-section {
    padding: 2rem 0;
}

#cart-modal .absolute {
    max-width: 100%;
    width: 100%;
}

/* ==============================
   PRINT
   ============================== */

@media print {

    .no-print {
        display: none;
    }

    body {
        background: white;
    }

    a {
        text-decoration: underline;
    }
}

/* ==============================
   ACCESSIBILITY
   ============================== */

@media (prefers-reduced-motion: reduce) {

    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.contact-box {
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateY(-4px);
}

.hover-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 20px;
    background-color: #25D366;
    color: #ffffff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, bottom 0.3s ease, left 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        left: 16px;
        width: 50px;
        height: 50px;
    }

    body.has-mobile-cart .whatsapp-float {
        bottom: 105px !important;
        left: 16px !important;
    }
}

.thank-you-card {
    animation: fadeSlideUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.thank-you-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
   MENU PAGE - FILTER TABS
   ============================== */

#filter-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0.25rem 0.5rem;
    scrollbar-width: none;
}

#filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    scroll-snap-align: center;
    flex-shrink: 0;
    padding: 0.55rem 1.35rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    border: 1.5px solid #e9d5e4;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
    color: #614d5e;
}

.filter-tab:active {
    transform: scale(0.92) !important;
}

.filter-tab.active,
.filter-tab:hover {
    background: #3b113c;
    color: white;
    border-color: #3b113c;
    box-shadow: 0 6px 18px rgba(59, 17, 60, 0.2);
}

/* ==============================
   MENU PAGE - PRODUCT CARDS
   ============================== */

.product-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f5e9ed;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==============================
   MENU PAGE - BADGES
   ============================== */

.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.badge-gain {
    background: #fdf0f3;
    color: #7a1c6a;
}

.badge-loss {
    background: #f5e9ed;
    color: #3b113c;
}

.badge-workday {
    background: #e0f2fe;
    color: #0369a1;
}

.badge-old {
    background: #f8d7da;
    color: #842029;
}

.badge-it {
    background: #cfe2ff;
    color: #084298;
}

.badge-diab {
    background: #e2d9f3;
    color: #432874;
}

.badge-trial {
    background: #fef08a;
    color: #3b113c;
}

.tier-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

.price-tag {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* ==============================
   MENU PAGE - MACRO STRIP
   ============================== */

.macro-strip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.65rem;
    background: #faf3f5;
    border: 1px solid #f5e9ed;
    border-radius: 9999px;
    width: fit-content;
    max-width: 100%;
}

.macro-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.macro-protein {
    color: #7a1c6a;
}

.macro-cal {
    color: #92400e;
}

.macro-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d1d5db;
}

/* ==============================
   MENU PAGE - 3-PILL INGREDIENT PREVIEW
   ============================== */

.ingredient-pills-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.ingredient-pill {
    background: #fdf2f8;
    color: #831843;
    border: 1px solid #fce7f3;
    border-radius: 9999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

.ingredient-more-pill {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ingredient-more-pill:hover {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
    transform: scale(1.05);
}

/* ==============================
   MENU PAGE - SEGMENTED PLAN PILLS
   ============================== */

.plan-segmented-wrapper {
    background: #f8f1f4;
    border: 1px solid #f1e0e8;
    border-radius: 1rem;
    padding: 0.3rem;
}

.plan-segmented-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
}

.plan-pill-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.25rem;
    border-radius: 0.75rem;
    background: transparent;
    border: 1px solid transparent;
    color: #581c4e;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    text-align: center;
}

.plan-pill-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    color: #3b113c;
}

.plan-pill-btn.active {
    background: #3b113c;
    color: #ffffff;
    border-color: #3b113c;
    box-shadow: 0 4px 12px rgba(59, 17, 60, 0.25);
    transform: translateY(-1px);
}

.plan-pill-name {
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.plan-pill-price {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.85;
    margin-top: 0.1rem;
}

.plan-pill-btn.active .plan-pill-price {
    opacity: 1;
    color: #fef08a;
    font-weight: 700;
}

.plan-pill-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 0.1rem 0.35rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.plan-badge-savings {
    background: #10b981;
    color: #ffffff;
}

.plan-badge-offer {
    background: #f59e0b;
    color: #ffffff;
}

/* ==============================
   MENU PAGE - TACTILE ADD BUTTON
   ============================== */

.btn-tactile-add {
    width: 100%;
    padding: 0.65rem 1.15rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    background: linear-gradient(135deg, #7a1c6a 0%, #3b113c 100%);
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(59, 17, 60, 0.25);
}

.btn-tactile-add:hover {
    background: linear-gradient(135deg, #8e227c 0%, #4c174e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 17, 60, 0.35);
}

.btn-tactile-add:active {
    transform: scale(0.96);
    box-shadow: 0 2px 8px rgba(59, 17, 60, 0.2);
}

/* ==============================
   MENU PAGE - QUANTITY CONTROLS
   ============================== */

.qty-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    background: #faf3f5;
    border: 1px solid #f3e1eb;
    border-radius: 9999px;
    padding: 0.2rem 0.3rem;
}

.qty-btn {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 9999px;
    background: #3b113c;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.qty-btn:hover {
    background: #7a1c6a;
    transform: scale(1.08);
}

.qty-btn:active {
    transform: scale(0.92);
}

.qty-display {
    font-weight: 800;
    font-size: 0.95rem;
    min-width: 1.25rem;
    text-align: center;
    color: #3b113c;
}

/* ==============================
   MENU PAGE - MODAL SLIDE-UP
   ============================== */

#product-details-modal.is-opening #product-modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.ingredient-weight-card {
    background: #ffffff;
    border: 1px solid #f3e8ee;
    border-radius: 0.85rem;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.ingredient-weight-card:hover {
    border-color: #e5c4d8;
    box-shadow: 0 3px 10px rgba(59, 17, 60, 0.06);
    transform: translateY(-1px);
}

#empty-state {
    display: none;
}

/* ==============================
   MENU PAGE - SECTION HEADER
   ============================== */

.menu-header-line {
    width: 3rem;
    height: 4px;
    background: linear-gradient(90deg, #7a1c6a, #3b113c);
    border-radius: 2px;
    margin: 0.5rem auto 0;
}

/* ==============================
   MENU PAGE - STICKY FILTER BAR
   ============================== */

.filter-bar {
    position: sticky;
    top: 64px;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
}

.sparkle {
    display: inline-block;
    animation: sparkle 2s infinite ease-in-out;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.heart-beat {
    display: inline-block;
    font-size: 1.875rem;
    /* Bigger heart */
    margin-right: 6px;
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.25);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.25);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* ==============================
   ADD-ONS SECTION - ADDON CARDS
   ============================== */

.addon-card {
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.addon-card:focus-within {
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* =====================================
   PREMIUM HERO (Pot-Protéine Style)
   ===================================== */

.hero-section {
    background: #faf9f6;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .12;
    pointer-events: none;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #059669;
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -50px;
    left: -50px;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Premium CTA Buttons */

.hero-section a.bg-emerald-600 {
    transition: all .3s ease;
}

.hero-section a.bg-emerald-600:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, .25);
}

/* Floating Cards */

.hero-section .shadow-lg,
.hero-section .shadow-2xl {
    transition: all .3s ease;
}

.hero-section .shadow-2xl:hover {
    transform: translateY(-6px);
}

/* Mobile */

@media(max-width:1024px) {

    .blob-1 {
        width: 350px;
        height: 350px;
    }

    .blob-2 {
        width: 250px;
        height: 250px;
    }

}


/* ─────────────────────────────────────────────────────────────
   MOBILE-FIRST ERGONOMICS & STICKY FLOATING CART BAR
   ───────────────────────────────────────────────────────────── */

/* Mobile Touch Highlights & Minimum Touch Targets */
button,
input,
select,
textarea,
a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-floating-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile-floating-cart-bar.hidden-bar {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-floating-checkout-btn {
    background-color: var(--primary-light);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-floating-checkout-btn:active {
    transform: scale(0.97);
    background-color: var(--primary-hover);
}

@media (min-width: 768px) {
    .mobile-floating-cart-bar {
        display: none !important;
    }
}

/* ==============================
   LIFESTYLE SECTION — Premium D2C
   ============================== */

/* ==============================
   LIFESTYLE SECTION — PREMIUM REDESIGN
   ============================== */

.lifestyle-section {
    position: relative;
    overflow: hidden;
}

/* Subtle organic background decorations */
.lifestyle-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(122, 28, 106, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lifestyle-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lifestyle-deco-leaf-1,
.lifestyle-deco-leaf-2,
.lifestyle-deco-leaf-3 {
    position: absolute;
    pointer-events: none;
    opacity: 0.035;
    z-index: 0;
}

.lifestyle-deco-leaf-1 {
    top: 60px;
    right: 80px;
    width: 140px;
    height: 140px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    border-radius: 60% 40% 50% 50%;
    transform: rotate(-25deg);
}

.lifestyle-deco-leaf-2 {
    bottom: 100px;
    left: 40px;
    width: 180px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(122, 28, 106, 0.1) 0%, transparent 70%);
    border-radius: 50% 50% 40% 60%;
    transform: rotate(15deg);
}

.lifestyle-deco-leaf-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(245, 233, 237, 0.4) 0%, transparent 60%);
    border-radius: 50%;
}

/* ── Lifestyle Card — Product-Hero Design ── */

.lifestyle-card {
    position: relative;
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(245, 233, 237, 0.7);
    box-shadow: 0 2px 16px rgba(59, 17, 60, 0.04);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
    /* Staggered entry animation */
    opacity: 0;
    animation: lifestyleCardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lifestyle-card:nth-child(1) { animation-delay: 0.05s; }
.lifestyle-card:nth-child(2) { animation-delay: 0.15s; }
.lifestyle-card:nth-child(3) { animation-delay: 0.25s; }
.lifestyle-card:nth-child(4) { animation-delay: 0.35s; }

@keyframes lifestyleCardReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lifestyle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(59, 17, 60, 0.10);
    border-color: rgba(122, 28, 106, 0.12);
}

/* ── Product Image Container ── */

.lifestyle-card__image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 2rem 1rem;
}

/* Per-card soft tinted backgrounds */
.lifestyle-card__image--warm {
    background: linear-gradient(145deg, #fef9f0 0%, #fdf3e7 100%);
}

.lifestyle-card__image--lavender {
    background: linear-gradient(145deg, #f5f0fa 0%, #efe8f6 100%);
}

.lifestyle-card__image--sage {
    background: linear-gradient(145deg, #f0f7f4 0%, #e8f3ee 100%);
}

.lifestyle-card__image--rose {
    background: linear-gradient(145deg, #fdf0f3 0%, #f9e8ed 100%);
}

/* Subtle radial glow behind product */
.lifestyle-card__image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.lifestyle-card__image img {
    width: 80%;
    max-width: 180px;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(59, 17, 60, 0.10));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.5s ease;
    position: relative;
    z-index: 1;
}

.lifestyle-card:hover .lifestyle-card__image img {
    transform: translateY(-6px) scale(1.03);
    filter: drop-shadow(0 14px 28px rgba(59, 17, 60, 0.15));
}

/* ── Card Body ── */

.lifestyle-card__body {
    padding: 1.25rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Unified Tag Pills — Brand Plum Palette ── */

.lifestyle-tag {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #f5e9ed;
    color: #111827;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease, color 0.3s ease;
}

/* Subtle per-card tag tints that match image backgrounds */
.lifestyle-tag--warm {
    background: #fef3e0;
    color: #7c2d12;
    border: 1px solid #fde68a;
}

.lifestyle-tag--lavender {
    background: #f0e6f6;
    color: #4c1d95;
    border: 1px solid #ddd6fe;
}

.lifestyle-tag--sage {
    background: #e6f4ec;
    color: #064e3b;
    border: 1px solid #a7f3d0;
}

.lifestyle-tag--rose {
    background: #fce7ed;
    color: #831843;
    border: 1px solid #fbcfe8;
}

/* ── Card CTA Link — Unified Brand ── */

.lifestyle-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
    color: #111827;
    margin-top: auto;
    padding-top: 1.1rem;
    transition: gap 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.3s ease;
}

.lifestyle-card:hover .lifestyle-card__cta {
    gap: 0.65rem;
    color: #3b113c;
}

.lifestyle-card__cta svg {
    width: 15px;
    height: 15px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-card:hover .lifestyle-card__cta svg {
    transform: translateX(4px);
}

/* ── Section Heading Premium Accent Line ── */

.lifestyle-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7a1c6a, #d4a853);
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* ── Lifestyle Grid Spacing Override ── */

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

@media (min-width: 640px) {
    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .lifestyle-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .lifestyle-card__image {
        height: 230px;
    }
}

/* ============================================================
   HERO SLIDESHOW — Swiggy-style auto-cycling card
   ============================================================ */

/* Floating badge — bounces in the top-right corner of the card */
.hero-slide-badge {
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.625rem 1.125rem;
    box-shadow: 0 8px 24px rgba(59, 17, 60, 0.14);
    z-index: 20;
    animation: heroSlideFloatBounce 2.4s ease-in-out infinite;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1.5px solid #f5e9ed;
}

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

/* Slide track — stacks all slides; height set by the active one */
.hero-slides-track {
    position: relative;
    overflow: hidden;
}

/* Each slide — all stacked on top of each other, only opacity changes */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(32px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

/* Slide-out animation */
.hero-slide.exiting {
    position: absolute;
    opacity: 0;
    transform: translateX(-32px);
    pointer-events: none;
    z-index: 1;
}

/* Product image inside slide */
.hero-slide-img {
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(59, 17, 60, 0.12));
    transition: transform 0.4s ease;
}

.hero-slide.active .hero-slide-img {
    animation: heroImgEntrance 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroImgEntrance {
    from { transform: scale(0.93) translateY(10px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* Category badge inside each slide footer */
.hero-slide-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-width: 1px;
    border-style: solid;
}

/* Prev / Next arrow buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(59, 17, 60, 0.12);
    box-shadow: 0 2px 10px rgba(59, 17, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b113c;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    outline: none;
}

.hero-arrow:hover {
    background: #3b113c;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(59, 17, 60, 0.22);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow--prev {
    left: 0.5rem;
}

.hero-arrow--next {
    right: 0.5rem;
}

/* Dot indicators row */
.hero-slideshow-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 0.25rem;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: #e5d0e7;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.25s ease;
    outline: none;
}

.hero-dot.active {
    width: 1.5rem;
    background: #7a1c6a;
}

/* Auto-play progress bar */
.hero-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(59, 17, 60, 0.07);
    border-radius: 0 0 36px 36px;
    overflow: hidden;
}

.hero-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7a1c6a, #d4a853);
    border-radius: 0 0 36px 36px;
    transition: width linear;
}

/* ── Responsive: hide arrows on small screens to save space ── */
@media (max-width: 480px) {
    .hero-arrow {
        width: 1.75rem;
        height: 1.75rem;
    }
    .hero-arrow--prev { left: 0.25rem; }
    .hero-arrow--next { right: 0.25rem; }
}