/* NOLA Robyn - Styles */
/* Mobile-first, conversion-focused design */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Libre+Franklin:wght@400;600;700&display=swap');

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary: #059669;
    --accent: #dc2626;
    --usa-blue: #002868;
    --usa-red: #bf0a30;
    --usa-red-dark: #a30927;
    --usa-cream: #f7f5f0;
    --hero-bg: #f8fafc;
    --hero-ink: #0f172a;
    --hero-muted: #475569;
    --hero-border: #e2e8f0;
    --hero-chip-bg: #eef2ff;
    --hero-chip-ink: #1e40af;
    --hero-chip-alt-bg: #e0f2fe;
    --hero-chip-alt-ink: #0f4c81;
    --hero-stripe: linear-gradient(90deg, var(--usa-blue) 0%, var(--usa-blue) 55%, var(--usa-red) 55%, var(--usa-red) 100%);
    --highlight-gold: #f8d477;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --font-sans: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
    --font-display: "Fraunces", "Georgia", serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-display);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-full {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin: 4px;
}

.badge-green {
    background: var(--hero-chip-bg);
    color: var(--hero-chip-ink);
}

.badge-blue {
    background: var(--hero-chip-alt-bg);
    color: var(--hero-chip-alt-ink);
}

/* =============================================
   HEADER BAR - QUIET, PREMIUM
   ============================================= */
.topbar {
    position: relative;
    background: var(--bg);
    color: var(--hero-ink);
    padding: 12px 0;
    border-bottom: 1px solid var(--hero-border);
}

.topbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: var(--hero-stripe);
}

.topbar-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid var(--hero-border);
    box-shadow: var(--shadow);
}

.topbar-identity {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.topbar-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.topbar-name strong {
    font-size: 1.05rem;
    font-family: var(--font-display);
    letter-spacing: 0.2px;
}

.topbar-tagline {
    font-size: 0.82rem;
    color: var(--hero-muted);
    font-weight: 600;
}

.topbar-trust {
    font-size: 0.78rem;
    color: var(--hero-muted);
}

.topbar-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge-compact {
    margin: 0;
    padding: 4px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.7px;
}

.topbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.topbar-phone {
    color: var(--hero-ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

.topbar-phone:hover {
    text-decoration: underline;
}

.topbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-btn {
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--hero-border);
}

.topbar-btn-primary {
    background: var(--usa-red);
    color: white;
    border-color: var(--usa-red);
}

.topbar-btn-primary:hover {
    background: var(--usa-red-dark);
}

.topbar-btn-outline {
    background: transparent;
    color: var(--usa-blue);
    border-color: var(--usa-blue);
}

.topbar-btn-outline:hover {
    background: var(--usa-blue);
    color: white;
}

.topbar-hours {
    font-size: 0.75rem;
    color: var(--hero-muted);
}

/* =============================================
   SPEED QUEEN SHOWCASE - THE HERO
   ============================================= */
.showcase {
    background: linear-gradient(180deg, var(--hero-bg) 0%, var(--bg) 100%);
    padding: 16px 0 36px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.showcase-visual {
    text-align: center;
}

.showcase-image {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow);
}

.showcase-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

.showcase-gallery {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.showcase-gallery .gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    border: 2px solid var(--border);
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
}

.showcase-gallery .gallery-thumb.active,
.showcase-gallery .gallery-thumb:hover {
    border-color: var(--usa-blue);
}

.showcase-info {
    text-align: center;
}

.showcase-brand {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--usa-blue);
    margin-bottom: 4px;
}

.showcase-title {
    font-size: 1.9rem;
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--font-display);
}

.showcase-usa {
    display: inline-block;
    background: var(--usa-cream);
    color: var(--usa-blue);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--hero-border);
    margin-bottom: 20px;
}

/* PRICING - The Star */
.showcase-pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.price-card {
    background: var(--bg);
    border: 1px solid var(--hero-border);
    border-radius: var(--radius);
    padding: 12px 20px;
    text-align: center;
    min-width: 120px;
}

.price-card .price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price-card .price-amount {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text);
    font-family: var(--font-display);
}

.price-card .price-model {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
}

.price-card.price-total {
    background: var(--usa-blue);
    border-color: var(--usa-blue);
    color: white;
}

.price-card.price-total .price-label,
.price-card.price-total .price-amount {
    color: white;
}

.price-card.price-total .price-amount {
    font-size: 1.85rem;
}

.price-card .price-savings {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--highlight-gold);
    margin-top: 2px;
}

.showcase-stock {
    background: var(--hero-chip-bg);
    color: var(--hero-chip-ink);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
    border: 1px solid var(--hero-border);
}

.showcase-features {
    list-style: none;
    text-align: left;
    max-width: 350px;
    margin: 0 auto 20px;
    padding: 0;
}

.showcase-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.showcase-features li:last-child {
    border-bottom: none;
}

.showcase-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
}

.showcase-cta .btn-lg {
    padding: 12px 20px;
    font-size: 1rem;
}

