/* ============================================
   PBC Farm — Ranch-Style Theme
   ============================================ */

:root {
    --color-earth: #3B2F2F;
    --color-bark: #5C4033;
    --color-saddle: #8B5E3C;
    --color-wheat: #D4A76A;
    --color-cream: #FAF3E0;
    --color-ivory: #FFFDF7;
    --color-sage: #6B7F5E;
    --color-forest: #3A5A40;
    --color-sky: #87CEEB;
    --color-rust: #A0522D;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-gray: #6c757d;
    --color-light-gray: #e9ecef;
    --color-danger: #c0392b;
    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-info: #2980b9;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);

    --radius: 6px;
    --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-earth);
    background: var(--color-ivory);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-forest); text-decoration: none; }
a:hover { color: var(--color-sage); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; color: var(--color-earth); }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content-narrow { max-width: 800px; }
.text-center { text-align: center; }

/* ============================================
   Header
   ============================================ */
.header-top {
    background: var(--color-earth);
    color: var(--color-cream);
    padding: 6px 0;
    font-size: 0.85rem;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.header-top a { color: var(--color-wheat); }
.header-top a:hover { color: var(--color-white); }
.header-top .divider { margin: 0 8px; opacity: 0.4; }
.link-btn { background: none; border: none; color: var(--color-wheat); cursor: pointer; font-size: inherit; font-family: inherit; padding: 0; }
.link-btn:hover { color: var(--color-white); }

.main-nav {
    background: var(--color-white);
    border-bottom: 3px solid var(--color-wheat);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; padding: 12px 0; }
.logo-img { height: 50px; }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--color-earth); }

.nav-menu { list-style: none; display: flex; gap: 0; }
.nav-menu a {
    display: block;
    padding: 18px 20px;
    color: var(--color-earth);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-forest);
    border-bottom-color: var(--color-forest);
    background: rgba(107, 127, 94, 0.05);
}

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--color-earth); margin: 5px 0; transition: 0.3s; }

/* ============================================
   Hero
   ============================================ */
.hero {
    background-size: cover;
    background-position: center;
    background-color: var(--color-earth);
    min-height: 550px;
    display: flex;
    align-items: center;
}
.hero-overlay {
    width: 100%;
    background: linear-gradient(135deg, rgba(59,47,47,0.85) 0%, rgba(58,90,64,0.7) 100%);
    padding: 100px 0;
}
.hero h1 {
    color: var(--color-white);
    font-size: 3.2rem;
    max-width: 700px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.hero-subtitle {
    color: var(--color-cream);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.btn-primary {
    background: var(--color-forest);
    color: var(--color-white);
    border-color: var(--color-forest);
}
.btn-primary:hover {
    background: var(--color-sage);
    border-color: var(--color-sage);
    color: var(--color-white);
}
.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-earth);
}
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 6px 16px; font-size: 0.85rem; }
.btn-block { display: block; width: 100%; }
.btn-disabled { background: var(--color-gray); color: var(--color-white); cursor: not-allowed; }

/* ============================================
   Features Strip
   ============================================ */
.features-strip { background: var(--color-cream); padding: 60px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-item { text-align: center; }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-item h3 { color: var(--color-forest); }
.feature-item p { color: var(--color-bark); font-size: 0.95rem; }

/* ============================================
   Product Highlight (Home)
   ============================================ */
.product-highlight { padding: 80px 0; }
.product-highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-highlight-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-forest);
    margin-bottom: 0.5rem;
}
.section-label.center { display: block; text-align: center; }
.product-short-desc { font-size: 1.1rem; color: var(--color-bark); margin-bottom: 1.5rem; }
.product-price-box {
    background: var(--color-cream);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-forest);
}
.price { font-size: 2.2rem; font-weight: 800; color: var(--color-forest); font-family: var(--font-heading); }
.price-note { display: block; font-size: 0.95rem; color: var(--color-earth); margin-top: 4px; font-weight: 600; }
.shipping-note { display: block; font-size: 0.9rem; color: var(--color-earth); font-weight: 600; margin-top: 2px; }

/* Screen reader only (accessible but hidden visually) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.product-bullets { list-style: none; margin-bottom: 2rem; }
.product-bullets li { padding: 6px 0 6px 28px; position: relative; color: var(--color-bark); }
.product-bullets li::before { content: '\2713'; position: absolute; left: 0; color: var(--color-forest); font-weight: 700; }

/* ============================================
   About Section (Home)
   ============================================ */
.home-about {
    background-size: cover;
    background-position: center;
    background-color: var(--color-earth);
}
.home-about-overlay {
    background: rgba(59,47,47,0.88);
    padding: 80px 0;
}
.home-about-content { max-width: 700px; }
.home-about-content .section-label { color: var(--color-wheat); }
.home-about-content h2 { color: var(--color-white); font-size: 2.2rem; }
.home-about-content p { color: var(--color-cream); font-size: 1.05rem; margin-bottom: 1rem; }

