﻿:root {
    /* Primary Colors - Green Theme */
    --primary-green: hsl(150, 60%, 25%);
    /* #19664d - Main brand color */
    --secondary-green: hsl(150, 40%, 90%);
    /* #d9ebe5 - Light backgrounds */
    --muted-green: hsl(150, 40%, 95%);
    /* #ecf5f2 - Very light backgrounds */

    /* Accent Colors */
    --accent-yellow: hsl(45, 95%, 55%);
    /* #f5c842 - Buttons, highlights */
    --accent-red: #C7511F;
    /* Kept for alerts/destructive actions */

    /* Text Colors */
    --text-dark: hsl(150, 60%, 10%);
    /* #0a2919 - Primary text */
    --text-light: hsl(150, 40%, 40%);
    /* #4d9973 - Secondary text */
    --text-muted: hsl(0, 0%, 70%);
    /* #b3b3b3 - Muted text */

    /* UI Colors */
    --white: #fff;
    --background: hsl(0, 0%, 100%);
    /* #ffffff - Main background */
    --border-color: hsl(150, 50%, 85%);
    /* #c2e0d6 - Borders */
    --input-bg: hsl(150, 50%, 90%);
    /* #d9e6e0 - Input backgrounds */

    /* Sidebar (if needed) */
    --sidebar-bg: hsl(150, 60%, 8%);
    /* #0d2619 - Dark sidebar */
    --sidebar-accent: hsl(150, 50%, 18%);
    /* #17402e - Sidebar highlights */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    padding-top: 30px;
    /* Space for fixed ticker */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Ticker */
.ticker-wrap {
    position: fixed;
    top: 0;
    width: 100%;
    height: 30px;
    background-color: var(--sidebar-bg);
    overflow: hidden;
    z-index: 1002;
    /* Higher than header */
    color: white;
    font-size: 12px;
    line-height: 30px;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Header */
header {
    position: sticky;
    top: 30px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.logo-svg text {
    transition: fill 0.2s;
}

.logo:hover .logo-svg text {
    fill: var(--primary-green);
}

/* Search Bar */
.search-bar {
    flex-grow: 1;
    max-width: 500px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--input-bg);
    border-radius: 25px;
    padding: 8px 15px;
    border: 1px solid transparent;
}

.search-input-wrapper:focus-within {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px hsla(45, 95%, 55%, 0.2);
}

.search-input-wrapper i {
    color: var(--text-light);
    margin-right: 10px;
}

.search-input-wrapper input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 14px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-left: auto;
    margin-right: 20px;
}

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



.nav-auth-btn {
    background-color: var(--primary-green);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s !important;
}

.nav-auth-btn:hover {
    background-color: hsl(150, 60%, 20%) !important;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 10px 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Category Bar */
.category-bar {
    background-color: var(--primary-green);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow-x: auto;
    min-height: 50px;
}

.category-bar a {
    color: white;
    padding: 15px 0;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    font-family: 'PT Sans', sans-serif;
}

.category-bar a:hover {
    color: var(--accent-yellow);
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--white);
}

.welcome-section h1 {
    font-size: 52px;
    color: hsl(150, 60%, 10%);
    margin-bottom: 5px;
    font-family: serif;
}

.welcome-section p {
    font-size: 18px;
    color: var(--text-light);
}

/* Hero Banner */
.hero-banner {
    height: 250px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Pulse Glow Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(245, 200, 66, 0.7);
    }

    50% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 20px 10px rgba(245, 200, 66, 0);
    }

    100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(245, 200, 66, 0);
    }
}

.shop-now-btn {
    background-color: var(--accent-yellow);
    color: hsl(240, 10%, 15%);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s, background-color 0.2s;
    animation: pulseGlow 2s infinite;
}

.shop-now-btn:hover {
    background-color: hsl(45, 95%, 58%);
    transform: scale(1.05);
    animation: none;
}

