/* ==========================================================================
   SHAH STORE - MAIN PUBLIC STYLESHEET
   Brand Colors: Primary Orange (#ff6b00) & Deep Forest Green (#0b2e1e)
   ========================================================================== */

/* --- 1. Root Variables & Setup --- */
:root {
    --primary-orange: #ff6b00;
    --primary-orange-hover: #e05e00;
    --dark-green: #0b2e1e;
    --dark-green-light: #144730;
    --dark-green-darker: #061d13;
    --accent-gold: #f59e0b;
    --bg-cream: #fffaf5;
    --bg-white: #ffffff;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border-color: #f3e8de;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #1ebc57;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(11, 46, 30, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;
}

/* --- 2. CSS Reset & Typography --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 3. Shared Buttons & Headers --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary-orange);
}

.btn-phone:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.sub-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    display: inline-block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.25;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- 4. Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 18px 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
}

.logo-icon img {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1,
.logo-text .store-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f3d2e;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.logo-text span,
.logo-text .store-location {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff7700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.brand-location {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu .nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark-green);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-trigger {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(11, 46, 30, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1rem;
}

.cart-trigger:hover {
    background: var(--dark-green);
    color: #ffffff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--dark-green);
    cursor: pointer;
}

/* --- 5. Hero Section --- */
.hero-section {
    position: relative;
    padding: 140px 0 80px 0;
    background: linear-gradient(135deg, #fffbf6 0%, #fff2e3 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.script-welcome {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--primary-orange);
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--dark-green);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.hero-subtitle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-green-light);
    line-height: 1.4;
    margin-bottom: 14px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
}

.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 6px solid #ffffff;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border-color);
}

.floating-badge .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-badge .badge-text strong {
    display: block;
    color: var(--dark-green);
    font-size: 0.9rem;
}

.floating-badge .badge-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.wave-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* --- 6. Trust Bar --- */
.trust-bar-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    position: relative;
    z-index: 3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--bg-cream);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.trust-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px auto;
    box-shadow: var(--shadow-sm);
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- 7. Popular Categories --- */
.categories-section {
    padding: 90px 0;
    background-color: var(--bg-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-category-icon {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--dark-green);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 3px solid #ffffff;
    box-shadow: var(--shadow-sm);
}

.category-card .card-body {
    padding: 26px 20px 20px 20px;
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 6px;
}

.category-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.4;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.category-link:hover {
    gap: 12px;
}

/* --- 8. Product Catalog Showcase --- */
.products-showcase-section {
    background-color: var(--bg-white);
    padding: 90px 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-item-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 0, 0.4);
}

.product-badge-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.category-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-orange);
    background: rgba(255, 107, 0, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.stock-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.stock-tag.in { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.stock-tag.out { background: rgba(239, 68, 68, 0.12); color: #ef4444; }

.product-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.product-thumb img {
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-item-card:hover .product-thumb img {
    transform: scale(1.06);
}

.no-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #dfd3c5;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
    line-height: 1.3;
}

.price-row {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.selling-rate {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.unit-rate {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-whatsapp-order {
    margin-top: auto;
    background: var(--whatsapp-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp-order:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.disabled-btn {
    pointer-events: none;
    background: #9ca3af !important;
}

/* --- 9. Smart Store POS / Vyapar Highlights --- */
.smart-store-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--dark-green-darker) 0%, var(--dark-green) 100%);
    color: #ffffff;
    position: relative;
}

.smart-store-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.badge-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.2);
    color: #ff9442;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.smart-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.smart-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.smart-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.feature-text strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
}

.feature-text p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

.tech-card-wrapper {
    position: relative;
}

.tech-graphic img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.tech-badge {
    position: absolute;
    background: #ffffff;
    color: var(--dark-green);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-badge i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.tech-badge span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tech-badge strong {
    font-size: 0.9rem;
    font-weight: 700;
}

.badge-top {
    top: -20px;
    right: -20px;
}

.badge-bottom {
    bottom: -20px;
    left: -20px;
}

/* --- 10. Offers Section --- */
.offers-section {
    padding: 90px 0;
    background-color: var(--bg-cream);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.offer-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.offer-img {
    height: 180px;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-details h3 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 700;
}

.offer-details p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.offer-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.offer-footer .validity {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- 11. Footer --- */
.site-footer {
    background: var(--dark-green-darker);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.logo-icon.light {
    background: var(--primary-orange);
}

.brand-name.light {
    color: #ffffff;
}

.brand-location.light {
    color: #ff9442;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-address {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-orange);
}

.footer-link-highlight:hover {
    color: #ffffff;
}

.timing-badge {
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    border-left: 3px solid var(--primary-orange);
}

.timing-badge strong {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
}

.timing-badge span {
    font-size: 0.84rem;
    color: #ff9442;
}

.timing-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-contact-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list a:hover {
    color: var(--primary-orange);
}

.payment-icons {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- 12. Scroll Reveal Animations & Micro-Interactions --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- 13. Responsive Media Queries --- */
@media (max-width: 1024px) {
    .trust-grid, .categories-grid, .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-container, .smart-store-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        padding: 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-menu .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .header-actions .btn-phone {
        display: none;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 580px) {
    .trust-grid, .categories-grid, .catalog-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .floating-badge, .tech-badge {
        display: none;
    }
}