/* ============================================
   Tips / Info Grid
   ============================================ */
.tips-section { padding: 80px 0; background: var(--color-white); }
.section-title { text-align: center; margin-bottom: 3rem; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tip-card {
    background: var(--color-ivory);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.tip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tip-number { font-size: 2rem; color: var(--color-forest); margin-bottom: 1rem; font-weight: 700; }
.tip-card h3 { color: var(--color-bark); }
.tip-card p { font-size: 0.93rem; color: var(--color-gray); }

/* ============================================
   CTA
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-forest), var(--color-sage));
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 { color: var(--color-white); font-size: 2.4rem; margin-bottom: 1rem; }
.cta-section p { color: var(--color-cream); font-size: 1.15rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    background-size: cover;
    background-position: center;
    background-color: var(--color-earth);
}
.page-header-overlay {
    background: rgba(59,47,47,0.82);
    padding: 80px 0;
}
.page-header h1 { color: var(--color-white); font-size: 2.8rem; }
.page-header p { color: var(--color-cream); font-size: 1.15rem; margin-top: 0.5rem; }

.page-header-sm {
    background: var(--color-earth);
    padding: 40px 0;
}
.page-header-sm h1 { color: var(--color-white); font-size: 2rem; }

/* ============================================
   Content Pages
   ============================================ */
.content-section { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 350px; gap: 60px; }
.content-text h2 { margin-top: 2rem; font-size: 1.6rem; }
.content-text h2:first-child { margin-top: 0; }
.content-text p, .content-text li { color: var(--color-bark); }
.content-text ul, .content-text ol { margin: 1rem 0; padding-left: 1.5rem; }
.content-text li { margin-bottom: 0.5rem; }

.content-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.info-box {
    background: var(--color-cream);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--color-forest);
}
.info-box h3 { color: var(--color-forest); margin-bottom: 0.75rem; }
.info-box p { margin-bottom: 0.5rem; font-size: 0.95rem; }

/* ============================================
   Shop
   ============================================ */
.shop-section { padding: 60px 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card-image { position: relative; overflow: hidden; }
.product-card-image img { width: 100%; height: 300px; object-fit: cover; }
.badge-soldout {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-danger);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.85rem;
}
.product-card-body { padding: 24px; }
.product-card-body h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.product-card-body p { color: var(--color-bark); font-size: 0.95rem; margin-bottom: 1rem; }
.product-card-price { margin-bottom: 1.5rem; }
.product-card-price .price { font-size: 1.8rem; }

/* ============================================
   Product Detail
   ============================================ */
.product-detail { padding: 40px 0 80px; }
.breadcrumb { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 2rem; }
.breadcrumb a { color: var(--color-sage); }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-detail-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.product-detail-info h1 { font-size: 2rem; margin-bottom: 0.75rem; }

.product-notice {
    background: var(--color-cream);
    border-left: 4px solid var(--color-wheat);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.order-form { margin: 1.5rem 0; }
.quantity-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.quantity-row label { font-weight: 600; white-space: nowrap; }

.info-callout {
    background: var(--color-ivory);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 1.5rem;
}
.info-callout h3 { color: var(--color-forest); font-size: 1.1rem; }
.info-callout p { font-size: 0.93rem; color: var(--color-bark); margin: 0; }

.soldout-notice {
    background: #fef3f2;
    border: 1px solid var(--color-danger);
    padding: 20px;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    color: var(--color-danger);
}

.product-description {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--color-light-gray);
}
.product-description h3 { color: var(--color-forest); margin-top: 2rem; }
.product-description h3:first-child { margin-top: 0; }
.product-description ul { margin: 1rem 0; padding-left: 1.5rem; }
.product-description li { margin-bottom: 0.5rem; color: var(--color-bark); }
.product-description p { color: var(--color-bark); margin-bottom: 1rem; }

/* ============================================
   Forms
   ============================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: var(--color-earth);
}
.form-group small { display: block; margin-top: 4px; color: var(--color-gray); font-size: 0.85rem; }
.form-control, .form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-earth);
    background: var(--color-white);
    transition: border-color 0.2s;
}
.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(58,90,64,0.1);
}
textarea.form-control { resize: vertical; }
.form-error { color: var(--color-danger); font-size: 0.85rem; margin-top: 4px; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { grid-template-columns: 2fr 1fr 1fr; }
.form-check { margin-bottom: 1.25rem; }
.form-check label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.recaptcha-group { margin: 1.5rem 0; }

/* ============================================
   Checkout
   ============================================ */
.checkout-section { padding: 40px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-form-col h2 { margin-bottom: 1.5rem; }
.checkout-note { font-size: 0.85rem; color: var(--color-gray); text-align: center; margin-top: 1rem; }

.order-summary {
    background: var(--color-cream);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}
.order-summary h2 { font-size: 1.4rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
.summary-item { padding: 8px 0; display: flex; justify-content: space-between; font-weight: 600; }
.summary-line { padding: 8px 0; display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--color-bark); border-bottom: 1px solid rgba(0,0,0,0.06); }
.summary-total { padding: 12px 0; display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; border-top: 2px solid var(--color-earth); margin-top: 8px; }
.summary-notice { margin-top: 1rem; padding: 12px; background: var(--color-ivory); border-radius: var(--radius); font-size: 0.85rem; }
.order-recap { margin: 2rem auto; max-width: 400px; text-align: left; }

.success-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--color-success);
    color: var(--color-white);
    font-size: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}
