.avivi-shopscontacts {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.avivi-shopscontacts h1.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #1b5e20, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#avivi-shops-map {
    height: 420px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.shops-lists h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
    margin-top: 40px;
    margin-bottom: 20px;
}

.cities-list .city {
    margin-bottom: 40px;
}

.cities-list .city-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.cities-list .city-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1565c0 0%, #e91e63 100%);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 15px;
}

.store-item {
    background: #fff;
    border: 1px solid #eceff1;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.store-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.store-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #fafafa;
    border-radius: 4px;
    padding: 5px;
}

.store-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 10px 0;
}

.store-desc {
    font-size: 0.9rem;
    color: #78909c;
    margin-bottom: 12px;
    line-height: 1.4;
}

.store-address {
    font-size: 0.95rem;
    color: #37474f;
    font-weight: 500;
    margin-bottom: 12px;
}

.store-phone {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.store-phone a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
}

.store-phone a:hover {
    text-decoration: underline;
}

.store-website {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.store-website a {
    color: #1565c0;
    text-decoration: none;
}

.store-website a:hover {
    text-decoration: underline;
}

.store-additional {
    font-size: 0.85rem;
    color: #90a4ae;
    border-top: 1px dashed #cfd8dc;
    padding-top: 8px;
    margin-top: auto;
}

/* Button Show More styling */
#avivi-show-more {
    background: linear-gradient(135deg, #cfd8dc 0%, #e91e63 100%);
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

#avivi-show-more:hover {
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.4);
    transform: translateY(-1px);
}

/* Online stores row styling */
.online-stores {
    border-top: 1px solid #eceff1;
    padding-top: 30px;
    margin-top: 40px;
}

.online-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.online-item {
    font-size: 1.1rem;
}

.online-item a {
    color: #e91e63;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.online-item a:hover {
    color: #ad1457;
}
