/* 
   Hela Rasa (හෙළ රස) - Premium Web App Stylesheet
   Color Palette: Vibrant Leaf Green, Golden Harvest, Crisp White, Luxury Glassmorphism
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Noto+Sans+Sinhala:wght@400;700&display=swap');

:root {
    --primary: #2d7f4c;
    --primary-light: #45b072;
    --primary-dark: #1b4d2e;
    --accent: #f3c623;
    --accent-hover: #d8ad18;
    --text-dark: #1c2826;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(45, 127, 76, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -15px rgba(45, 127, 76, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', 'Noto Sans Sinhala', sans-serif;
    --font-body: 'Inter', 'Noto Sans Sinhala', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation Bar */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: var(--transition);
}

.nav-brand:hover .nav-logo {
    transform: rotate(10deg) scale(1.05);
}

.brand-details h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.brand-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Currency Switcher Toggle */
.currency-toggle {
    display: flex;
    background: rgba(45, 127, 76, 0.1);
    border-radius: 30px;
    padding: 3px;
    border: 1px solid var(--border-color);
}

.currency-btn {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    transition: var(--transition);
}

.currency-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(45, 127, 76, 0.2);
}

/* Menu Toggle & Cart Icon Button */
.btn-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    color: var(--primary-dark);
    transition: var(--transition);
    border-radius: 50%;
}

.btn-icon:hover {
    background: rgba(45, 127, 76, 0.08);
}