.success-actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; }
.success-actions .btn-outline { color: var(--color-earth); border-color: var(--color-earth); }

/* ============================================
   Auth
   ============================================ */
.auth-section { padding: 60px 0; display: flex; justify-content: center; }
.auth-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 480px;
}
.auth-card h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.auth-card > p { color: var(--color-bark); margin-bottom: 1.5rem; }
.auth-links { margin-top: 1.5rem; text-align: center; font-size: 0.95rem; }
.auth-links p { margin-top: 0.75rem; }

/* ============================================
   Account
   ============================================ */
.account-nav {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-light-gray);
}
.account-nav a {
    padding: 12px 24px;
    font-weight: 600;
    color: var(--color-gray);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}
.account-nav a.active, .account-nav a:hover { color: var(--color-forest); border-bottom-color: var(--color-forest); }

.back-link { display: inline-block; color: var(--color-sage); margin-bottom: 1.5rem; font-weight: 600; }
.back-link:hover { color: var(--color-forest); }

/* ============================================
   Tables
   ============================================ */
.table-responsive { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    background: var(--color-cream);
    padding: 12px 16px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-bark);
    white-space: nowrap;
}
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--color-light-gray); font-size: 0.95rem; }
.data-table tr:hover { background: rgba(107, 127, 94, 0.03); }

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger { background: #f8d7da; color: #721c24; }
.badge-info { background: #d1ecf1; color: #0c5460; }
.badge-primary { background: #d4e7d4; color: var(--color-forest); }
.badge-secondary { background: #e2e3e5; color: #383d41; }
.badge-lg { font-size: 0.9rem; padding: 6px 14px; }

/* ============================================
   Alerts
   ============================================ */
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.95rem; }
.alert p { margin: 0; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ============================================
   Empty State
   ============================================ */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h2 { color: var(--color-bark); }
.empty-state p { color: var(--color-gray); margin-bottom: 1.5rem; }

/* ============================================
   Order Detail
   ============================================ */
.order-detail-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.order-detail-header {
    background: var(--color-cream);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-date { margin-left: 1rem; font-size: 0.9rem; color: var(--color-gray); }
.order-detail-body { padding: 24px; }
.order-detail-body h3 { margin-top: 1.5rem; color: var(--color-forest); font-size: 1.1rem; }
.order-detail-body h3:first-child { margin-top: 0; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-earth);
    color: var(--color-cream);
    padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-col h3 { color: var(--color-wheat); font-size: 1.2rem; margin-bottom: 1rem; }
.footer-col p { font-size: 0.93rem; opacity: 0.85; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--color-cream); opacity: 0.85; }
.footer-col a:hover { color: var(--color-wheat); opacity: 1; }
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ============================================
   Pagination
   ============================================ */
nav[aria-label="Pagination Navigation"] { margin-top: 2rem; }
nav[aria-label="Pagination Navigation"] div { display: flex; justify-content: center; }
nav[aria-label="Pagination Navigation"] span,
nav[aria-label="Pagination Navigation"] a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 2px;
    border-radius: var(--radius);
    font-size: 0.9rem;
}
nav[aria-label="Pagination Navigation"] span[aria-current="page"] span {
    background: var(--color-forest);
    color: var(--color-white);
}

/* Privacy page */
.content-narrow h2 { margin-top: 2rem; }
.content-narrow h3 { margin-top: 1.5rem; color: var(--color-bark); }
.content-narrow ul { padding-left: 1.5rem; margin: 0.75rem 0; }
.content-narrow li { margin-bottom: 0.5rem; }

.text-success { color: var(--color-success); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.4rem; }
    .product-highlight-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .hero { min-height: 400px; }
    .hero h1 { font-size: 2rem; }
    .hero-overlay { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
    .tips-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .page-header-overlay { padding: 50px 0; }
    .page-header h1 { font-size: 2rem; }

    .mobile-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        border-top: 1px solid var(--color-light-gray);
        box-shadow: var(--shadow-md);
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { border-bottom: 1px solid var(--color-light-gray); margin-bottom: 0; }

    .header-top .container { justify-content: center; text-align: center; }
    .header-auth { display: block; margin-top: 4px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: 1.7rem; }
    .price { font-size: 1.8rem; }
    .auth-card { padding: 24px; margin: 0 10px; }
}
