/*
 * ============================================================================
 * Latife - Gastronomia Arabe | Premium Theme
 * ============================================================================
 */

/* Import Google Fonts - Elegant combination */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #6c757d;
    --accent-color: #00913f;
    --accent-hover: #007a35;
    --background-color: #ffffff;
    --text-color: #4a4a4a;
    --text-light: #717171;
    --light-gray: #f9f9f9;
    --border-color: #e8e8e8;
    --header-bg: #ffe000;
    --gold-accent: #c9a050;
    --shadow-soft: 0 2px 15px rgba(0,0,0,0.06);
    --shadow-medium: 0 4px 25px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 35px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-color);
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-color);
    line-height: 1.8;
}

a {
    transition: color var(--transition-fast);
}

::selection {
    background-color: var(--header-bg);
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: var(--header-bg) !important;
    box-shadow: var(--shadow-soft);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition-smooth);
}

.navbar.scrolled .navbar-logo {
    height: 42px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    padding: 5rem 0 4rem 0;
    margin-top: 76px;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero-section .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Main content spacing for fixed navbar */
.main-content {
    padding-top: 76px;
}

/* Product Cards */
.product-card {
    border: none;
    transition: all var(--transition-smooth);
    margin-bottom: 2.5rem;
    background: transparent;
    position: relative;
}

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

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
}

.product-card:hover .product-img-wrapper {
    box-shadow: var(--shadow-hover);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 4rem 0 3rem;
    margin-top: 5rem;
    font-size: 0.9rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--header-bg);
}

.footer h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1.75rem;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer p,
.footer .text-muted {
    color: #b0b0b0 !important;
    line-height: 1.8;
}

.footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer a:hover {
    color: var(--header-bg);
}

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

.footer .form-control {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
}

.footer .form-control:focus {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--header-bg);
    box-shadow: none;
}

.footer .form-control::placeholder {
    color: #888;
}

.footer .btn-outline-dark {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer .btn-outline-dark:hover {
    background-color: var(--header-bg);
    border-color: var(--header-bg);
    color: #000;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: white;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 145, 63, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 145, 63, 0.3);
}

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

.btn-outline-primary {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.8rem 1.75rem;
    transition: all var(--transition-smooth);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.8rem 1.75rem;
    transition: all var(--transition-smooth);
}

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

/* Badges/Tags */
.badge-diet {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    margin-right: 0.2rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Inline Cart Toast - shows near add button */
.inline-toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideUp 0.3s ease-out;
    max-width: 90%;
}

.inline-toast .toast-icon {
    font-size: 1.5rem;
}

.inline-toast .toast-content {
    flex: 1;
}

.inline-toast .toast-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.inline-toast .toast-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.inline-toast .toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
}

.inline-toast .toast-close:hover {
    opacity: 1;
}

/* ============================================================================
   Mini Cart Drawer
   ============================================================================ */

.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1040;
}

.mini-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-cart-drawer.open {
    right: 0;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
}

.mini-cart-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.mini-cart-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.mini-cart-close:hover {
    color: var(--primary-color);
}

.mini-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Progress Banners */
.mini-cart-progress {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid var(--border-color);
}

.progress-banner {
    margin-bottom: 1rem;
}

.progress-banner:last-child {
    margin-bottom: 0;
}

.progress-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.progress-banner-header span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.progress-value {
    color: var(--text-light);
    font-size: 0.8rem;
}

.progress-value.achieved {
    color: var(--accent-color);
    font-weight: 600;
}

