/* ============================================
   SYAMAMA KITCHEN - Design System CSS
   Clean, Professional, Food-themed Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ---- CSS Variables ---- */
:root {
    --primary: #FA7302;
    --primary-dark: #D96200;
    --primary-light: #FFB06A;
    --secondary: #047FD5;
    --secondary-dark: #0367B0;
    --secondary-light: #4DA8E8;
    --accent: #1B2A3C;
    --accent-light: #4A6278;
    --bg-cream: #FFF5ED;
    --bg-warm: #FFF3E8;
    --bg-white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
    --text-light: #8C8C8C;
    --success: #4CAF50;
    --success-light: #E8F5E9;
    --warning: #FF9800;
    --warning-light: #FFF3E0;
    --danger: #E53935;
    --danger-light: #FFEBEE;
    --info: #047FD5;
    --info-light: #E3F2FD;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
    --shadow-glow: 0 4px 20px rgba(250, 115, 2, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Typography ---- */
.font-display {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ---- Navbar ---- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: none;
    padding: 0.2rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.navbar-brand .brand-logo {
    height: 52px;
    width: auto;
    flex-shrink: 0;
}

.navbar-brand .brand-icon {
    font-size: 2rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.navbar-menu a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: var(--transition);
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--primary);
    background: var(--bg-warm);
}

.navbar-menu .cart-badge {
    position: relative;
}

.navbar-menu .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 0.3s ease;
}

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

    50% {
        transform: scale(1.3);
    }

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

.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: var(--shadow-glow);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(250, 115, 2, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    color: white !important;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .navbar-menu.open {
        display: flex;
    }

    .navbar-menu a {
        width: 100%;
        padding: 0.8rem 1rem;
    }
}

/* ---- Container ---- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(250, 115, 2, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(250, 115, 2, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 2px 8px rgba(4, 127, 213, 0.15);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #388E3C);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), #C62828);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* ---- Cards ---- */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* ---- Product Card ---- */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

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

.product-card .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-warm), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.product-card .product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(255, 248, 240, 0.5));
}

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

.product-card .product-body {
    padding: 1.2rem;
}

.product-card .product-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--bg-warm);
    color: var(--primary-dark);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-card .product-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.product-card .product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-card .product-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

