/* F&S Collections - Silvergrade CSS */
/* Champagne Chic Aesthetic */

:root {
    /* F&S Collections Brand Colors */
    --fs-blue: #2C5282;
    --fs-blue-light: #3D6FA3;
    --fs-yellow: #FFC600;
    --fs-red: #FF2D2D;
    --fs-cream-bg: #F7F5F2;
    --fs-gold-border: #D6A958;
    
    /* Accent Colors */
    --primary-gold: #D6A958;
    --accent-gold: #D4AF37;
    --soft-gold: #E8D5C4;
    --bg-cream: #F7F5F2;
    --bg-light: #F8F4F0;
    --text-dark: #2D2D2D;
    --text-muted: #7A7A7A;
    --border-color: rgba(214, 169, 88, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.1);
    --touch-target: 48px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-gold);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(180deg, var(--fs-blue) 0%, var(--fs-blue-light) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--fs-yellow);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 50;
}

@supports not (backdrop-filter: blur(10px)) {
    header {
        background: linear-gradient(180deg, rgba(44, 82, 130, 0.95) 0%, rgba(61, 111, 163, 0.95) 100%);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
}

.logo h1 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--fs-yellow);
    letter-spacing: 0.05em;
}

.logo .tagline {
    font-size: 0.85rem;
    color: rgba(255, 198, 0, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

nav {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    font-size: 1.05rem;
}

nav a:hover,
nav a[aria-current="page"] {
    color: var(--fs-yellow);
    text-decoration: underline;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: var(--touch-target);
    height: var(--touch-target);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--fs-yellow);
    color: var(--fs-blue);
    box-shadow: 0 8px 16px rgba(255, 198, 0, 0.3);
    font-weight: 700;
    border-radius: 999px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 198, 0, 0.4);
    background: #FFD700;
}

.btn-secondary {
    background: rgba(201, 169, 97, 0.08);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--fs-blue) 0%, var(--fs-blue-light) 100%);
    color: white;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--fs-yellow);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.placeholder-hero,
.placeholder-about {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #E8D5C4 0%, #D9C4AF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
    font-weight: 500;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: var(--shadow-lg);
}

/* ===== OCCASIONS SECTION ===== */
.occasions {
    padding: 3rem 0;
    background: rgba(201, 169, 97, 0.04);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.occasions h2,
.featured-products h2,
.why-silvergrade h2,
.cta-section h2,
.about-section h2,
.mission-section h2,
.silvergrade-difference h2,
.contact-section h2,
.faq-section h2,
.shop-section h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.occasion-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.occasion-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.occasion-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.occasion-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 3rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--fs-cream-bg);
    border: 1px solid var(--fs-gold-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--fs-yellow);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.product-vibe {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fs-gold-border);
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.tag {
    background: transparent;
    color: var(--fs-blue);
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--fs-gold-border);
}

.product-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-buttons .btn {
    flex: 1;
    font-size: 0.85rem;
    padding: 0.55rem 0.75rem;
}

/* ===== WHY SILVERGRADE ===== */
.why-silvergrade {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(232, 180, 168, 0.06) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    margin-bottom: 0.5rem;
}

.cta-section > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 60ch;
    margin: 0 auto 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SHOP SECTION ===== */
.shop-section {
    padding: 3rem 0;
}

.collection-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 70ch;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.filter-controls {
    margin-bottom: 2rem;
}

