/* ═══════════════════════════════════════════════════════════
   Bharati Fashion House — Public Site Styles
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg-hero: #232d69;
    --bg-body: #faf6f0;
    --primary-orange: #f58220;
    --primary-orange-hover: #e07218;
    --text-dark: #1e293b;
    --text-muted: #574c43;
    --white: #ffffff;
    --navy-btn: #2b3674;
    --green-btn: #1a9d4e;
    --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    --border-color: #eee7dc;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', 'Hind Siliguri', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.5;
    padding-bottom: 90px;
}

/* Top Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.04) 75%, transparent 75%, transparent),
        linear-gradient(180deg, #2b377a 0%, #1c2458 100%);
    background-size: 24px 24px, 100% 100%;
    padding: 16px 20px 28px;
    color: var(--white);
    border-bottom: 4px solid var(--primary-orange);
}

.lang-switcher-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.lang-switcher {
    display: flex;
    background: rgba(18, 25, 65, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 4px;
    width: 100%;
    max-width: 320px;
}

.lang-tab {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--white);
    transition: all 0.2s ease;
}

.lang-tab.active {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(245, 130, 32, 0.4);
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 6px;
    display: block;
}

.shop-title {
    font-family: 'DM Serif Display', 'Hind Siliguri', serif;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 8px;
    color: var(--white);
}

.shop-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.status-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.status-top-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #d93025;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}

.status-badge.open {
    background-color: #1e8e3e;
}

.status-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.status-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f4ff;
    color: var(--navy-btn);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

.countdown-timer svg {
    width: 13px;
    height: 13px;
    fill: var(--navy-btn);
    flex-shrink: 0;
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Container & Headers */
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 4px;
}

.section-icon {
    font-size: 1.4rem;
    color: var(--primary-orange);
}

.section-title {
    font-family: 'DM Serif Display', 'Hind Siliguri', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy-btn);
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* What we sell - Cards */
.sell-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.sell-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff2e6;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.sell-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--navy-btn);
}

.sell-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Shimmer / Skeleton */
.shimmer-bg {
    background: linear-gradient(90deg, #eae4d8 25%, #f7f3ec 50%, #eae4d8 75%);
    background-size: 200% 100%;
    animation: shimmer-animation 1.4s infinite linear;
}

@keyframes shimmer-animation {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.media-card {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #e9e3d8;
    border: 1px solid var(--border-color);
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.media-card:active { transform: scale(0.97); }

.media-card img, .media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.media-play-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    backdrop-filter: blur(4px);
}

.media-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    color: var(--white);
    padding: 20px 10px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lightbox-modal.active { opacity: 1; pointer-events: auto; }

.lightbox-content-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.92);
    transition: transform 0.25s ease;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active .lightbox-content-wrapper { transform: scale(1); }

.lightbox-content-wrapper img, .lightbox-content-wrapper video {
    max-width: 100vw;
    max-height: 80vh;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close-btn {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2001;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 12px;
    padding: 0 10px;
}

/* Shop Timing */
.timing-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.timing-row {
    padding: 14px 18px;
    border-bottom: 1px solid #f0eae1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timing-row:last-child { border-bottom: none; }
.timing-row.today-highlight { background-color: #fff8eb; }

.day-label-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-btn);
}

.today-badge {
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.time-str {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Address */
.address-box {
    background: var(--white);
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 14px;
}

.reach-list {
    list-style: none;
    margin-bottom: 16px;
}

.reach-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.45;
}

.reach-list li::before {
    content: "✓";
    color: #1a9d4e;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: -1px;
}

/* Map Card */
.map-preview-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    margin-bottom: 24px;
}

.map-iframe-container {
    width: 100%;
    height: 230px;
    background: #e5e3df;
    position: relative;
    overflow: hidden;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #f8fafc;
    text-align: center;
    padding: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.map-btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #273549 0%, #15203b 100%);
}

.map-btn-full svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Good to know */
.good-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.good-pill {
    background: #faefe4;
    color: #613e1c;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid #ebd8c5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Buttons */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    margin-bottom: 10px;
    transition: transform 0.1s;
}

.btn-social:active { transform: scale(0.98); }

.btn-social svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-read-rev {
    background: var(--white);
    color: var(--navy-btn);
    border: 1px solid #d3cbbd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-write-rev {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(245, 130, 32, 0.25);
}

.btn-write-rev svg { fill: var(--white); }

.social-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.btn-insta, .btn-fb {
    background: var(--white);
    color: var(--navy-btn);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    margin-bottom: 0;
}

.btn-insta svg { fill: #E4405F; }
.btn-fb svg { fill: #1877F2; }

.notice-banner {
    background-color: #ffefe0;
    border: 1px solid #fbd2b0;
    border-radius: 16px;
    padding: 16px;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #733c0c;
    text-align: center;
    margin-bottom: 24px;
}

footer {
    text-align: center;
    padding: 16px;
    font-size: 0.78rem;
    color: #8b8075;
}

/* Sticky Bottom Bar */
.sticky-footer-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid #e2ded8;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 10px 14px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.action-btn:active { opacity: 0.85; }
.action-btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-call-sticky { background-color: var(--primary-orange); }
.btn-wa-sticky { background-color: var(--green-btn); }
.btn-dir-sticky { background-color: var(--navy-btn); }

@media (max-width: 360px) {
    .shop-title { font-size: 1.95rem; }
    .action-btn { font-size: 0.72rem; }
}