.product-card .product-stock {
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-card .stock-low {
    color: var(--danger);
    font-weight: 700;
}

/* Out of Stock Product Styling */
.product-out-of-stock {
    opacity: 0.7;
    background: #f5f5f5 !important;
}

.product-out-of-stock .product-image {
    filter: grayscale(40%) brightness(1.1);
}

.product-out-of-stock .product-name,
.product-out-of-stock .product-desc,
.product-out-of-stock .product-price {
    opacity: 0.6;
}

/* Product card mobile responsive */
@media (max-width: 768px) {
    .product-card .product-image {
        height: 140px;
    }

    .product-card .product-body {
        padding: 0.8rem;
    }

    .product-card .product-name {
        font-size: 0.9rem;
    }

    .product-card .product-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
        margin-bottom: 0.5rem;
    }

    .product-card .product-price {
        font-size: 0.95rem;
    }

    .product-card .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .product-card .product-footer .btn-sm {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .product-card .product-category {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }

    .product-card .product-stock {
        font-size: 0.7rem;
    }
}

/* ---- Hero Section ---- */
.hero-wrapper {
    position: relative;
}

.hero {
    background: var(--bg-warm);
    padding: 5rem 0 4rem;
    position: sticky;
    top: 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FA7302' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Hero Image - Desktop: Left side with blue border */
.hero-image {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #047FD5;
    box-shadow: 0 8px 32px rgba(4, 127, 213, 0.3);
    z-index: 1;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero container: centered layout with image left + content right */
.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 800;
    font-size: 4.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    line-height: 1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.08);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.hero-float {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    animation: heroFloat 3s ease-in-out infinite;
    filter: drop-shadow(4px 8px 16px rgba(0, 0, 0, 0.1));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(-50%) rotate(-5deg);
    }

    50% {
        transform: translateY(-55%) rotate(5deg);
    }
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-float {
        display: none;
    }

    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    /* Mobile: Stack layout instead of flexbox */
    .hero .container {
        flex-direction: column;
        gap: 0;
        position: relative;
    }

    /* Hero Image - Mobile: Background with reduced opacity */
    .hero-image {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        opacity: 0.25;
        z-index: 0;
        border-width: 3px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 0.6rem auto 0;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-header .emoji-divider {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5rem;
}

/* ---- Grid Systems ---- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

/* ---- Showcase Layout ---- */
.showcase-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Reverse layout: cards left, title right */
.showcase-layout-reverse {
    grid-template-columns: 2fr 1fr;
}

.showcase-header {
    position: sticky;
    top: 120px;
}

.showcase-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.showcase-desc {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

.showcase-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.showcase-card {
    display: block;
    text-decoration: none;
    transition: var(--transition);
}

.showcase-card:hover {
    transform: translateY(-8px);
}

.showcase-card-bg {
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.1) 100%);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.showcase-card-bg.bg-orange {
    background: #FA7302;
}

.showcase-card-bg.bg-blue {
    background: #4A5568;
}

.showcase-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.showcase-card-image {
    width: calc(100% + 2rem);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0 -1rem -1.5rem -1rem;
}

.showcase-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.showcase-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, currentColor 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.showcase-card-bg.bg-orange .showcase-card-overlay {
    color: #FA7302;
}

.showcase-card-bg.bg-blue .showcase-card-overlay {
    color: #4A5568;
}

/* ---- Feature Cards ---- */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

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

    .grid-2 {
        grid-template-columns: 1fr;
    }

    /* Showcase Mobile */
    .showcase-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-layout-reverse {
        grid-template-columns: 1fr;
        /* Reorder for mobile: header first, cards second */
        display: flex;
        flex-direction: column;
    }

    .showcase-layout-reverse .showcase-header {
        order: 1;
    }

    .showcase-layout-reverse .feature-cards {
        order: 2;
    }

    .showcase-header {
        position: relative;
        top: auto;
        text-align: center;
    }

    .showcase-title {
        font-size: 2.2rem !important;
    }

    .showcase-desc {
        font-size: 0.95rem !important;
    }

    .showcase-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .showcase-card-bg {
        padding: 1rem 0.75rem;
        min-height: 280px;
    }

    .showcase-card-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .showcase-card-image {
        margin: 0 -0.75rem -1rem -0.75rem;
        width: calc(100% + 1.5rem);
        min-height: 160px;
    }

    .showcase-card-overlay {
        height: 40%;
    }

    /* Feature Cards Mobile - 2 columns */
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .feature-card {
        padding: 1.2rem 0.8rem;
    }

    .feature-icon svg {
        width: 32px !important;
        height: 32px !important;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {

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

/* ---- Category Pills ---- */
.category-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 50px;
    background: var(--bg-white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
}

.category-pill:hover,
.category-pill.active {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(4, 127, 213, 0.06);
    transform: translateY(-2px);
}

/* ---- Form Controls ---- */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E8DDD5;
    border-radius: var(--radius-md);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(250, 115, 2, 0.15);
}

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

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B5B5E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ---- Alert / Toast ---- */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideDown 0.3s ease;
}

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

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

.alert-success {
    background: var(--success-light);
    color: var(--success);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.alert-error {
    background: var(--danger-light);
    color: var(--danger);
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.alert-warning {
    background: var(--warning-light);
    color: #E65100;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.alert-info {
    background: var(--info-light);
    color: var(--info);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

/* ---- Footer ---- */
.footer {
    background: var(--accent);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 0;
}

.footer-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-simple .footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-simple .footer-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-simple .footer-wa-link:hover {
    color: #5BF08E;
    transform: translateY(-1px);
}

.footer-simple .footer-wa-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ---- Badges ---- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-pending {
    background: var(--warning-light);
    color: #E65100;
}

.badge-processing {
    background: var(--info-light);
    color: var(--info);
}

.badge-completed {
    background: var(--success-light);
    color: var(--success);
}

.badge-cancelled {
    background: var(--danger-light);
    color: var(--danger);
}

/* ---- Table ---- */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.table th {
    background: var(--bg-warm);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid #F0E8E0;
    font-size: 0.95rem;
}

.table tr:hover {
    background: var(--bg-cream);
}

.table tr:last-child td {
    border-bottom: none;
}

/* ---- Stats Cards ---- */
.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-icon.orange {
    background: var(--primary);
    color: white;
}

.stat-icon.blue {
    background: var(--secondary);
    color: white;
}

.stat-icon.green {
    background: var(--success);
    color: white;
}

.stat-icon.red {
    background: var(--danger);
    color: white;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-dark);
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ---- Modal ---- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 44, 46, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #F0E8E0;
}

.modal-header h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.3rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-warm);
    color: var(--danger);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid #F0E8E0;
}

/* ---- Pagination ---- */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-wrap nav>div:first-child {
    display: none;
}

.pagination-wrap .relative.inline-flex {
    display: flex;
    gap: 0.3rem;
}

.pagination-wrap a,
.pagination-wrap span {
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.pagination-wrap a:hover {
    background: var(--bg-warm);
    color: var(--primary);
}

.pagination-wrap span[aria-current] {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
}

/* ---- Section Padding ---- */
.section {
    padding: 3.5rem 0;
    position: relative;
    background: var(--bg-warm);
}

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state .emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: heroFloat 3s ease-in-out infinite;
}

.empty-state h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .empty-state {
        padding: 3rem 1.5rem;
    }

    .empty-state h3 {
        font-size: 1.1rem;
    }

    .empty-state p {
        font-size: 0.9rem;
    }
}

/* ---- Quantity Input ---- */
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 2px solid #E8DDD5;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.qty-control button {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-warm);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.qty-control button:hover {
    background: var(--primary-light);
    color: white;
}

.qty-control input {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: white;
}

.qty-control input:focus {
    outline: none;
}

/* ---- Utilities ---- */
.text-center {
    text-align: center;
}

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

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

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

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

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

.text-sm {
    font-size: 0.85rem;
}

.text-lg {
    font-size: 1.1rem;
}

.font-bold {
    font-weight: 700;
}

.font-extra {
    font-weight: 900;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.w-full {
    width: 100%;
}

/* ---- Decorative Floaters ---- */
.floating-foods {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.floating-foods span {
    position: absolute;
    font-size: 2rem;
    opacity: 0.06;
    animation: floatUp 15s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.06;
    }

    90% {
        opacity: 0.06;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

.floating-foods span:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.floating-foods span:nth-child(2) {
    left: 15%;
    animation-delay: 3s;
}

.floating-foods span:nth-child(3) {
    left: 25%;
    animation-delay: 6s;
    font-size: 1.5rem;
}

.floating-foods span:nth-child(4) {
    left: 40%;
    animation-delay: 2s;
}

.floating-foods span:nth-child(5) {
    left: 55%;
    animation-delay: 8s;
    font-size: 3rem;
}

.floating-foods span:nth-child(6) {
    left: 70%;
    animation-delay: 4s;
}

.floating-foods span:nth-child(7) {
    left: 85%;
    animation-delay: 7s;
    font-size: 1.8rem;
}

.floating-foods span:nth-child(8) {
    left: 95%;
    animation-delay: 1s;
}

/* ---- Cart Page ---- */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #F0E8E0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cart-item-info .price {
    color: var(--primary);
    font-weight: 700;
}

.cart-summary {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.cart-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.cart-summary .summary-total {
    border-top: 2px solid var(--primary);
    margin-top: 0.5rem;
    padding-top: 0.8rem;
    font-size: 1.2rem;
    font-weight: 900;
}

.cart-summary .total-price {
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

/* ---- Auth Pages ---- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
    padding: 2rem;
}

.auth-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.auth-card .auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card .auth-header .logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.auth-card .auth-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.auth-card .auth-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.error-text {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* ---- Admin Sidebar ---- */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--accent);
    color: white;
    padding: 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar .sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar .sidebar-brand .brand-icon {
    font-size: 1.8rem;
}

.admin-sidebar .sidebar-menu {
    list-style: none;
}

.admin-sidebar .sidebar-menu li {
    margin-bottom: 0.3rem;
}

.admin-sidebar .sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.admin-sidebar .sidebar-menu a:hover,
.admin-sidebar .sidebar-menu a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.admin-sidebar .sidebar-menu .menu-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    margin: 1.5rem 0 0.5rem 0.5rem;
    font-weight: 700;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 2rem;
    background: var(--bg-cream);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
        padding: 1rem;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-header h1 {
        font-size: 1.5rem;
    }

    /* Mobile Toggle Button */
    .mobile-toggle {
        display: block !important;
        background: var(--accent);
        color: white;
        border: none;
        padding: 0.7rem 1.2rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 1rem;
        box-shadow: var(--shadow-sm);
    }

    /* Mobile Card View for Tables */
    .desktop-table {
        display: none;
    }

    .mobile-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .mobile-card {
        background: var(--bg-white);
        border-radius: var(--radius-md);
        padding: 0.75rem;
        box-shadow: var(--shadow-sm);
    }

    .mobile-card-header {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--bg-warm);
    }

    .mobile-card-header img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .mobile-card-body {
        margin-bottom: 0.75rem;
    }

    .mobile-card-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0.3rem 0;
        font-size: 0.8rem;
    }

    .mobile-card-actions {
        display: flex;
        gap: 0.4rem;
    }

    .mobile-card-actions .btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }

    /* Table responsive */
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table {
        min-width: 700px;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stat-info h3 {
        font-size: 1.5rem;
    }

    .stat-info p {
        font-size: 0.75rem;
    }

    /* Grid columns mobile - only hide desktop-grid for admin tables */
    .desktop-grid {
        display: none;
    }

    /* Modal mobile */
    .modal {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Card padding mobile */
    .card {
        padding: 1rem;
    }

    /* Form group mobile */
    .form-group {
        margin-bottom: 1rem;
    }

    /* Button group mobile */
    .flex.gap-1 {
        flex-wrap: wrap;
    }

    .btn-sm {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
}

/* Desktop: Hide mobile cards, show table */
@media (min-width: 769px) {
    .mobile-cards {
        display: none;
    }

    .desktop-table,
    .desktop-grid {
        display: block;
    }
}

/* ---- Chart Container ---- */
.chart-container {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.chart-container h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

/* ---- Product Detail Page ---- */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.product-detail .product-gallery {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-warm), var(--primary-light));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    box-shadow: var(--shadow-md);
}

.product-detail .product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.product-detail .detail-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-detail .detail-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-detail .detail-desc {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-detail .detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-detail .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.product-detail .add-to-cart-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Filter sidebar */
.filter-sidebar {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.filter-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.slide-up {
    animation: slideUp 0.5s ease;
}

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

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

/* Cart sidebar layout */
.cart-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Remove sticky positioning on mobile */
    .cart-summary {
        position: relative;
        top: auto;
        margin-top: 1rem;
    }

    /* Stack cart items properly on mobile */
    .cart-item {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }

    .cart-item-info {
        flex: 1;
        min-width: 120px;
    }

    .cart-item-info h4 {
        font-size: 0.9rem;
    }

    .cart-item-info .price {
        font-size: 0.85rem;
    }

    /* Adjust quantity control on mobile */
    .cart-item .qty-control {
        width: 100px;
    }

    .cart-item .qty-control button {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .cart-item .qty-control input {
        width: 44px;
        font-size: 0.85rem;
    }

    /* Adjust subtotal section */
    .cart-item > div:last-child {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0.5rem;
        border-top: 1px solid var(--bg-warm);
    }

    .cart-item > div:last-child .font-bold {
        font-size: 0.95rem;
    }

    /* Summary adjustments */
    .cart-summary h3 {
        font-size: 1.1rem;
    }

    .cart-summary .summary-row {
        font-size: 0.85rem;
    }

    .cart-summary .total-price {
        font-size: 1.3rem;
    }
}

/* ---- Floating Action Buttons ---- */
.floating-actions {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, opacity 0.3s ease;
    text-decoration: none;
    position: relative;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-cart {
    background: var(--primary);
    color: white;
}

.fab-cart .fab-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--secondary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-wa {
    background: #25D366;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.fab-wa.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ---- Scroll Reveal ---- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Hero Cover Scroll ---- */
.content-overlay {
    position: relative;
    z-index: 2;
    background: var(--bg-warm);
    border-radius: 24px 24px 0 0;
    margin-top: -30px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
}

/* ---- Hero Floating Emoji ---- */
.hero-emoji {
    position: absolute;
    font-size: 2.5rem;
    z-index: 1;
    opacity: 0.3;
    animation: heroBob 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroBob {

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

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