/* Стили для страницы контактов */
.contact-section {
    padding: 80px 0;
}

.contact-heading {
    position: relative;
    margin-bottom: 2.5rem;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
}

.contact-heading:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--diva-primary);
    bottom: -10px;
    left: 0;
}

.text-center .contact-heading:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Стили контактной информации */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: var(--diva-transition);
    padding: 10px;
    border-radius: 8px;
}

.contact-info-item:hover {
    transform: translateX(5px);
    background-color: rgba(230, 217, 202, 0.2);
}

.contact-info-item .contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--diva-accent);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--diva-primary);
    flex-shrink: 0;
    transition: var(--diva-transition);
}

.contact-info-item:hover .contact-icon {
    background-color: var(--diva-primary);
    color: white;
    transform: scale(1.1);
}

.contact-info-content h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Стили контактной формы */
.contact-form {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--diva-shadow);
    padding: 40px;
    height: 100%;
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--diva-primary);
    bottom: 0;
    left: 0;
}

textarea.form-control {
    min-height: 120px;
}

/* Стили для карты */
.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--diva-shadow);
    border: 5px solid white;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Стили для социальных сетей */
.social-media-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--diva-shadow);
}

.social-media-section h4 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-media-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--diva-accent);
    color: var(--diva-primary);
    margin-right: 15px;
    transition: var(--diva-transition);
    font-size: 1.2rem;
}

.social-media-link:hover {
    background-color: var(--diva-primary);
    color: white;
    transform: translateY(-3px);
}

/* Улучшенные стили для раздела магазинов */
.store-section {
    padding: 80px 0;
    background-color: #f9f7f5;
}

.store-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.store-img-container {
    position: relative;
    overflow: hidden;
    height: 250px; /* Увеличенная высота для лучшего отображения фото */
    background-color: #f5f5f5;
}

.store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease, filter 0.4s ease;
    display: block;
}

.store-card:hover .store-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.store-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.store-card:hover .store-img-container::after {
    opacity: 1;
}

.store-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background-color: white;
}

.store-name {
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--diva-primary);
    position: relative;
    padding-bottom: 10px;
}

.store-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--diva-accent);
    transition: width 0.3s ease;
}

.store-card:hover .store-name::after {
    width: 60px;
}

.store-address {
    margin-bottom: 18px;
    color: var(--diva-dark);
    line-height: 1.5;
    font-size: 0.95rem;
}

.store-hours {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
    margin-top: auto;
    background-color: rgba(230, 217, 202, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    width: fit-content;
}

.store-hours i {
    color: var(--diva-primary);
    margin-right: 8px;
    font-size: 1rem;
}

/* Стили для CTA секции */
.cta-section {
    background: linear-gradient(to right, var(--diva-accent), var(--diva-light));
    padding: 60px 0;
    border-radius: 10px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 10px 10px 0;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn i {
    margin-right: 8px;
}

/* Анимация для карточек магазинов */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 992px) {
    .store-img-container {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        margin-top: 2rem;
    }

    .store-card {
        margin-bottom: 20px;
    }

    .store-img-container {
        height: 200px;
    }

    .contact-section, .store-section, .faq-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .store-img-container {
        height: 180px;
    }

    .store-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    }
}