/* 
   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;
}
