    
    .boxcollmhd {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        color: #000;
        margin-bottom: 25px;
    }

    .store-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .store-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .store-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    .store-header h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #000;
    }

    .rating {
        color: #00c853;
        font-weight: 600;
    }

    .address {
        color: #555;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .locate {
        color: #00c853;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 12px;
    }

    .contact-info {
        font-size: 14px;
        color: #000;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        margin-bottom: 12px;
    }

    .contact-info span {
        color: #333;
    }

    .pickup-btn {
        background: #000;
        color: #ffeb3b;
        border: none;
        padding: 10px 16px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
    }

    .pickup-btn:hover {
        background: #ffeb3b;
        color: #000;
    }

    @media (max-width: 600px) {
        .store-card {
            padding: 15px;
        }
        .store-header h4 {
            font-size: 15px;
        }
        .pickup-btn {
            width: 100%;
        }
    }