.progress-bar-track {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar-fill.shipping {
    background: linear-gradient(90deg, #17a2b8 0%, #20c997 100%);
}

.progress-bar-fill.cashback {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.progress-tiers {
    position: relative;
    height: 20px;
    margin-top: 4px;
}

.tier-marker {
    position: absolute;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.tier-marker.achieved {
    color: var(--accent-color);
    font-weight: 700;
}

/* Cart Items */
.mini-cart-items {
    padding: 0.5rem 0;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

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

.mini-cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--light-gray);
}

.mini-cart-item-info {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-name {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item-price {
    font-size: 0.8rem;
    color: var(--text-light);
}

.mini-cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.mini-cart-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
}

.mini-cart-qty .qty-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mini-cart-qty .qty-btn:hover {
    background: var(--border-color);
}

.mini-cart-qty span {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
}

.mini-cart-remove {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.mini-cart-remove:hover {
    opacity: 1;
}

/* Empty State */
.mini-cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

.mini-cart-empty i {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.mini-cart-empty p {
    margin-bottom: 1rem;
}

/* Footer */
.mini-cart-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
    background: var(--light-gray);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.mini-cart-subtotal .subtotal-value {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
}

/* Mobile Responsive - Full width on small screens */
@media (max-width: 480px) {
    .mini-cart-drawer {
        max-width: 100%;
    }
    
    .mini-cart-item-img {
        width: 50px;
        height: 50px;
    }
    
    .mini-cart-item-name {
        font-size: 0.85rem;
    }
    
    .progress-banner-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Product Page - Sticky Buy Box (mobile) */
.sticky-buy-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

@media (max-width: 991.98px) {
    .sticky-buy-box {
        display: block;
    }
    
    .sticky-buy-box .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .sticky-buy-box .price-display {
        font-weight: 700;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    body.has-sticky-buy {
        padding-bottom: 100px;
    }
}

/* Product Detail Page Improvements */
.product-detail-info {
    position: relative;
}

@media (min-width: 992px) {
    .product-detail-info {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}

/* Better button styling */
.btn-add-cart {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-add-cart:hover {
    background-color: #007a35;
    border-color: #007a35;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,145,63,0.3);
}

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

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-selector button:hover {
    background: #e9ecef;
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-weight: 600;
}

.quantity-selector input:focus {
    outline: none;
}

/* Search Bar Styles */
.navbar-search {
    position: relative;
    flex: 0 0 auto;
    margin: 0 2rem;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 0.4rem 1rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-container:focus-within,
.search-container.search-focused {
    width: 400px;
}

.search-container:hover,
.search-container.search-focused {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-icon {
    color: #666;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    outline: none;
    min-width: 150px;
}

.search-input::placeholder {
    color: #999;
}

.search-clear {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear:hover {
    color: #333;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1100;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

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

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 1rem;
    background: #f0f0f0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.search-no-results {
    padding: 1.5rem;
    text-align: center;
}

.search-no-results p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Search */
.mobile-search-container {
    padding: 0.5rem 0;
    position: relative;
}

.search-container.mobile {
    width: 100%;
}

.search-results.mobile {
    position: relative;
    margin-top: 0.5rem;
    box-shadow: none;
    border: 1px solid #eee;
}

@media (max-width: 991.98px) {
    .navbar-search {
        display: none !important;
    }
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 80%;
    margin: 76px auto 0;
    overflow: hidden;
    background-color: transparent;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding-top: 12px;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide a {
    display: block;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .banner-carousel {
        width: 100%;
        margin: 76px auto 0;
        border-radius: 0;
    }
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

@media (max-width: 576px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .carousel-btn.prev {
        left: 10px;
    }
    .carousel-btn.next {
        right: 10px;
    }
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-indicator.active {
    background: var(--accent-color, #00913f);
    border-color: var(--accent-color, #00913f);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.cta-banner-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    color: inherit;
}

.cta-banner-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.cta-banner-content {
    padding: 2rem;
    flex: 1;
}

.cta-banner-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cta-banner-content p {
    color: #666;
    margin-bottom: 1rem;
}

.cta-banner-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@media (max-width: 576px) {
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
    }
    .cta-banner-img {
        width: 100%;
        height: 180px;
    }
}

/* Info Banners Section */
.info-banners-section {
    padding: 3.5rem 0;
    background: var(--header-bg);
    position: relative;
}

.info-banners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.info-banner-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
}

.info-banner-item:hover {
    background: white;
    color: inherit;
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.info-banner-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,145,63,0.08);
    border-radius: 50%;
    transition: all var(--transition-smooth);
}

.info-banner-item:hover .info-banner-icon {
    background: var(--accent-color);
    color: white;
}

.info-banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-banner-text strong {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.info-banner-text span {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

@media (max-width: 991.98px) {
    .info-banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-banners-grid {
        grid-template-columns: 1fr;
    }
    
    .info-banner-item {
        padding: 1.25rem;
    }
    
    .info-banner-icon {
        font-size: 1.4rem;
        width: 48px;
        height: 48px;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Featured Products Section */
.featured-products-section {
    padding: 3rem 0;
    background: white;
}

.products-carousel {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.products-track {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
}

.product-carousel-item {
    flex-shrink: 0;
    width: 220px;
}

.product-carousel-item .product-card {
    margin-bottom: 0;
}

.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-nav-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

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

.carousel-nav-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .product-carousel-item {
        width: 160px;
    }
    
    .carousel-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-nav-btn i {
        font-size: 1rem;
    }
}

/* Filters Section (Categories + Diets) */
.filters-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.filter-group {
    margin-bottom: 3.5rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.filter-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-smooth);
}

.filter-item:hover {
    transform: translateY(-6px);
}

.filter-img-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid white;
    transition: all var(--transition-smooth);
}

.filter-item:hover .filter-img-wrapper {
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-accent);
}

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

.filter-item:hover .filter-img {
    transform: scale(1.1);
}

.filter-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .filter-grid {
        gap: 1.75rem;
    }
    
    .filter-img-wrapper {
        width: 85px;
        height: 85px;
    }
    
    .filter-name {
        font-size: 0.85rem;
    }
}

/* Delivery Banner */
.delivery-banner-section {
    padding: 2rem 0;
    background: white;
}

.delivery-banner {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
}

.delivery-banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.delivery-banner:hover .delivery-banner-img {
    transform: scale(1.02);
}

.delivery-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.delivery-banner-overlay strong {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.delivery-banner-overlay span {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .delivery-banner-overlay {
        padding: 1.5rem;
    }
    
    .delivery-banner-overlay strong {
        font-size: 1.2rem;
    }
    
    .delivery-banner-overlay span {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: white;
}

.testimonials-section .section-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    padding-top: 0.5rem;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid var(--border-color);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--gold-accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
}

.testimonial-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 0;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 576px) {
    .testimonial-card {
        width: 280px;
        padding: 1.5rem;
    }
}

/* ============================================
   Cards & Forms - Sophisticated Styling
   ============================================ */

.card {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--shadow-medium);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Form Controls */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background-color: #fafafa;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 145, 63, 0.1);
    background-color: white;
}

.form-label {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Page Title - Generic */
.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}

.alert-success {
    background-color: rgba(0, 145, 63, 0.1);
    color: var(--accent-color);
}

.alert-info {
    background-color: rgba(255, 224, 0, 0.2);
    color: var(--primary-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Text Utilities */
.text-accent {
    color: var(--accent-color) !important;
}

.text-gold {
    color: var(--gold-accent) !important;
}

/* Divider with text */
.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider-text::before,
.divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider-text span {
    padding: 0 1.5rem;
}

/* Shadow Utilities */
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-medium { box-shadow: var(--shadow-medium); }
.shadow-hover { box-shadow: var(--shadow-hover); }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Page wrapper */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-wrapper .footer {
    margin-top: auto;
}