/* Video Carousel Section */
.video-carousel-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.video-carousel-wrapper {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.video-carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide.active {
    opacity: 1;
    z-index: 1;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    z-index: 2;
}

.video-overlay h3 {
    font-size: 24px;
    font-family: serif;
    margin-bottom: 5px;
}

/* Promo Badge Styles */
.promo-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--accent-yellow);
    color: hsl(240, 10%, 15%);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-badge.new {
    background-color: #2196F3;
    color: white;
}

.promo-badge.hot {
    background-color: var(--accent-red);
    color: white;
}

.video-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: white;
    z-index: 10;
    transition: background 0.3s;
}

.video-nav-btn:hover {
    background: rgba(255, 255, 255, 0.6);
}

.video-prev {
    left: 20px;
}

.video-next {
    right: 20px;
}

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

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: var(--accent-yellow);
}

/* Featured Stores (Redesigned) */
.featured-stores {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.featured-stores h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-family: serif;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.featured-stores h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-yellow);
    margin: 10px auto 0;
}

.vendors-carousel-wrapper {
    position: relative;
    padding: 0 20px;
}

.vendors-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

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

.store-card {
    min-width: 280px;
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.media-container {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.store-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.store-card:hover .store-video {
    opacity: 1;
}

.store-card:hover .store-img {
    opacity: 0;
}

.store-info {
    padding: 20px;
    text-align: center;
}

.store-logo-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-green);
    margin: -45px auto 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.store-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.store-info p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.4;
}

.visit-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary-green);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    transition: all 0.3s;
}

.visit-btn:hover {
    background: var(--primary-green);
    color: white;
}

.vendor-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    color: var(--text-dark);
}

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

.vendor-prev {
    left: -10px;
}

.vendor-next {
    right: -10px;
}

/* Daily Deals Section */
.daily-deals-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.deal-container {
    background: linear-gradient(to right, var(--primary-green), hsl(150, 60%, 35%));
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    color: white;
    gap: 40px;
}

.deal-content {
    flex: 1;
}

.deal-tag {
    background-color: var(--accent-red);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.deal-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: serif;
}

.deal-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.time-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.time-block span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.time-block label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.8;
}

.deal-image {
    flex: 1;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.3);
}

/* News Section */
.news-section {
    max-width: 1200px;
    font-family: serif;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.review-card {
    min-width: 300px;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.stars {
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
}

.review-card h4 {
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background-color: var(--primary-green);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.chat-body {
    flex: 1;
    padding: 20px;
    background-color: var(--muted-green);
}

.chat-message {
    background-color: var(--secondary-green);
    padding: 10px 15px;
    border-radius: 20px;
    border-bottom-left-radius: 5px;
    display: inline-block;
    max-width: 80%;
    font-size: 14px;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background: var(--primary-green);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    font-size: 14px;
    color: var(--text-light);
}

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

/* Utility */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .category-bar {
        overflow-x: auto;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .deal-container {
        flex-direction: column;
        text-align: center;
    }

    .countdown-timer {
        justify-content: center;
    }

    .hero-banner {
        background-attachment: scroll;
    }
}

/* ========================================
   NEWS SECTION - Hero + Grid Layout
   ======================================== */

.news-section {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.news-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

/* Desktop: Hero + Grid Layout */
.news-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.news-hero {
    grid-row: 1 / 3;
    grid-column: 1;
}

/* News Cards */
.news-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-green), var(--muted-green));
    overflow: hidden;
}

.news-hero .news-image {
    height: 100%;
}

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

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.news-content {
    padding: 15px;
}

.news-hero .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 20px;
}

