/* New Hindmata Cloth Market - Rich Indian Ethnic Marketplace Design */

:root {
    --maroon: #8b1538;
    --deep-maroon: #6b0f2a;
    --gold: #d4a574;
    --bright-gold: #f4c542;
    --deep-green: #1a5632;
    --sage-green: #7d9b76;
    --ivory: #faf7f2;
    --cream: #f5f0e8;
    --warm-white: #fffefb;
    --charcoal: #2d2520;
    --warm-gray: #6b5d52;
    --border-gold: #e8d4b5;
    --shadow: rgba(139, 21, 56, 0.12);
    --shadow-md: rgba(139, 21, 56, 0.18);
    --shadow-lg: rgba(139, 21, 56, 0.25);
    
    --font-display: 'Cinzel', Georgia, serif;
    --font-hindi: 'Tiro Devanagari Hindi', serif;
    --font-body: 'Hind', -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(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

.pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, var(--maroon) 10px, var(--maroon) 11px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--maroon) 10px, var(--maroon) 11px);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
    border-bottom: 3px solid var(--gold);
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-lg);
}

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

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

.brand-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warm-white);
    letter-spacing: 0.02em;
}

.brand-hindi {
    font-family: var(--font-hindi);
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
}

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

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ivory);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 21, 56, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--maroon);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 16px var(--shadow);
    border: 2px solid var(--border-gold);
    animation: fadeSlideIn 0.8s ease-out 0.2s both;
}

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

.badge-icon {
    font-size: 1.3rem;
}

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

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.1;
    animation: fadeSlideIn 0.8s ease-out 0.3s both;
}

.title-sub {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--deep-green);
    margin-top: 8px;
    animation: fadeSlideIn 0.8s ease-out 0.4s both;
}

.title-hindi {
    display: block;
    font-family: var(--font-hindi);
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--gold);
    margin-top: 12px;
    font-weight: 500;
    animation: fadeSlideIn 0.8s ease-out 0.5s both;
}

.hero-tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
    animation: fadeSlideIn 0.8s ease-out 0.6s both;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    width: fit-content;
    animation: fadeSlideIn 0.8s ease-out 0.7s both;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars span {
    color: var(--bright-gold);
    font-size: 1.5rem;
}

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

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

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
    color: white;
    box-shadow: 0 4px 16px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--maroon);
    border-color: var(--maroon);
}

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

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

.hero-features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    animation: fadeSlideIn 0.8s ease-out 0.9s both;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--deep-green);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(26, 86, 50, 0.3);
}

.feature-pill svg {
    flex-shrink: 0;
}

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

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

.card-decoration {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(212, 165, 116, 0.1) 15px, rgba(212, 165, 116, 0.1) 30px);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content svg {
    opacity: 0.3;
    color: var(--gold);
}

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

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
    padding: 6px 20px;
    background: var(--maroon);
    border-radius: 50px;
}

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

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

.decorative-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: var(--space-sm) auto;
}

/* Trust Badges */
.trust-badges {
    padding: var(--space-lg) var(--space-md);
    background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
}

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

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.trust-badge .badge-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.trust-badge h3 {
    font-size: 1.3rem;
    color: var(--bright-gold);
    margin-bottom: 8px;
}

.trust-badge p {
    color: var(--ivory);
    font-size: 0.95rem;
}

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

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

.lead {
    font-size: 1.3rem;
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

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

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

.highlight {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--cream);
    border-radius: 16px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

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

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

.highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--maroon);
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.stat-box {
    background: var(--cream);
    padding: var(--space-md);
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-gold);
    transition: all 0.3s ease;
}

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

.stat-box.primary {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
    border-color: var(--gold);
}

.stat-box.primary .stat-number,
.stat-box.primary .stat-label {
    color: white;
}

.stat-box.accent {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--sage-green) 100%);
    border-color: var(--sage-green);
}

.stat-box.accent .stat-number,
.stat-box.accent .stat-label {
    color: white;
}

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

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

/* Products Section */
.products {
    padding: var(--space-xl) var(--space-md);
    background: var(--ivory);
}

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

.product-card {
    background: white;
    padding: var(--space-md);
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-card.featured {
    background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
    border-color: var(--maroon);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: var(--space-md);
    background: var(--maroon);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.product-card h3 {
    font-size: 1.4rem;
    color: var(--maroon);
    margin-bottom: 12px;
    text-align: center;
}

.product-card p {
    color: var(--warm-gray);
    text-align: center;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: var(--space-sm);
    border-top: 2px solid var(--border-gold);
}

.card-features li {
    color: var(--charcoal);
    font-size: 0.9rem;
    padding-left: 24px;
    position: relative;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--deep-green);
    font-weight: 700;
}

/* Why Us Section */
.why-us {
    padding: var(--space-xl) var(--space-md);
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--sage-green) 100%);
}

.why-us .section-label {
    background: var(--bright-gold);
    color: var(--deep-green);
}

.why-us .section-header h2 {
    color: white;
}

.why-us .decorative-line {
    background: linear-gradient(90deg, transparent 0%, white 50%, transparent 100%);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--bright-gold);
    margin-bottom: var(--space-sm);
}

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

.why-card p {
    color: var(--ivory);
    line-height: 1.7;
}

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

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

.stars-large {
    color: var(--bright-gold);
    font-size: 3rem;
    letter-spacing: 8px;
    margin-bottom: 12px;
}

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

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

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

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

.testimonial-stars {
    color: var(--bright-gold);
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    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: 2px solid var(--border-gold);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

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

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

/* Visit Section */
.visit {
    padding: var(--space-xl) var(--space-md);
    background: var(--ivory);
}

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

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

.info-card {
    background: white;
    padding: var(--space-md);
    border-radius: 16px;
    border: 2px solid var(--border-gold);
    display: flex;
    gap: var(--space-sm);
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 6px;
}

.plus-code {
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-family: monospace;
    background: var(--cream);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 8px;
}

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

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

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

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

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

.services-list li {
    color: var(--charcoal);
    font-size: 0.95rem;
}

.note {
    margin-top: var(--space-sm);
    padding: 10px;
    background: var(--cream);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--warm-gray);
}

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

.map-container h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 12px;
}

.map-container iframe {
    border-radius: 16px;
    box-shadow: 0 4px 16px var(--shadow);
    border: 3px solid var(--gold);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--maroon) 100%);
    color: var(--ivory);
    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: var(--bright-gold);
    margin-bottom: 8px;
}

.footer-hindi {
    font-family: var(--font-hindi);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 12px;
}

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

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

.footer-rating .stars {
    color: var(--bright-gold);
    letter-spacing: 2px;
}

.footer-links h4,
.footer-contact h4,
.footer-products h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

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

.footer-links a,
.footer-products li {
    color: var(--cream);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--bright-gold);
    padding-left: 6px;
}

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

.footer-bottom {
    border-top: 2px solid rgba(212, 165, 116, 0.3);
    padding-top: var(--space-md);
    text-align: center;
}

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: 0 4px 12px var(--shadow-lg);
        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 rgba(212, 165, 116, 0.3);
    }
    
    .nav-menu a {
        display: block;
        padding: var(--space-sm) 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .badges-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
}
