@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Premium Organic Theme */
:root {
    --primary-color: #2D5A27; /* Deep Forest Green */
    --primary-light: #5B8C51; /* Fresh Leaf Green */
    --primary-dark: #1E3D1A; /* Shadow Green */
    --secondary-color: #D4A373; /* Golden Butter / Honey Cream */
    --secondary-hover: #C59262;
    --text-color: #1E291B; /* Charcoal Green */
    --text-muted: #556B52; /* Sage Gray */
    --bg-white: #ffffff;
    --bg-cream: #FDFBF7; /* Creamy Milk White */
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border-glass: rgb(from var(--primary-color) r g b / 0.1);
    
    --shadow-sm: 0 4px 12px rgb(from var(--primary-color) r g b / 0.05);
    --shadow-md: 0 8px 30px rgb(from var(--primary-color) r g b / 0.08);
    --shadow-lg: 0 16px 40px rgb(from var(--primary-color) r g b / 0.12);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgb(from var(--primary-color) r g b / 0.4); }
    70% { box-shadow: 0 0 0 15px rgb(from var(--primary-color) r g b / 0); }
    100% { box-shadow: 0 0 0 0 rgb(from var(--primary-color) r g b / 0); }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 90px 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 750;
    line-height: 1.25;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw + 1rem, 2.8rem);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.05rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgb(from var(--primary-color) r g b / 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(from var(--primary-color) r g b / 0.35);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(from var(--primary-color) r g b / 0.15);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgb(from var(--secondary-color) r g b / 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgb(from var(--secondary-color) r g b / 0.35);
}

/* Header & Glassmorphic Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-glass);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo svg {
    height: 38px;
    width: 38px;
    fill: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after, 
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    background-color: rgb(from var(--primary-color) r g b / 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.08);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-cream);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    background-color: rgb(from var(--primary-color) r g b / 0.05);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: rgb(from var(--primary-color) r g b / 0.1);
    color: var(--primary-color);
    transform: scale(1.08);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at top right, rgb(from var(--primary-color) r g b / 0.12), transparent 50%), 
                radial-gradient(circle at bottom left, rgb(from var(--secondary-color) r g b / 0.08), transparent 50%),
                var(--bg-cream);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1.1;
    max-width: 620px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgb(from var(--primary-color) r g b / 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgb(from var(--primary-color) r g b / 0.2);
}

.hero-content h1 {
    font-size: clamp(2rem, 5.5vw + 1rem, 3.8rem);
    margin-bottom: 24px;
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--primary-light);
    position: relative;
    z-index: 1;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgb(from var(--secondary-color) r g b / 0.25);
    z-index: -1;
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0.9;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 30px;
    z-index: 0;
}

.hero-image img {
    max-width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    position: relative;
    transition: var(--transition);
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Category Grid */
.categories {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: 24px;
}

.category-card {
    background-color: var(--bg-white);
    padding: 35px 24px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    background-color: var(--bg-white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.category-card svg, .category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.category-card:hover svg, .category-card:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-light);
}

.category-card span {
    font-weight: 700;
    font-size: 1.15rem;
    display: block;
    color: var(--primary-dark);
}

/* Products Section */
.shop {
    background-color: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-glass);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgb(from var(--primary-color) r g b / 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.product-badge.dairy-badge {
    background-color: #3b6088; /* Fresh Milk Blue */
}

.product-img {
    height: 230px;
    overflow: hidden;
    background-color: #f6f8f5;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.add-to-cart-btn {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgb(from var(--primary-color) r g b / 0.15);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-light);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgb(from var(--primary-color) r g b / 0.3);
}

.add-to-cart-btn i {
    font-size: 1.1rem;
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-filter-btn {
    padding: 12px 26px;
    border-radius: 50px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-filter-btn:hover,
.category-filter-btn.active {
    border-color: var(--primary-color);
    color: white;
    background-color: var(--primary-color);
    box-shadow: 0 5px 15px rgb(from var(--primary-color) r g b / 0.15);
    transform: translateY(-2px);
}

/* Delivery Banner */
.delivery-banner {
    background: linear-gradient(rgb(from var(--primary-color) r g b / 0.9), rgba(30, 61, 26, 0.95)), 
                url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=1200') no-repeat center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    background-attachment: fixed;
}

.delivery-banner h2 {
    font-size: clamp(1.8rem, 4vw + 1rem, 3rem);
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
}

.delivery-banner p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

/* Cart Drawer UI - Premium Slide-out */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 27, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 460px;
    height: 100%;
    background-color: var(--bg-cream);
    z-index: 2001;
    box-shadow: -10px 0 40px rgba(30, 41, 27, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.cart-drawer-close {
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-drawer-close:hover {
    background-color: rgb(from var(--primary-color) r g b / 0.1);
    color: var(--primary-color);
}

.drawer-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgb(from var(--primary-color) r g b / 0.08);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-details {
    flex: 1;
}

.item-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.item-price {
    font-weight: 700;
    color: var(--primary-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgb(from var(--primary-color) r g b / 0.05);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border-glass);
}

.qty-btn {
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    color: var(--primary-light);
    transform: scale(1.2);
}

.cart-drawer-footer {
    padding: 24px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-glass);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-muted);
}

.total-row {
    border-top: 1px dashed var(--border-glass);
    padding-top: 12px;
    margin-top: 12px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Form Styles inside Drawer */
.checkout-form {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: var(--bg-white);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgb(from var(--primary-color) r g b / 0.1);
}

/* Footer Section */
footer {
    background-color: #1A2619; /* Very dark rich forest green */
    color: rgba(255, 255, 255, 0.8);
    padding: 90px 0 30px;
    font-size: 1rem;
    border-top: 5px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h4 {
    margin-bottom: 28px;
    position: relative;
    color: white;
    font-size: 1.25rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 45px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.6rem;
    color: white !important;
    margin-bottom: 20px;
}

.footer-logo svg {
    height: 40px;
    width: 40px;
    fill: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    background: rgba(255, 255, 255, 0.05);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.copy a {
    color: var(--secondary-color);
    font-weight: 600;
}

.copy a:hover {
    color: white;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2050;
}

.toast {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    margin-top: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1), fadeOut 0.5s ease-out 2.5s forwards;
}

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

/* About Page Styles */
.main-content {
    padding: 160px 0 80px;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-item {
    flex: 1;
    min-width: 320px;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--border-glass);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
}

.check-icon {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.about-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Details Cards */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-glass);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background-color: rgb(from var(--primary-color) r g b / 0.06);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    margin-bottom: 6px;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.contact-form-container {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-glass);
}

/* Media Queries & Responsive Layouts */
@media (max-width: 991px) {
    .hero {
        padding: 150px 0 80px;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image img {
        max-width: 500px;
    }
    .hero-image::before {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    .nav-links {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background-color: var(--bg-cream);
        flex-direction: column;
        padding: 40px 0;
        transition: var(--transition);
        z-index: 999;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .cart-drawer {
        max-width: 100%;
        right: -100%;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    .contact-info-card,
    .contact-form-container {
        padding: 30px 20px;
    }
    .logo span {
        font-size: 1.3rem;
    }
    .navbar {
        padding: 12px 0;
    }
    .nav-links {
        top: 72px;
        height: calc(100vh - 72px);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 65px;
    }
    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .filter-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }
    .category-filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    .checkout-form {
        padding: 16px;
    }
}
