/* Hero section update for Micromart */
.hero {
    background-image: url('/images/micromart-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title,
.hero-countries,
.hero-description,
.hero-buttons,
.search-section {
    position: relative;
    z-index: 2;
}

/* Update text colors for better contrast on banner */
.hero-title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-countries {
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hide animated background since we have banner */
.hero-bg,
.animated-bg,
#particleCanvas {
    display: none;
}

/* Update search section */
.search-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}