/* 
   Vegnar Premium Eco-Friendly CSS Design System
   Color Palette: Green Base (Forest, Sage, Cream, Dark Charcoal, Gold Accents)
*/

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

:root {
    --eco-primary: #1b4d3e;      /* Deep Forest Green */
    --eco-primary-rgb: 27, 77, 62;
    --eco-secondary: #2d6a4f;    /* Leaf Green */
    --eco-secondary-rgb: 45, 106, 79;
    --eco-accent: #52b788;       /* Bright Sage Green */
    --eco-accent-light: #d8f3dc; /* Creamy Sage */
    --eco-cream: #fbfbfa;        /* Premium Off-White */
    --eco-cream-dark: #f2f0ea;   /* Warm Sand */
    --eco-dark: #162421;         /* Deep Charcoal Green */
    --eco-dark-rgb: 22, 36, 33;
    --eco-gold: #d4af37;         /* Antique Gold Accent */
    --eco-danger: #bd3a42;       /* Soft Red */
    --eco-success: #2d6a4f;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(27, 77, 62, 0.05);
    --shadow-md: 0 8px 24px rgba(27, 77, 62, 0.08);
    --shadow-lg: 0 16px 40px rgba(27, 77, 62, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--eco-cream);
    color: var(--eco-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--eco-primary);
}

a {
    color: var(--eco-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--eco-accent);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--eco-cream-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--eco-primary);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--eco-secondary);
}

/* Utility Layouts & Sections */
.section-padding {
    padding: 100px 0;
}
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-cream {
    background-color: var(--eco-cream-dark);
}
.bg-forest {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
}
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4, .bg-forest h5, .bg-forest h6 {
    color: var(--eco-accent-light);
}

/* Premium Buttons */
.btn-eco {
    font-family: var(--font-sans);
    font-weight: 500;
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    border: 2px solid var(--eco-primary);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-eco::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--eco-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-eco:hover {
    color: var(--eco-primary);
    border-color: var(--eco-accent);
}
.btn-eco:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-eco-outline {
    font-family: var(--font-sans);
    font-weight: 500;
    background-color: transparent;
    color: var(--eco-primary);
    border: 2px solid var(--eco-primary);
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}
.btn-eco-outline:hover {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
}

.btn-eco-gold {
    background-color: var(--eco-gold);
    color: var(--eco-dark);
    border: 2px solid var(--eco-gold);
}
.btn-eco-gold:hover {
    background-color: transparent;
    color: var(--eco-gold);
}

/* Glassmorphism Navigation Bar */
.navbar-vegnar {
    background-color: rgba(251, 251, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 77, 62, 0.08);
    transition: var(--transition-smooth);
    padding: 20px 0;
}
.navbar-vegnar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}
.navbar-brand-img {
    height: 40px;
    width: auto;
}
.nav-link-vegnar {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--eco-primary);
    font-size: 0.95rem;
    margin: 0 12px;
    position: relative;
    padding: 6px 0;
}
.nav-link-vegnar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--eco-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-link-vegnar:hover {
    color: var(--eco-secondary);
}
.nav-link-vegnar:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-link-vegnar.active {
    color: var(--eco-secondary);
}
.nav-link-vegnar.active::after {
    transform: scaleX(1);
}

/* Navbar Badges */
.nav-icon-btn {
    position: relative;
    color: var(--eco-primary);
    font-size: 1.25rem;
    margin-left: 15px;
    transition: var(--transition-smooth);
}
.nav-icon-btn:hover {
    color: var(--eco-accent);
    transform: translateY(-2px);
}
.nav-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--eco-gold);
    color: var(--eco-dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 3px 6px;
    line-height: 1;
}

/* Premium Hero Carousel & Banner */
.hero-slider-item {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(22, 36, 33, 0.8) 0%, rgba(22, 36, 33, 0.4) 60%, rgba(22, 36, 33, 0.1) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--eco-cream);
    max-width: 650px;
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--eco-cream);
    animation: fadeInUp 1s ease both;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}
.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--eco-accent);
    margin-bottom: 15px;
    display: block;
    animation: fadeInUp 0.8s ease both 0.2s;
}
.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: rgba(251, 251, 250, 0.85);
    animation: fadeInUp 0.8s ease both 0.4s;
}
.hero-buttons {
    animation: fadeInUp 0.8s ease both 0.6s;
}

