/* products scroll */
.store-filter-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
@media (max-width: 576px) {
    .footer h6 {
        font-size: 14px;
    }

    .footer p,
    .footer a {
        font-size: 13px;
    }
}

.store-filter-box input,
.store-filter-box select{
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

@media (max-width: 768px){
    .store-filter-box{
        grid-template-columns: 1fr;
    }
}
.product-slider {
    overflow: hidden;
    position: relative;
}
.store-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* STORE NAME */
.store-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

/* LOCATION */
.store-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
}

.store-location i {
    color: #f97316;
    /* orange location pin */
    font-size: 13px;
}

/* HOVER EFFECT */
.store-title:hover {
    color: #1e3a8a;
}

.product-track {
    display: flex;
    gap: 14px;
    transition: transform 0.5s ease;
}

.product-card {
    min-width: 170px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    position: relative;
}

.product-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.product-info {
    padding: 8px;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.product-store {
    font-size: 11px;
    color: #6b7280;
}

/* badge */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff8c00;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 20px;
}

/* mobile swipe */
@media (max-width: 768px) {
    .product-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .product-card {
        scroll-snap-align: start;
        min-width: 150px;
    }

    .product-track::-webkit-scrollbar {
        display: none;
    }
}

/* =========================
                                                       BASE LAYOUT
                                                    ========================= */
.market-home {
    background: #f6f7fb;
    padding: 20px 0 90px;
}

/* =========================
                                                       STORE RATING
                                                    ========================= */
.store-rating {
    margin-top: 8px;
}

.rating-label-link {
    font-size: 12px;
    color: #6b7280;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.rating-label-link:hover {
    color: #2563eb;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #d1d5db;
    font-size: 12px;
}

.stars i.active {
    color: #fbbf24;
}

.rating-text {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.rating-text span {
    color: #6b7280;
}

/* =========================
                                                       STORE ICONS
                                                    ========================= */
.store-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 10px;
}

.store-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef2ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.store-icon:hover {
    transform: scale(1.1);
}

/* =========================
                                                       BUTTONS
                                                    ========================= */
.shop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.shop-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

/* =========================
                                                       HERO CAROUSEL
                                                    ========================= */
.hero-carousel {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-slide {
    display: none;
    padding: 50px 20px;
    color: #fff;
}

.hero-slide.active {
    display: block;
}

.bg-1 {
    background: linear-gradient(135deg, #0f172a, #2563eb);
}

.bg-2 {
    background: linear-gradient(135deg, #4c1d95, #db2777);
}

.bg-3 {
    background: linear-gradient(135deg, #111827, #374151);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero-text {
    max-width: 45%;
}

.hero-text h1 {
    font-size: 30px;
    font-weight: 800;
}

.hero-text p {
    opacity: 0.9;
    margin-top: 10px;
}

.hero-badges {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-badges span {
    background: wheat;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* HERO PRODUCTS SCROLL */
.hero-products-scroll {
    max-width: 50%;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hero-product-card {
    min-width: 110px;
    background: rgba(255, 255, 255, 0.12);
    padding: 8px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.hero-product-card img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
}

.hero-product-card p {
    font-size: 11px;
    margin-top: 5px;
}

/* =========================
                                                       HERO BANNER (FLOAT IMAGE)
                                                    ========================= */
.hero-banner {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    background: white;
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 800;
    max-width: 650px;
}

.hero-overlay p {
    max-width: 550px;
    margin-top: 12px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.hero-actions a {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    padding: 12px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* BOTH BUTTONS SAME NAVY STYLE */
.hero-btn,
.hero-btn-outline {
    background: #0b1f3a;
    /* navy blue */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* hover effect */
.hero-btn:hover,
.hero-btn-outline:hover {
    background: #102a4d;
    transform: translateY(-2px);
}

/* =========================
                                                       SECTION TITLE
                                                    ========================= */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 10px;
}

.see-all-link {
    font-size: 13px;
    font-weight: 600;
    color: #0b1f3a;
    /* navy brand */
    text-decoration: none;
    transition: 0.3s ease;
}

.see-all-link:hover {
    color: #ff8c00;
    /* orange accent */
    transform: translateX(3px);
}

.section-title h3 {
    font-size: 16px;
    font-weight: 700;
}

.section-title a {
    font-size: 13px;
    color: #2563eb;
}

/* =========================
                                                       STORE CARD
                                                    ========================= */
.store-card-modern {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.store-card-modern:hover {
    transform: translateY(-3px);
}

.store-img-wrap img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.store-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
}

.store-body {
    padding: 10px;
}

.store-title {
    font-weight: 600;
    font-size: 14px;
    color: #111;
    text-decoration: none;
}

.store-btn {
    display: block;
    margin-top: 8px;
    background: #2563eb;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    font-size: 13px;
    text-decoration: none;
}

/* =========================
                                                       INFO BOXES
                                                    ========================= */
.info-grid {
    margin-top: 20px;
}

.info-box {
    padding: 18px;
    border-radius: 16px;
    color: #fff;
}

.about {
    background: linear-gradient(135deg, #111827, #1f2937);
}

.affiliate {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.info-box h4 {
    font-weight: 700;
}

.info-box p {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
}

/* =========================
                                                       MARKET FEATURES
                                                    ========================= */
.market-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-card i {
    color: #2563eb;
    font-size: 22px;
    margin-bottom: 10px;
}

/* =========================
                                                       WHATSAPP FLOAT
                                                    ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
}

/* =========================
                                                       FOOTER
                                                    ========================= */
.footer {
    background: #0b1f3a;
}
.footer-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

/* =========================
                                                       MOBILE RESPONSIVE
                                                    ========================= */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-products-scroll {
        max-width: 100%;
        margin-top: 10px;
    }

    .hero-banner {
        height: 300px;
    }

    .hero-overlay {
        padding: 20px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-actions {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .hero-actions a {
        font-size: 13px;
        padding: 10px 12px;
    }

    .market-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-6.col-md-3 {
        width: 50%;
    }
}

.hero-trust {
    display: flex;
    gap: 15px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust i {
    color: #ff8c00;
    /* orange highlight */
    font-size: 14px;
}
