/**
 * Map Products Bar — Horizontal Scroll
 * Mobile-first design
 */

.cc-map-products {
    padding: 16px;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
}

.cc-map-products-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    padding: 0;
}

.cc-map-products-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.cc-map-products-scroll::-webkit-scrollbar {
    height: 4px;
}
.cc-map-products-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.cc-map-products-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.cc-map-product-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.cc-map-product-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border-color: #10c956;
    text-decoration: none;
    color: #333;
}

.cc-map-product-card img {
    width: 140px;
    height: 120px;
    object-fit: cover;
    display: block;
}

.cc-map-product-noimg {
    width: 140px;
    height: 120px;
    background: #f0f0f0;
}

.cc-map-product-name {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    padding: 6px 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cc-map-product-thc {
    font-size: 11px;
    font-weight: 700;
    color: #10c956;
    padding: 0 8px;
}

.cc-map-product-price {
    font-size: 12px;
    font-weight: 600;
    color: #0da847;
    padding: 0 8px 8px;
}

/* Phone number in store list */
.cc-store-phone {
    display: block;
    font-size: 12px;
    color: #10c956;
    text-decoration: none;
    margin-top: 2px;
}
.cc-store-phone:hover {
    text-decoration: underline;
    color: #0da847;
}

/* Mobile */
@media (max-width: 900px) {
    .cc-map-products {
        padding: 12px;
    }

    .cc-map-product-card {
        flex: 0 0 130px;
    }

    .cc-map-product-card img,
    .cc-map-product-noimg {
        width: 130px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .cc-map-product-card {
        flex: 0 0 120px;
    }

    .cc-map-product-card img,
    .cc-map-product-noimg {
        width: 120px;
        height: 90px;
    }

    .cc-map-product-name {
        font-size: 11px;
        padding: 4px 6px 0;
    }

    .cc-map-product-thc,
    .cc-map-product-price {
        padding: 0 6px;
        font-size: 10px;
    }

    .cc-map-product-price {
        padding-bottom: 6px;
    }
}