.search-bar {
    margin-bottom: 1.5rem;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.filter-dropdowns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-dropdowns select {
    padding: 0.65rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-dropdowns select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

#no-results {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(232, 180, 168, 0.03) 100%);
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.about-section {
    padding: 3rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1rem;
    text-align: left;
    margin-top: 0;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-section {
    padding: 3rem 0;
    background: rgba(201, 169, 97, 0.04);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.silvergrade-difference {
    padding: 3rem 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.difference-item {
    display: flex;
    gap: 1.5rem;
}

.diff-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.difference-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.difference-item p {
    color: var(--text-muted);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(232, 180, 168, 0.03) 100%);
}

.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.contact-section {
    padding: 3rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fs-yellow);
    box-shadow: 0 0 0 3px rgba(255, 198, 0, 0.1);
}

.form-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Phone number styling */
a.phone {
    color: var(--fs-red);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--fs-red);
    transition: opacity 0.2s;
}

a.phone:hover {
    opacity: 0.8;
}

.phone-number {
    margin: 0.5rem 0;
    font-weight: 600;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.contact-info-item a {
    color: var(--primary-gold);
    text-decoration: none;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-benefits li {
    color: var(--text-muted);
}

.faq-section {
    padding: 3rem 0;
    background: rgba(201, 169, 97, 0.04);
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background: var(--fs-blue);
    color: #E0E0E0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--fs-yellow);
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--fs-yellow);
    text-decoration: none;
}

.footer-section a.phone {
    color: var(--fs-red);
    font-weight: 700;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #A0A0A0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--fs-yellow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding: 0.75rem 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 82, 130, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: var(--shadow-md);
        display: none;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
    }

    nav.is-open {
        display: flex;
    }

    nav a {
        width: 100%;
        padding: 0.4rem 0.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        display: none;
    }

    .cta-buttons .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.55rem 0.9rem;
    }

    nav.is-open ~ .cta-buttons {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-image {
        order: -1;
        max-height: 400px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        flex: 1;
        font-size: 0.9rem;
    }

    .occasions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .filter-dropdowns {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    nav {
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 0.4rem;
    }

    .cta-buttons .btn {
        font-size: 0.8rem;
        padding: 0.45rem 0.7rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        gap: 0.5rem;
        flex-direction: column;
    }

    .hero-buttons .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        width: 100%;
    }

    .hero-image {
        max-height: 300px;
    }

    .occasions h2,
    .featured-products h2,
    .why-choose-us h2,
    .cta-section h2,
    .about-section h2,
    .mission-section h2,
    .our-difference h2,
    .contact-section h2,
    .faq-section h2,
    .shop-section h1 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .occasions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .occasion-card {
        padding: 1rem 0.75rem;
    }

    .occasion-icon {
        font-size: 1.8rem;
    }

    .occasion-card h3 {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card-content {
        padding: 0.8rem;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }

    .product-card .price {
        font-size: 0.9rem;
    }

    .product-buttons {
        gap: 0.5rem;
    }

    .product-buttons .btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .difference-item {
        padding: 1rem;
    }

    .diff-number {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-section {
        padding: 0.5rem 0;
    }

    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .filter-dropdowns {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .search-bar input {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group {
        gap: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .contact-info-item {
        padding: 1rem;
    }
}

/* ===== ORDER MODAL ===== */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    padding: 1rem;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.order-modal-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
    margin: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.order-modal-content h2 {
    color: var(--fs-blue);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--fs-red);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.order-form label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.order-form input,
.order-form select {
    padding: 0.65rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.order-form input:focus,
.order-form select:focus {
    outline: none;
    border-color: var(--fs-yellow);
    box-shadow: 0 0 0 3px rgba(255, 198, 0, 0.1);
}

.order-form input[readonly] {
    background: #f5f5f5;
    color: var(--text-dark);
    font-weight: 500;
}

.order-form hr {
    margin: 1rem 0 !important;
    border: none;
    border-top: 1px solid #ddd;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (max-width: 768px) {
    .order-modal-content {
        padding: 1.2rem;
        max-width: 100%;
    }

    .order-modal-content h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .order-form {
        gap: 0.9rem;
    }

    .order-form label {
        font-size: 0.85rem;
    }

    .order-form input,
    .order-form select {
        font-size: 16px;
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .order-modal {
        padding: 0;
        align-items: flex-start;
    }

    .order-modal-content {
        padding: 1rem;
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        border-radius: 12px 12px 0 0;
        margin-top: auto;
    }

    .order-modal-content h2 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .modal-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }

    .order-form {
        gap: 0.8rem;
    }

    .order-form label {
        font-size: 0.8rem;
    }

    .order-form input,
    .order-form select {
        font-size: 16px;
        padding: 0.55rem;
    }

    .order-form hr {
        margin: 0.8rem 0 !important;
    }
}

@media print {
    header,
    footer {
        display: none;
    }

    .btn {
        page-break-inside: avoid;
    }
}