/* Featured Categories */
.category-card {
    text-align: center;
    padding: 20px;
    transition: var(--transition-smooth);
    border-radius: var(--radius-md);
}
.category-image-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid var(--eco-cream-dark);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--eco-accent-light);
}
.category-image-wrapper svg, .category-image-wrapper img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.category-card:hover .category-image-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--eco-accent);
    box-shadow: var(--shadow-md);
}
.category-card:hover .category-image-wrapper img {
    transform: scale(1.15);
}
.category-card h5 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--eco-primary);
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Premium Product Card */
.product-card {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 77, 62, 0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 77, 62, 0.15);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--eco-secondary);
    color: var(--eco-cream);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 3;
}
.product-badge.sale {
    background-color: var(--eco-gold);
    color: var(--eco-dark);
}
.product-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(251, 251, 250, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--eco-primary);
    transition: var(--transition-smooth);
    z-index: 3;
    box-shadow: var(--shadow-sm);
}
.product-wishlist-btn:hover {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    transform: scale(1.1);
}
.product-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    background-color: var(--eco-cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-container img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.product-card:hover .product-image-container img {
    transform: scale(1.08);
}
.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(to top, rgba(22, 36, 33, 0.4) 0%, rgba(22, 36, 33, 0) 100%);
    transition: var(--transition-smooth);
    z-index: 2;
}
.product-card:hover .product-actions {
    bottom: 0;
}
.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--eco-cream);
    color: var(--eco-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}
.product-action-btn:hover {
    background-color: var(--eco-accent);
    color: var(--eco-primary);
    transform: scale(1.1);
}
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--eco-cream);
}
.product-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eco-secondary);
    margin-bottom: 5px;
    font-weight: 500;
}
.product-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-title a {
    color: var(--eco-primary);
}
.product-title a:hover {
    color: var(--eco-secondary);
}
.product-rating {
    color: var(--eco-gold);
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.product-price-box {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-regular {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--eco-primary);
}
.price-old {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

/* Why Choose Us & Info Grid */
.info-box {
    background: var(--eco-cream);
    border: 1px solid rgba(27, 77, 62, 0.04);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    height: 100%;
}
.info-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--eco-accent-light);
}
.info-box-icon {
    width: 60px;
    height: 60px;
    background-color: var(--eco-accent-light);
    color: var(--eco-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}
.info-box:hover .info-box-icon {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    transform: scale(1.05) rotate(-3deg);
}

/* Animated Counters */
.counter-box {
    text-align: center;
    padding: 30px;
}
.counter-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--eco-accent);
    margin-bottom: 5px;
    line-height: 1;
}
.counter-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: rgba(251, 251, 250, 0.8);
}

/* Certificate & Testimonial Slider Styles */
.cert-slider-item {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(27, 77, 62, 0.05);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.cert-logo-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.cert-logo-wrapper img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

.testimonial-card {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--eco-primary);
    height: 100%;
}
.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--eco-dark);
    margin-bottom: 20px;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--eco-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--eco-primary);
}

/* Premium Blog Grid */
.blog-card {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(27, 77, 62, 0.04);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 77, 62, 0.1);
}
.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--eco-cream-dark);
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}
.blog-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}
.blog-card-body {
    padding: 25px;
}
.blog-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.blog-card-title a {
    color: var(--eco-primary);
}
.blog-card-title a:hover {
    color: var(--eco-accent);
}

/* Dynamic Filter Sidebar (Shop) */
.filter-card {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid rgba(27, 77, 62, 0.05);
    box-shadow: var(--shadow-sm);
}
.filter-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--eco-primary);
    border-bottom: 2px solid var(--eco-cream-dark);
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.filter-group {
    margin-bottom: 25px;
}
.filter-group label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* Custom Checklist controls */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}
.custom-checkbox input {
    accent-color: var(--eco-primary);
}

/* Shopping Cart UI */
.cart-table-wrapper {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(27, 77, 62, 0.05);
}
.cart-table {
    margin-bottom: 0;
}
.cart-table th {
    background-color: var(--eco-cream-dark);
    color: var(--eco-primary);
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 15px 20px;
    border: none;
}
.cart-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(27, 77, 62, 0.05);
}
.cart-item-title {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--eco-primary);
}
.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: var(--eco-cream-dark);
    border-radius: var(--radius-sm);
}

/* Qty buttons */
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(27, 77, 62, 0.15);
    border-radius: var(--radius-sm);
    width: fit-content;
    overflow: hidden;
}
.qty-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--eco-primary);
}
.qty-btn:hover {
    background-color: var(--eco-cream-dark);
}
.qty-input {
    width: 40px;
    height: 30px;
    border: none;
    border-left: 1px solid rgba(27, 77, 62, 0.15);
    border-right: 1px solid rgba(27, 77, 62, 0.15);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
}

/* Checkout simulated interface */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}
.checkout-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--eco-cream-dark);
    z-index: 1;
}
.checkout-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 30%;
}
.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--eco-cream-dark);
    color: var(--eco-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    border: 2px solid var(--eco-cream);
    transition: var(--transition-smooth);
}
.checkout-step.active .step-num {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    border-color: var(--eco-accent);
}
.checkout-step.completed .step-num {
    background-color: var(--eco-accent);
    color: var(--eco-primary);
}