.btn-icon svg {
    width: 26px;
    height: 26px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    border: 2px solid white;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.6) 100%), 
                url('../images/cover.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    overflow: hidden;
    background-attachment: scroll;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Animated Hero Line */
.animated-hero-line {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    min-height: 2.2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.typed-cursor {
    font-weight: 300;
    color: var(--accent);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-item svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

/* Main Container & Layout */
.main-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* Category Grid & Showcase */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

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

.category-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.category-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.category-info h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.category-info span {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Modal / Sliding Panel - Common Base */
.overlay-panel {
    position: fixed;
    inset: 0;
    background: rgba(28, 40, 38, 0.4);
    backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay-panel.active {
    opacity: 1;
    visibility: visible;
}

/* Right Navigation Sidebar Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: rgba(20, 54, 32, 0.82); /* Semi-transparent emerald green */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 201;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
}

.nav-drawer.active {
    transform: translateX(-320px);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.drawer-header h2 {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 800;
}

.drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.drawer-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drawer-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
    display: block;
}

.drawer-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    padding-left: 1.5rem;
}

/* Override Weekly Admin panel button inside dark drawer */
.drawer-menu a[style*="border"] {
    margin-top: 2rem !important;
    color: var(--accent) !important;
    border: 2px dashed var(--accent) !important;
    background: rgba(243, 198, 35, 0.05) !important;
    text-align: center;
}

.drawer-menu a[style*="border"]:hover {
    background: var(--accent) !important;
    color: var(--text-dark) !important;
    padding-left: 1rem !important; /* Keep centered padding on hover */
}

/* Navigation drawer bottom contact details styling */
.nav-drawer div[style*="border-top"] {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.nav-drawer div[style*="border-top"] strong {
    color: var(--accent) !important;
}

/* Right Cart Sidebar Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: white;
    z-index: 201;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(-420px);
}

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

.cart-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-empty-state {
    text-align: center;
    margin-top: 5rem;
    color: var(--text-muted);
}

.cart-empty-state svg {
    width: 60px;
    height: 60px;
    stroke: var(--text-muted);
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

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

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-item-portion {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

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

.cart-item-qty-control {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.qty-btn {
    border: 1px solid #cbd5e1;
    background: white;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: var(--transition);
}

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

.qty-val {
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ef4444;
    padding: 2px;
}

.cart-summary {
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.summary-row.cool-box {
    color: var(--primary);
    font-weight: 600;
}

.summary-total {
    border-top: 1px solid #cbd5e1;
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.cart-actions {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(45, 127, 76, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 6px 20px rgba(45, 127, 76, 0.3);
}

.btn-primary:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

/* Category Items Section / Modal */
.items-modal {
    position: fixed;
    inset: 0;
    background: rgba(28, 40, 38, 0.5);
    backdrop-filter: blur(10px);
    z-index: 250;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.items-modal.active {
    opacity: 1;
    visibility: visible;
}

.items-modal-content {
    background: white;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 24px;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.items-modal.active .items-modal-content {
    transform: scale(1);
}

.items-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.items-modal-header h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

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

.item-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(45, 127, 76, 0.1);
    border-color: rgba(45, 127, 76, 0.2);
}

.item-card-img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.item-card-details {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.item-card-name-si {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.item-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.item-card-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-add-shortcut {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-shortcut:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* Product Detail Popup (Detailed modal) */
.details-modal {
    position: fixed;
    inset: 0;
    background: rgba(28, 40, 38, 0.5);
    backdrop-filter: blur(10px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.details-modal.active {
    opacity: 1;
    visibility: visible;
}

.details-modal-content {
    background: white;
    width: 100%;
    max-width: 960px; /* Increased from 850px */
    max-height: 90vh;
    border-radius: 24px;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.details-modal.active .details-modal-content {
    transform: scale(1);
}

.details-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: var(--text-dark);
}

.details-img-container {
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

.details-body {
    padding: 2rem;
}

@media (min-width: 768px) {
    .details-modal-content {
        flex-direction: row;
        max-height: 600px; /* Increased from 560px */
        height: auto;
        align-items: stretch;
        overflow: hidden;
    }
    
    .details-img-container {
        width: 45%;
        height: auto;
        min-height: 100%;
    }
    
    .details-body {
        width: 55%;
        padding: 2.8rem 2.5rem; /* Increased padding */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: auto;
    }
}

.details-title-container {
    margin-bottom: 1.2rem;
}

.details-title-en {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.details-title-si {
    font-size: 1.25rem;
    color: var(--primary-light);
    font-weight: 700;
}

.details-desc {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.details-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.details-meta-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.details-meta-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.details-meta-item.allergens p {
    color: #ef4444;
}

/* Portion Selection Styles */
.portion-section {
    margin-bottom: 2rem;
}

.portion-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.portion-options {
    display: flex;
    gap: 1rem;
}

.portion-option {
    flex: 1;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.portion-option.active {
    border-color: var(--primary);
    background: rgba(45, 127, 76, 0.04);
}

.portion-lbl {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.portion-option.active .portion-lbl {
    color: var(--primary);
}

.portion-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0.2rem;
}

.portion-badge {
    position: absolute;
    top: -12px;
    right: 10px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(243, 198, 35, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.details-footer {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.4rem;
}

.qty-selector button {
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
}

.qty-selector span {
    padding: 0 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Checkout Page Section (Container) */
.checkout-section {
    display: none; /* Active via JS */
    width: 92%;
    max-width: 1300px;
    margin: 3rem auto;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.checkout-section.active {
    display: flex;
    flex-wrap: wrap;
}

.checkout-left {
    flex: 1.3;
    padding: 3rem;
    min-width: 320px;
}

.checkout-right {
    flex: 1;
    background: #f8fafc;
    padding: 3rem;
    border-left: 1px solid #e2e8f0;
    min-width: 320px;
}

.checkout-title {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 127, 76, 0.1);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

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

/* Payment Method Selections */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-method {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method.active {
    border-color: var(--primary);
    background: rgba(45, 127, 76, 0.04);
}

.payment-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method.active .payment-radio {
    border-color: var(--primary);
}

.payment-method.active .payment-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

.payment-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.payment-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Payment Details Display Panel */
.payment-details-panel {
    background: #f8fafc;
    border: 1px dashed var(--primary);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1rem;
    display: none;
}

.payment-details-panel.active {
    display: block;
}

.paypay-qr {
    max-width: 220px;
    margin: 1rem 0;
    border-radius: 12px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 150;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Features Section */
.features-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(45, 127, 76, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

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

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

.feature-card span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #12331f 100%);
    padding: 6rem 2rem;
    margin: 5rem 0;
    color: white;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(243, 198, 35, 0.4);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.step-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Chef Section */
.about-chef-section {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-img-container {
    flex: 1;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid white;
    outline: 2px solid var(--primary-light);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-grid:hover .about-img {
    transform: scale(1.05);
}

.about-text-container {
    flex: 1.2;
}

.about-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 0.8rem;
}

.about-text-container h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text-container p {
    color: #475569;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.about-quote {
    background: rgba(45, 127, 76, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 16px 16px 0;
    margin-top: 2rem;
}

.about-quote p {
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.about-quote span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

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

.testimonial-card {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -10px rgba(45, 127, 76, 0.12);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Featured Items Showcase on Home Page */
.featured-items-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

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

.featured-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.featured-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.featured-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.featured-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-item-card:hover .featured-item-img {
    transform: scale(1.08);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-dark);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.featured-item-card:nth-child(2) .featured-badge {
    background: var(--accent);
    color: var(--text-dark);
}

.featured-item-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-item-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.si-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.featured-item-info p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.featured-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    margin-top: auto;
}

.featured-item-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-see-more {
    background: transparent;
    border: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-see-more:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

/* Footer Styles */
.site-footer {
    background: #0f2b18; /* Very deep forest green */
    color: #e2e8f0;
    padding: 4rem 2rem 2rem 2rem;
    border-top: 4px solid var(--accent);
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

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

.footer-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.footer-delivery-badge {
    display: inline-block;
    background: rgba(243, 198, 35, 0.1);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(243, 198, 35, 0.2);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.info-icon {
    font-size: 1.1rem;
}

.bank-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
}

.footer-bank-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #cbd5e1;
}

.footer-bank-card strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Inline Header Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 0.2rem;
    transition: var(--transition);
    position: relative;
    display: block;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}

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

/* Homepage Grouped Menu Grids styling */
#homepage-menu-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.menu-section-group {
    margin-bottom: 5rem;
    scroll-margin-top: 100px; /* Offset smooth scroll for header line */
}

.menu-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.menu-section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.btn-view-all {
    background: rgba(45, 127, 76, 0.08);
    border: 1px solid var(--border-color);
    color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(4px);
}

.menu-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.homepage-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-dark);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 5;
}

.homepage-badge.discount {
    background: var(--accent);
    color: var(--text-dark);
}

/* Category Hero Banner */
.category-hero {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
    z-index: 1;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.category-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent); /* Gold text */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
}

.category-hero-content p {
    font-size: 0.95rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .category-hero {
        height: 180px;
    }
    
    .category-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .category-hero-content p {
        font-size: 0.85rem;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.8rem 1rem;
    }
    
    .brand-details h1 {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 4rem 1rem;
    }
    
    .checkout-left, .checkout-right {
        padding: 2rem;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .cart-drawer.active {
        transform: translateX(-100%);
    }

    .about-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-img-container {
        width: 100%;
        height: 300px;
    }
    
    .steps-container {
        gap: 2rem;
    }
}

/* Compact Checkout Custom Styles */
.checkout-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.checkout-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 0.5rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.8rem;
}

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

.payment-method-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 95px;
}

.payment-method-card.active {
    border-color: var(--primary);
    background: rgba(45, 127, 76, 0.04);
}

.pay-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.payment-method-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    line-height: 1.3;
}

/* Custom Toast Notifications for Customer Site */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse; /* Stacks new toasts from bottom up */
    gap: 10px;
    max-width: 380px;
    width: calc(100% - 40px);
}

/* Hide toast notifications when the cart drawer is open to prevent overlapping controls */
.cart-drawer.active ~ .toast-container {
    display: none !important;
}

.toast {
    background: white;
    color: var(--text-dark);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: toastSlideIn 0.3s ease forwards;
    transition: all 0.3s ease;
}

.toast.toast-success {
    border-left-color: var(--primary);
}

.toast.toast-error {
    border-left-color: #ef4444;
}

.toast.toast-warning {
    border-left-color: #f3c623;
}

.toast .toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
    padding: 0;
}

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

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


/* ==========================================
   Main Page Promotion Popup Modal Styling
   ========================================== */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.promo-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease forwards;
}

.promo-modal-card {
    position: relative;
    z-index: 10;
    background: white;
    max-width: 500px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 30px rgba(45, 127, 76, 0.2);
    overflow: hidden;
    border: 2px solid rgba(45, 127, 76, 0.2);
    animation: promoModalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    text-align: center;
}

@keyframes promoModalPop {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.promo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e2e8f0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-dark);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.promo-modal-close:hover {
    background: #f1f5f9;
    transform: rotate(90deg);
}

.promo-modal-header {
    background: linear-gradient(135deg, #1b4d2e 0%, #2d7f4c 100%);
    padding: 2.2rem 1.8rem 1.8rem;
    color: white;
}

.promo-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(243, 198, 35, 0.4);
    margin-bottom: 0.8rem;
    animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.25;
}

.promo-modal-body {
    padding: 2rem 1.8rem 1.5rem;
    background: white;
}

.promo-hero-icon {
    display: flex;
    justify-content: center;
    margin-top: -3.2rem;
    margin-bottom: 1.2rem;
}

.promo-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    border: 4px solid #f8fafc;
}

.promo-subtitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.promo-desc {
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.promo-dates-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px dashed #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
}

.promo-modal-footer {
    padding: 0 1.8rem 1.8rem;
    background: white;
}

.btn-promo-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #22643c 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(45, 127, 76, 0.35);
    transition: all 0.25s ease;
}

.btn-promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(45, 127, 76, 0.45);
    background: linear-gradient(135deg, #328c54 0%, #1b4d2e 100%);
}



