/* ============================================
   THE BUDGET SHOP - STYLES
   Trusted Garments Store - Kalkaji, Delhi
   ============================================ */

/* CSS Variables */
:root {
    --color-cream: #FAF8F5;
    --color-cream-dark: #F5F0E8;
    --color-navy: #1E3A5F;
    --color-navy-light: #2E4A6F;
    --color-green: #2D5016;
    --color-maroon: #6B1C2E;
    --color-black: #1a1a1a;
    --color-grey: #666666;
    --color-grey-light: #e0e0e0;
    --color-grey-soft: #f5f5f5;
    --color-white: #ffffff;
    --color-success: #28a745;
    --color-closed: #dc3545;

    --font-primary: 'Open Sans', 'Segoe UI', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-cream);
    color: var(--color-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.brand {
    line-height: 1.2;
}

.store-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.store-name-hindi {
    font-family: var(--font-hindi);
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.rating-box {
    background: var(--color-white);
    color: var(--color-navy);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.rating-stars {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-maroon);
}

.rating-count {
    font-size: 0.75rem;
    color: var(--color-grey);
    font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    padding: 48px 0;
    border-bottom: 1px solid var(--color-grey-light);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-grey);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-tag {
    background: var(--color-white);
    border: 2px solid var(--color-navy);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-navy);
    box-shadow: var(--shadow-sm);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #1e3d0f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-secondary:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-cta {
    background: var(--color-maroon);
    color: var(--color-white);
    font-size: 1.1rem;
    padding: 16px 32px;
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    background: #4a1420;
    transform: translateY(-2px);
}

.btn-map {
    background: var(--color-navy);
    color: var(--color-white);
    flex: 1;
    font-size: 0.9rem;
    padding: 12px 20px;
}

.btn-map:hover {
    background: var(--color-navy-light);
}

.btn-street-view {
    background: var(--color-white);
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
    flex: 1;
    font-size: 0.9rem;
    padding: 12px 20px;
}

.btn-street-view:hover {
    background: var(--color-navy);
    color: var(--color-white);
}

.btn-icon {
    font-size: 1.1em;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-maroon);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-grey);
    font-size: 1rem;
    margin-bottom: 32px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--color-white);
    padding: 48px 0;
    border-bottom: 1px solid var(--color-grey-light);
}

.about-content {
    display: grid;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 12px;
    color: var(--color-grey);
    font-size: 1rem;
}

.about-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.highlight-item {
    background: var(--color-cream);
    border: 2px solid var(--color-grey-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 160px;
}

.highlight-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 6px;
}

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

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    background: var(--color-cream-dark);
    padding: 48px 0;
    border-bottom: 1px solid var(--color-grey-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: var(--color-white);
    border: 2px solid var(--color-grey-light);
    padding: 24px 16px;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
}

.category-card:hover {
    border-color: var(--color-navy);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--color-grey);
    line-height: 1.4;
}

/* ============================================
   TRUST / REVIEWS SECTION
   ============================================ */
.trust {
    background: var(--color-white);
    padding: 48px 0;
    border-bottom: 1px solid var(--color-grey-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--color-cream);
    border: 1px solid var(--color-grey-light);
    padding: 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-green);
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-black);
    line-height: 1.5;
    margin-bottom: 10px;
    font-style: italic;
}

.review-author {
    font-size: 0.85rem;
    color: var(--color-grey);
    font-weight: 600;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    background: var(--color-cream-dark);
    padding: 48px 0;
}

.location-content {
    display: grid;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-info {
    display: grid;
    gap: 20px;
}

.info-block {
    background: var(--color-white);
    border: 1px solid var(--color-grey-light);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-block h3 {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-grey-light);
    font-weight: 700;
}

.address-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 8px;
}

.landmark {
    display: inline-block;
    background: var(--color-cream);
    color: var(--color-green);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 6px;
}

.plus-code {
    font-size: 0.85rem;
    color: var(--color-grey);
    font-family: 'Courier New', monospace;
    background: var(--color-grey-soft);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-grey-light);
    font-weight: 600;
    color: var(--color-black);
}

.open-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px;
    background: var(--color-grey-soft);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-grey);
    flex-shrink: 0;
}

.status-indicator.open {
    background: var(--color-success);
    box-shadow: 0 0 8px var(--color-success);
}

.status-indicator.closed {
    background: var(--color-closed);
}

.phone-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    display: block;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--color-maroon);
}

.payment-info h4 {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.payment-types span {
    background: var(--color-cream);
    border: 1px solid var(--color-grey-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-black);
}

.visit-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.visit-badge {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Map Container */
.location-map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-container {
    border: 2px solid var(--color-grey-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.map-actions {
    display: flex;
    gap: 12px;
}

/* ============================================
   MODAL (Street View)
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-white);
    background: rgba(0,0,0,0.6);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(0,0,0,0.9);
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 40px 0;
    border-top: 4px solid var(--color-maroon);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.cta-text h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.cta-text p {
    opacity: 0.9;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 32px 0 16px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--color-white);
}

.footer-hindi {
    font-family: var(--font-hindi);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-address {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-phone:hover {
    color: #90cdf4;
}

.footer-hours {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
    text-align: center;
}

.demo-notice {
    font-size: 0.8rem;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: 600;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .header-content {
        flex-wrap: nowrap;
    }

    .store-name {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .category-card {
        padding: 28px 20px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .location-content {
        grid-template-columns: 1fr 1.5fr;
    }

    .about-content {
        grid-template-columns: 2fr 1fr;
        align-items: center;
        text-align: left;
    }

    .about-text {
        text-align: left;
    }

    .about-highlights {
        flex-direction: column;
    }

    .highlight-item {
        width: 100%;
    }

    .cta-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        padding: 64px 0;
    }

    .about, .categories, .trust, .location {
        padding: 64px 0;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--color-navy);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header, .hero-actions, .map-actions, .contact-cta, .modal {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section-title {
        color: black;
    }

    a {
        text-decoration: underline;
    }
}
