.store-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8edf2 100%);
    position: relative;
    overflow: hidden;
}

.store-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.section-heading-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff3e6c, #ff7a5a);
    margin: 0.7rem auto 0;
    border-radius: 3px;
}

.section-subheading {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.store-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    background-color: white;
    border: none;
    position: relative;
    z-index: 1;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, #ff3e6c, #ff7a5a);
    z-index: 2;
    transition: height 0.3s ease;
}

.store-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.store-card:hover::before {
    height: 10px;
}

.store-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.store-image.budapest {
    background-image: url('/api/placeholder/400/320');
}

.store-image.vienna {
    background-image: url('/api/placeholder/400/320');
}

.store-image.prague {
    background-image: url('/api/placeholder/400/320');
}

.store-content {
    padding: 2rem;
}

.store-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.store-name::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff3e6c, #ff7a5a);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.store-info {
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.info-item i {
    color: #ff3e6c;
    margin-right: 15px;
    width: 20px;
    text-align: center;
    margin-top: 4px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.info-item:hover i {
    transform: scale(1.2);
}

.info-content {
    flex: 1;
}

.info-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 3px;
}

.info-text {
    color: #666;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.map-container:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 62, 108, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-btn {
    background: linear-gradient(90deg, #ff3e6c, #ff7a5a);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 62, 108, 0.3);
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.map-container:hover .map-btn {
    transform: translateY(0);
}

.badge-open, .badge-closed {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.badge-open {
    background-color: #28a745;
    color: white;
}

.badge-closed {
    background-color: #dc3545;
    color: white;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 62, 108, 0.1), rgba(255, 122, 90, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 30px;
    margin-top: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.phone-button:hover {
    background: linear-gradient(90deg, #ff3e6c, #ff7a5a);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 62, 108, 0.3);
}

.phone-button i {
    margin-right: 5px;
}

@media (max-width: 992px) {
    .store-card {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .store-content {
        padding: 1.5rem;
    }
}

/* Pulse Animation for Badge */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.badge-open {
    animation: pulse 2s infinite;
}