/* Event roadmaps & Gallery mod */
.event-timeline {
    position: relative;
    padding-left: 30px;
}
.event-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5px;
    width: 2px;
    height: 100%;
    background-color: var(--eco-accent);
}
.event-timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.event-timeline-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -30px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--eco-primary);
    border: 2px solid var(--eco-cream);
    z-index: 2;
    transition: var(--transition-smooth);
}
.event-timeline-item:hover::before {
    background-color: var(--eco-gold);
    transform: scale(1.3);
}

/* Gallery Hover modal overlay */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 77, 62, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--eco-cream);
    padding: 20px;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Administrative layout elements */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}
.admin-sidebar {
    width: 280px;
    background-color: var(--eco-dark);
    color: var(--eco-cream);
    padding: 30px 20px;
    flex-shrink: 0;
    border-right: 1px solid rgba(251, 251, 250, 0.05);
}
.admin-content {
    flex-grow: 1;
    background-color: var(--eco-cream-dark);
    padding: 40px;
    overflow-y: auto;
}
@media (max-width: 992px) {
    .admin-wrapper {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
        padding: 20px;
    }
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(251, 251, 250, 0.7);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}
.admin-nav-link:hover, .admin-nav-link.active {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    transform: translateX(4px);
}
.admin-card {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-sm);
    padding: 25px;
    margin-bottom: 30px;
}
.admin-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.8s ease both;
}

/* Custom map frame placeholder */
.map-placeholder {
    height: 400px;
    background-color: var(--eco-cream-dark);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px dashed var(--eco-accent);
}

/* Footer Section Styling */
.footer-section {
    background-color: var(--eco-dark);
    color: rgba(251, 251, 250, 0.75);
    padding: 80px 0 30px;
    font-size: 0.9rem;
    border-top: 5px solid var(--eco-primary);
}
.footer-section h4 {
    color: var(--eco-cream);
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(251, 251, 250, 0.7);
}
.footer-links a:hover {
    color: var(--eco-accent);
    padding-left: 5px;
}

/* Newsletters */
.newsletter-form {
    display: flex;
    border: 1px solid rgba(251, 251, 250, 0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.newsletter-input {
    background-color: rgba(251, 251, 250, 0.05);
    border: none;
    padding: 12px 15px;
    color: var(--eco-cream);
    flex-grow: 1;
}
.newsletter-input:focus {
    outline: none;
    background-color: rgba(251, 251, 250, 0.1);
}
.newsletter-btn {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    border: none;
    padding: 0 20px;
    transition: var(--transition-smooth);
}
.newsletter-btn:hover {
    background-color: var(--eco-accent);
    color: var(--eco-primary);
}

/* Compare Specification Matrix */
.compare-matrix-table th {
    background-color: var(--eco-cream-dark);
    color: var(--eco-primary);
    font-weight: 600;
}
.compare-matrix-table td {
    padding: 15px 20px;
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition-smooth);
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1060;
}
.announcement-slide {
    display: none;
    position: absolute;
    width: 100%;
    text-align: center;
}
.announcement-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Cart Drawer */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(22, 36, 33, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background-color: var(--eco-cream);
    box-shadow: -10px 0 30px rgba(22, 36, 33, 0.15);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open {
    right: 0;
}
.cart-drawer-header {
    padding: 24px;
    background-color: var(--eco-cream-dark);
    border-bottom: 1px solid rgba(27, 77, 62, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-header h4 {
    margin-bottom: 0;
}
.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}
.cart-drawer-footer {
    padding: 24px;
    background-color: var(--eco-cream-dark);
    border-top: 1px solid rgba(27, 77, 62, 0.08);
}
.drawer-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(27, 77, 62, 0.05);
}
.drawer-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background-color: var(--eco-cream-dark);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.drawer-item-details {
    flex-grow: 1;
}
.drawer-item-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eco-primary);
    margin-bottom: 3px;
}

/* Shop by Material Cards */
.material-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 340px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.material-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 36, 33, 0.05) 0%, rgba(22, 36, 33, 0.8) 100%);
    z-index: 1;
}
.material-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--eco-cream);
}
.material-card-content h4 {
    color: var(--eco-cream);
    font-weight: 700;
    margin-bottom: 10px;
}
.material-card-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0;
}
.material-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.material-card:hover img {
    transform: scale(1.06);
}

/* Quick View Modal Styles */
.quickview-img-wrapper {
    height: 380px;
    background-color: var(--eco-cream-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.quickview-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Upgraded Product Card Quick Add */
.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--eco-primary);
    color: var(--eco-cream);
    border: none;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 4;
}
.product-card:hover .product-quick-add {
    transform: translateY(0);
}
.product-card:hover .product-actions {
    bottom: 50px; /* shift up since quick add occupies the bottom */
}

