  
/* General styling for the section */
.section-gradient-blue {
    padding: 40px 0;
      background: linear-gradient(to right, #6a11cb, #2575fc); /* Attractive blue gradient */
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
}

.binduz-er-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.binduz-er-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

/* Styling for individual store cards */
.store-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc3545; /* Highlight border on hover */
}

.store-logo-wrapper {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0; /* ✅ REMOVE spacing issues */
    background-color: #fff;
}

.store-logo-wrapper img {
    width: 100%;         /* ✅ fill entire wrapper */
    height: 100%;
    object-fit: cover;   /* ✅ make sure image fills circle */
    border-radius: 50%;  /* ✅ always circle */
    display: block;
}


.store-info .store-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 5px;
}

.store-info .store-name span {
    font-weight: normal;
    color: #666;
    font-size: 0.95em;
}

.store-info .visit-store-link {
    font-size: 0.95rem;
    color: #dc3545; /* Danger color for links */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    display: inline-block;
    position: relative;
    padding-right: 20px; /* Space for arrow */
}

.store-info .visit-store-link:hover {
    color: #a71d2a; /* Darker red on hover */
}

.store-info .visit-store-link::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease-in-out;
}

.store-info .visit-store-link:hover::after {
    transform: translateY(-50%) translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .binduz-er-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .store-logo-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 10px;
    }
    .store-info .store-name {
        font-size: 1rem;
    }
    .store-card {
        padding: 10px;
    }
}