.news-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.news-badge.featured {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.news-badge.vendor {
    background: #2196F3;
    color: white;
}

.news-badge.trend {
    background: var(--accent-red);
    color: white;
}

.news-badge.community {
    background: var(--primary-green);
    color: white;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.news-hero h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.news-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: gap 0.3s;
}

.news-hero .news-read-more {
    color: var(--accent-yellow);
}

.news-read-more:hover {
    gap: 12px;
}

.news-read-more i {
    font-size: 11px;
}

/* Mobile: Horizontal Carousel */
.news-carousel-wrapper {
    display: none;
    position: relative;
    padding: 0 50px;
    margin-top: 30px;
}

.news-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

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

.news-card-mobile {
    min-width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-card-mobile .news-image {
    position: relative;
    height: 160px;
}

.news-card-mobile .news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.news-card-mobile .news-content {
    padding: 16px;
}

.news-card-mobile h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.news-card-mobile p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.news-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: var(--primary-green);
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.news-prev {
    left: 0;
}

.news-next {
    right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-hero-grid {
        display: none;
    }

    .news-carousel-wrapper {
        display: block;
    }

    .news-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

/* News Section Video Support */
.news-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Featured Product Ads Section - Advertising Showcase */
.products-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.section-header h2 i {
    color: var(--accent-red);
    animation: fireFlicker 1.5s infinite;
}

@keyframes fireFlicker {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-ad-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.product-ad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-yellow);
}

.product-ad-card.featured-glow {
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.3);
}

.product-ad-card.featured-glow:hover {
    box-shadow: 0 12px 40px rgba(245, 200, 66, 0.5);
}

.ad-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.ad-badge.flash-sale {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.ad-badge.new-arrival {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.ad-badge.best-seller {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.ad-badge.hot-deal {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.ad-badge.limited {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #333;
    box-shadow: 0 4px 15px rgba(168, 237, 234, 0.4);
}

.discount-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    animation: cornerPulse 1.5s infinite;
}

.discount-corner span {
    position: absolute;
    top: 15px;
    right: 8px;
}

@keyframes cornerPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.trending-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff9a56, #ff6b6b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    z-index: 10;
    animation: trendingFloat 2s ease-in-out infinite;
}

@keyframes trendingFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.stock-badge {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    animation: urgencyBlink 1s infinite;
}

@keyframes urgencyBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

.product-ad-card:hover .product-img-placeholder {
    transform: scale(1.1);
}

.tech-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.fashion-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.food-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.art-bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.beauty-bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.home-bg {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.jewelry-bg {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-info {
    padding: 20px;
}

.vendor-tag {
    display: inline-block;
    background: var(--secondary-green);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vendor-tag i {
    margin-right: 4px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.new-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-red);
    font-family: 'Outfit', sans-serif;
}

.new-price.special {
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating i {
    color: #ffd700;
    font-size: 14px;
}

.rating-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 5px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.product-features span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-features i {
    color: #2ecc71;
    font-size: 10px;
}

.ad-timer {
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid var(--accent-red);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ad-timer i {
    animation: timerPulse 1s infinite;
}

@keyframes timerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.promo-highlight {
    background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.urgency-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f);
    border-radius: 10px;
    animation: urgencyPulse 1.5s infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.shop-ad-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), #f5c842);
    color: hsl(240, 10%, 15%);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(245, 200, 66, 0.3);
}

.shop-ad-btn:hover {
    background: linear-gradient(135deg, #f5c842, var(--accent-yellow));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 200, 66, 0.5);
}

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

.shop-ad-btn.pulse-btn {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(245, 200, 66, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(245, 200, 66, 0.6);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .product-image-wrapper {
        height: 180px;
    }
}

/* Enhanced Customer Reviews Section */
.enhanced-reviews-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-header h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-header h2 i {
    color: var(--accent-yellow);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-score {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Outfit', sans-serif;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars-large {
    color: #ffd700;
    font-size: 20px;
}

.review-count {
    font-size: 14px;
    color: var(--text-muted);
}

.write-review-btn {
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 102, 77, 0.3);
}

.write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 102, 77, 0.4);
}

.review-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.filter-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.enhanced-review-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.enhanced-review-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.verified-badge {
    font-size: 12px;
    color: #2ecc71;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-rating {
    color: #ffd700;
    font-size: 16px;
}

.review-content {
    margin-bottom: 15px;
}

.review-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 12px;
}

.review-tag {
    display: inline-block;
    background: var(--secondary-green);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.review-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.helpful-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.helpful-btn:hover {
    background: var(--secondary-green);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.load-more-reviews {
    display: block;
    margin: 0 auto;
    padding: 14px 40px;
    background: white;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-reviews:hover {
    background: var(--primary-green);
    color: white;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #19664d 0%, #2ecc71 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/kente.png');
    /* Subtle pattern */
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}


.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 2px solid var(--border-color);
}

.modal-header h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h3 i {
    color: var(--accent-yellow);
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.review-form {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.star-rating-input {
    display: flex;
    gap: 8px;
    font-size: 32px;
    color: #ddd;
}

.star-rating-input i {
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating-input i:hover,
.star-rating-input i.active {
    color: #ffd700;
    transform: scale(1.1);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(25, 102, 77, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
}

.cancel-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: var(--secondary-green);
    border-color: var(--primary-green);
}

.submit-review-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 102, 77, 0.3);
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 102, 77, 0.4);
}

/* Success Message */
.review-success-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    text-align: center;
    animation: successPop 0.5s ease;
}

.review-success-message.active {
    display: block;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.success-content i {
    font-size: 64px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.success-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.success-content p {
    font-size: 16px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .overall-rating {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Store Directory Section */
.store-directory-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.directory-header {
    text-align: center;
    margin-bottom: 40px;
}

.directory-header h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.directory-header h2 i {
    color: var(--primary-green);
}

.directory-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.directory-search-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
}

.directory-search-bar {
    position: relative;
    width: 100%;
}

.directory-search-bar i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

.directory-search-bar input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.directory-search-bar input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(25, 102, 77, 0.1);
}

.directory-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label i {
    color: var(--primary-green);
}

.filter-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2319664d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.filter-dropdown:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(25, 102, 77, 0.1);
}

.reset-filters-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reset-filters-btn:hover {
    background: var(--secondary-green);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.store-directory-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.store-directory-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.featured-store-card {
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, #fffef7 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.2);
}

.featured-store-card:hover {
    box-shadow: 0 10px 35px rgba(245, 200, 66, 0.35);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-yellow), #f5c842);
    color: hsl(240, 10%, 15%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(245, 200, 66, 0.4);
}

.store-logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(25, 102, 77, 0.2);
}

.store-info-content {
    width: 100%;
}

.store-info-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.store-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.fashion-badge {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.food-badge {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.electronics-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.home-badge {
    background: linear-gradient(135deg, #30cfd0, #330867);
    color: white;
}

.art-badge {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.services-badge {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.store-location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.store-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 12px;
    color: #ffd700;
    font-size: 14px;
}

.rating-text {
    margin-left: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.store-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
}

.view-store-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-green), #2ecc71);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(25, 102, 77, 0.3);
}

.view-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 102, 77, 0.4);
}

.visit-website-btn {
    width: 100%;
    padding: 12px 20px;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.visit-website-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 102, 77, 0.3);
}

.no-results-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results-message i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-results-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.no-results-message p {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .directory-filters {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .reset-filters-btn {
        width: 100%;
        justify-content: center;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .directory-header h2 {
        font-size: 32px;
    }
}

/* Dynamic Store Card Styles */
.store-initials {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #19664d, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}


/* Vendors Page Styles */
.vendors-section {
    background-color: white !important;
    padding: 40px 20px;
}


/* Stores Page Header Override */
.stores-header-white {
    background: white !important;
    color: black !important;
}

.stores-header-white::before {
    display: none;
    /* Remove the pattern overlay */
}

.stores-header-white h1 {
    color: black !important;
}