/* contact top start */
.contact-top {
    margin-bottom: 60px;
    border-bottom: 2px solid #f0f0f0;
}

#contact-map {
    z-index: 1;
}

/* contact top end */

/* contact bottom start */
.contact-bottom {
    margin: 60px 0;
}

.contact-bottom .contact-texts {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-bottom .contact-texts h4 {
    color: #A65D47;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-bottom .contact-texts h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-bottom .contact-texts p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 500px));
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.store-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 4px;
}

.store-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #A65D47;
    transform: translateY(-5px);
}

.store-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.store-header i {
    font-size: 24px;
    color: #A65D47;
}

.store-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.store-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.store-address {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    margin: 0;
}

.store-info-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-info-group strong {
    font-size: 14px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-info-group p {
    font-size: 14px;
    color: #666;
    margin: 0;
    white-space: pre-line;
}

.store-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.store-contact-links a {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.store-contact-links a:hover {
    color: #A65D47;
}

.social-contact {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-link {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px !important;
    font-weight: 500;
    color: #fff !important;
}

.social-link.telegram {
    background-color: #0088cc;
}

.social-link.viber {
    background-color: #7360f2;
}

.social-link:hover {
    opacity: 0.9;
    color: #fff !important;
}

@media (max-width: 768px) {
    .contact-bottom .contact-texts h2 {
        font-size: 32px;
    }

    .store-grid {
        grid-template-columns: 1fr;
    }
}

/* contact bottom end */