.showcase-cta .btn-primary {
    background: var(--usa-red);
}

.showcase-cta .btn-primary:hover {
    background: var(--usa-red-dark);
}

/* Desktop: Side by side */
@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .showcase-info {
        text-align: left;
    }

    .showcase-brand {
        font-size: 2rem;
    }

    .showcase-title {
        font-size: 2.25rem;
    }

    .showcase-pricing {
        justify-content: flex-start;
    }

    .showcase-features {
        margin: 0 0 20px;
    }

    .showcase-cta {
        margin: 0;
        flex-direction: row;
        max-width: none;
    }

    .showcase-stock {
        display: block;
        text-align: left;
    }
}

/* Featured Section */
.featured {
    padding: 24px 0;
    background: var(--bg-alt);
}

.featured h2 {
    text-align: center;
    margin-bottom: 16px;
}

.featured-product {
    max-width: 600px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    background: #f3f4f6;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.tag-hot {
    background: var(--accent);
    color: white;
}

.tag-usa {
    background: linear-gradient(135deg, #002868 0%, #002868 33%, #fff 33%, #fff 66%, #bf0a30 66%, #bf0a30 100%);
    color: #002868;
    font-weight: 800;
    text-shadow: 0 0 2px white;
    border: 2px solid #002868;
}

.product-info {
    padding: 24px;
}

/* USA Banner */
.usa-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #002868 0%, #bf0a30 100%);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-weight: 700;
}

.usa-flag {
    font-size: 1.5rem;
}

.usa-text {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: #f3f4f6;
    overflow-x: auto;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary);
}

/* Product Model */
.product-model {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Product Features List */
.product-features {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Stacked buttons */
.featured-product .btn + .btn {
    margin-top: 12px;
}

/* USA Banner Hero */
.usa-banner-hero {
    justify-content: center;
    margin-bottom: 16px;
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-lg);
}

/* Product Tagline */
.product-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

/* Pair Pricing Layout */
.pair-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
}

.pair-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 100px;
}

.pair-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.pair-model {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 2px 0;
}

.pair-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.pair-plus, .pair-equals {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.pair-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, #002868 0%, #bf0a30 100%);
    border-radius: var(--radius);
    color: white;
}

.pair-total-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.pair-total-price {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Or Divider */
.or-divider {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 16px 0;
}

/* Individual Buttons */
.individual-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.individual-buttons .btn {
    flex: 1;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Responsive Pair Pricing */
@media (max-width: 480px) {
    .pair-pricing {
        flex-direction: column;
    }

    .pair-plus, .pair-equals {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .pair-item, .pair-total {
        width: 100%;
    }

    .individual-buttons {
        flex-direction: column;
    }
}

.product-title {
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.price-block {
    margin-bottom: 16px;
}

.price-was {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-now {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.savings {
    display: inline-block;
    background: #fef2f2;
    color: var(--accent);
    padding: 4px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 4px;
}

.stock-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

/* More Deals Grid */
.more-deals {
    padding: 60px 0;
}

.more-deals h2 {
    text-align: center;
    margin-bottom: 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-grid .product-card .product-info {
    padding: 16px;
}

.price-block-small {
    margin-bottom: 8px;
}

.price-block-small .price-now {
    font-size: 1.25rem;
}

.stock-badge-small {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Why Robyn Section */
.why-robyn {
    padding: 60px 0;
    background: var(--bg-alt);
}

.why-robyn h2 {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.benefit h3 {
    margin-bottom: 8px;
}

.benefit p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 8px;
}

.contact-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    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(--primary);
}

/* Contact Direct */
.contact-direct {
    text-align: center;
}

.contact-direct h3 {
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.contact-method:hover {
    background: var(--primary);
    color: white;
}

.contact-method .icon {
    font-size: 1.5rem;
}

.hours {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.hours h4 {
    margin-bottom: 8px;
}

.hours p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.store-name {
    font-weight: 600;
    color: var(--text) !important;
    margin-top: 8px;
}

.available-note {
    color: var(--secondary) !important;
    font-weight: 600;
    margin-top: 8px;
}

/* Footer */
.footer {
    background: var(--text);
    color: white;
    padding: 32px 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.phone-footer {
    margin-top: 8px;
}

.phone-footer a {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive - Tablet */
@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        max-width: 400px;
    }

    .topbar-inner {
        grid-template-columns: minmax(0, 1.4fr) auto;
        align-items: start;
    }

    .topbar-badges {
        grid-column: 1 / -1;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .topbar-inner {
        grid-template-columns: minmax(0, 1.4fr) auto minmax(0, 1fr);
        align-items: center;
    }

    .topbar-badges {
        grid-column: auto;
        justify-content: center;
    }

    .topbar-right {
        align-items: flex-end;
        text-align: right;
    }

    .topbar-hours {
        text-align: right;
    }

    .topbar-photo {
        width: 64px;
        height: 64px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Form Success/Error States */
.form-success {
    background: #dcfce7;
    color: #166534;
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
}

.form-error {
    background: #fef2f2;
    color: var(--accent);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
}
