/* Apparel Store - Modern Indian Retail Design */

:root {
    --cream: #faf8f4;
    --beige: #e8e3d9;
    --sand: #d4cfc2;
    --terracotta: #b8856a;
    --copper: #9a6f5a;
    --charcoal: #2d2a26;
    --warm-gray: #5a5651;
    --white: #ffffff;
    --border: #e0dbd0;
    --shadow: rgba(45, 42, 38, 0.08);
    --shadow-md: rgba(45, 42, 38, 0.12);
    --shadow-lg: rgba(45, 42, 38, 0.16);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Work Sans', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        var(--charcoal) 2px,
        var(--charcoal) 4px
    );
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 2px 8px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-en {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.brand-hi {
    font-size: 0.8rem;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--warm-gray);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--charcoal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--copper);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(75px + var(--space-lg)) var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--terracotta);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px var(--shadow);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

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

.hero-title {
    margin-bottom: var(--space-md);
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--charcoal);
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.title-hindi {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--terracotta);
    font-weight: 400;
    margin-top: 8px;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 580px;
    margin-bottom: var(--space-md);
    animation: fadeIn 0.8s ease-out 0.5s both;
}

.rating-block {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.stars {
    color: #f4a261;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-info strong {
    font-size: 1.05rem;
    color: var(--charcoal);
}

.rating-info span {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    animation: fadeIn 0.8s ease-out 0.7s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--terracotta);
    color: white;
}

.btn-primary:hover {
    background: var(--copper);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-highlights {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.highlight-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out 0.9s both;
}

.visual-card {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--beige) 0%, var(--sand) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.card-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(184, 133, 106, 0.05) 10px,
        rgba(184, 133, 106, 0.05) 20px
    );
}

.visual-card svg {
    position: relative;
    z-index: 1;
    opacity: 0.3;
    color: var(--terracotta);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--warm-gray);
}

/* About Section */
.about {
    padding: var(--space-xl) var(--space-md);
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.lead {
    font-size: 1.25rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.about-content p {
    margin-bottom: var(--space-sm);
    color: var(--warm-gray);
}

.value-props {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.prop {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.prop:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px var(--shadow);
}

.prop-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.prop h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.prop p {
    font-size: 0.95rem;
    margin: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-card {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.stat-card.highlight {
    background: var(--terracotta);
}

.stat-card.highlight .stat-number,
.stat-card.highlight .stat-label {
    color: white;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

/* Collections */
.collections {
    padding: var(--space-xl) var(--space-md);
    background: var(--cream);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.collection-card {
    background: white;
    padding: var(--space-md);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.collection-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.collection-card p {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Reviews */
.reviews {
    padding: var(--space-xl) var(--space-md);
    background: white;
}

.rating-summary {
    margin-top: var(--space-sm);
}

.stars-large {
    color: #f4a261;
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.rating-summary p {
    font-size: 1.1rem;
    color: var(--warm-gray);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.testimonial {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.testimonial-stars {
    color: #f4a261;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--terracotta);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.review-note {
    background: var(--beige);
    padding: var(--space-md);
    border-radius: 12px;
    border-left: 4px solid var(--terracotta);
}

.review-note p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Store Info */
.store-info {
    padding: var(--space-xl) var(--space-md);
    background: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.info-block {
    background: white;
    padding: var(--space-md);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.info-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.info-block h3 svg {
    color: var(--terracotta);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.hour-row span:first-child {
    font-weight: 500;
    color: var(--charcoal);
}

.hour-row span:last-child {
    color: var(--warm-gray);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

/* Location */
.location {
    padding: var(--space-xl) var(--space-md);
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.detail-card {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    gap: var(--space-sm);
}

.detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.detail-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.detail-card p {
    color: var(--warm-gray);
    line-height: 1.7;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--terracotta);
    display: block;
    margin-bottom: 6px;
}

.phone-number:hover {
    color: var(--copper);
}

.phone-note {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

.maps-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.map-embed h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.map-embed iframe {
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--beige);
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.footer-hindi {
    font-size: 1.1rem;
    color: var(--terracotta);
    font-weight: 400;
}

.footer-brand p {
    color: var(--sand);
    margin-bottom: var(--space-sm);
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-rating .stars {
    color: #f4a261;
    letter-spacing: 2px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-sm);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--sand);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--terracotta);
    padding-left: 4px;
}

.footer-contact p,
.footer-hours p {
    color: var(--sand);
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--terracotta);
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 207, 194, 0.2);
    padding-top: var(--space-md);
    text-align: center;
}

.demo-notice {
    font-size: 0.85rem;
    color: var(--sand);
    opacity: 0.7;
    margin-bottom: 8px;
    font-style: italic;
}

.footer-bottom p {
    color: var(--sand);
    opacity: 0.8;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 4px 12px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-menu a {
        display: block;
        padding: var(--space-sm) 0;
    }
    
    .nav-cta {
        margin-top: var(--space-sm);
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-highlights {
        flex-direction: column;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .title-main {
        font-size: 2.2rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
}