/* Hotspot Interactive Banner */
.hotspot-banner-container {
    position: relative;
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    background-color: var(--eco-cream-dark);
}
.hotspot-banner-img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}
.hotspot-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--eco-gold);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
    border: 3px solid var(--eco-cream);
    box-shadow: var(--shadow-sm);
}
.hotspot-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--eco-gold);
    animation: hotspotPulse 2s infinite ease-in-out;
    opacity: 0.8;
}
@keyframes hotspotPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}
.hotspot-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    background-color: var(--eco-cream);
    border-radius: var(--radius-sm);
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
    border: 1px solid rgba(27, 77, 62, 0.08);
}
.hotspot-dot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.hotspot-tooltip-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background-color: var(--eco-cream-dark);
    border-radius: 4px;
    flex-shrink: 0;
}
.hotspot-tooltip-info {
    flex-grow: 1;
}
.hotspot-tooltip-info h6 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--eco-primary);
}
.hotspot-tooltip-info span {
    font-size: 0.8rem;
    display: block;
    margin-bottom: 4px;
}

/* Promo Banner Cards */
.promo-banner-card {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.promo-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}
.promo-banner-card-content {
    position: relative;
    z-index: 2;
}
.promo-banner-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--eco-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}
.promo-banner-card-title span {
    font-family: var(--font-serif);
    font-style: italic;
    color: #e35e25; /* Cursive look in orange */
}

/* Split Grid Product Card */
.split-grid-product-card {
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 77, 62, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.split-grid-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.split-grid-img-wrapper {
    height: 220px;
    background-color: #d8f3dc; /* soft sage green */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}
.split-grid-img-wrapper.white-bg {
    background-color: #ffffff;
}
.split-grid-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.split-grid-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.split-grid-title {
    font-family: var(--font-sans) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--eco-primary) !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    height: 42px;
    overflow: hidden;
}
.split-grid-price-box {
    margin-top: auto;
    margin-bottom: 15px;
    font-size: 0.9rem;
}
.split-grid-btn-cart {
    background-color: var(--eco-primary); /* green color */
    color: var(--eco-cream);
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 20px; /* pill button */
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}
.split-grid-btn-cart:hover {
    background-color: var(--eco-secondary);
}
.btn-orange {
    background-color: #e35e25;
    color: var(--eco-cream) !important;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}
.btn-orange:hover {
    background-color: var(--eco-primary);
}

/* Quick Commerce Delivery Banner */
.delivery-banner {
    position: relative;
    background: linear-gradient(90deg, rgba(22, 36, 33, 0.95) 0%, rgba(22, 36, 33, 0.7) 50%, rgba(22, 36, 33, 0.2) 100%), 
                url('https://images.unsplash.com/photo-1590255149454-e696f5b9d311?q=80&w=1200&auto=format&fit=crop'); /* city road background */
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup {
    position: relative;
    width: 220px;
    height: 440px;
    border: 10px solid #2b2b2b;
    border-radius: 36px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: var(--shadow-lg);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}
.phone-mockup:hover {
    transform: rotate(0deg) scale(1.04);
}
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background-color: #2b2b2b;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
}

/* Scrolling Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    background-color: #ffffff;
    padding: 24px 0;
    border-top: 1px solid rgba(27,77,62,0.08);
    border-bottom: 1px solid rgba(27,77,62,0.08);
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: marqueeScroll 25s linear infinite;
    padding-left: 100%; /* pushes content offscreen to start */
}
.marquee-logo {
    display: inline-block;
    margin: 0 50px;
    font-size: 1.6rem;
    font-weight: 800;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}
.marquee-logo:hover {
    opacity: 0.9;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* UGC Customer Showcase */
.ugc-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 24px;
    scrollbar-width: none; /* hide default scrollbar */
    -ms-overflow-style: none;
}
.ugc-slider-track::-webkit-scrollbar {
    display: none;
}
.ugc-card {
    width: 210px;
    flex-shrink: 0;
    background-color: var(--eco-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 77, 62, 0.08);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.ugc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.ugc-img-wrapper {
    position: relative;
    height: 290px;
    width: 100%;
    overflow: hidden;
    background-color: var(--eco-dark);
}
.ugc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.ugc-card:hover .ugc-img-wrapper img {
    transform: scale(1.05);
}
.ugc-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 36, 33, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}
.ugc-card:hover .ugc-play-overlay {
    opacity: 1;
}
.ugc-floating-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--eco-cream);
    border: 2px solid #e35e25; /* terracotta orange */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    z-index: 5;
}
.ugc-floating-badge img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}
.ugc-info {
    padding: 15px 12px;
    text-align: center;
}
.ugc-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--eco-primary);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ugc-price-box {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e35e25;
}





