/* ==========================================
   CSS RIÊNG CHO TRANG CỬA HÀNG
   ========================================== */
.store-header {
    text-align: center;
    margin-bottom: 35px;
}
.store-header h1 {
    color: var(--hong-man-nhan);
    font-size: 30px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.store-header p {
    color: var(--chu-phu);
    font-size: 16px;
}

.story-section {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid var(--hong-phan-the);
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.08);
    display: flex;
    gap: 30px;
    align-items: center;
}
@media (max-width: 768px) {
    .story-section { flex-direction: column; padding: 25px; }
}
.story-content { flex: 1; }
.story-tag {
    display: inline-block;
    background: var(--hong-phan-the);
    color: var(--hong-man-nhan);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 12px;
}
.story-title {
    font-size: 24px;
    color: var(--hong-man-nhan);
    margin-bottom: 15px;
    font-weight: 700;
}
.story-desc {
    color: var(--chu-chinh);
    font-size: 15px;
    margin-bottom: 12px;
    text-align: justify;
}
.story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.highlight-item {
    background: var(--hong-nhat-nen);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hong-man-nhan);
    border-left: 3px solid var(--hong-chu-dao);
}

.location-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}
@media (max-width: 850px) {
    .location-section { grid-template-columns: 1fr; }
}

.store-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid var(--hong-phan-the);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.store-card h2 {
    color: var(--hong-man-nhan);
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--hong-phan-the);
    padding-bottom: 10px;
}
.info-list { list-style: none; margin-bottom: 20px; }
.info-item {
    font-size: 14.5px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.info-item span.icon { font-size: 18px; }

.store-actions { display: flex; gap: 12px; }
.btn-action {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}
.btn-directions {
    background: var(--hong-man-nhan);
    color: #fff;
}
.btn-directions:hover { background: #880e2e; }
.btn-call {
    border: 1px solid var(--hong-man-nhan);
    color: var(--hong-man-nhan);
    background: #fff;
}
.btn-call:hover { background: var(--hong-sang-hover); }

.map-container {
    width: 100%;
    min-height: 380px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--hong-phan-the);
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.15);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 380px;
}

.banner-online {
    background: var(--cam-dao-pastel);
    text-align: center;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px dashed var(--hong-chu-dao);
}
.banner-online h3 { color: var(--hong-man-nhan); margin-bottom: 6px; }
.btn-shop-online {
    display: inline-block;
    background: var(--hong-man-nhan);
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 12px;
    transition: 0.2s;
}
.btn-shop-online:hover { background: #880e2e; }

.banner-club {
    background: linear-gradient(135deg, var(--hong-man-nhan) 0%, var(--hong-chu-dao) 100%);
    color: #fff;
    padding: 28px 35px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.banner-club h2 { font-size: 20px; margin-bottom: 4px; }
.btn-club-info {
    background: #fff;
    color: var(--hong-man-nhan);
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}
.btn-club-info:hover { background: var(--hong-phan-the); }