/* ==========================================================================
   American Reefer - Main Stylesheet
   Premium Flower. Honest Price.
   ========================================================================== */

/* CSS Variables
   ========================================================================== */
:root {
    /* Colors */
    --navy: #1B2A4A;
    --navy-dark: #111C33;
    --navy-light: #2A3F66;
    --red: #B22234;
    --red-dark: #8B1A28;
    --red-light: #D43347;
    --white: #FFFFFF;
    --gold: #D4AF37;
    --gold-light: #E8C84A;
    --cream: #F5F5DC;
    --cream-dark: #E8E8C8;
    --charcoal: #2D2D2D;
    --gray: #6B7280;
    --gray-light: #9CA3AF;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', 'Segoe UI', Arial, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section
   ========================================================================== */
.section {
    padding: var(--space-xl) 0;
}

.section-dark {
    background-color: var(--navy);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-cream {
    background-color: var(--cream);
}

.section-red {
    background-color: var(--red);
    color: var(--white);
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

/* Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

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

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

.btn-primary.btn-dark {
    background-color: var(--navy);
    border-color: var(--navy);
}

.btn-primary.btn-dark:hover {
    background-color: var(--navy-dark);
    border-color: var(--navy-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

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

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

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

.btn-text {
    padding: 0;
    background: none;
    border: none;
    color: var(--navy);
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.btn-text span {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.btn-text:hover span {
    transform: translateX(4px);
}

/* Age Gate
   ========================================================================== */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--container-padding);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    text-align: center;
    max-width: 400px;
}

.age-gate-logo {
    margin-bottom: var(--space-md);
}

.age-gate-logo-img {
    width: 220px;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .age-gate-logo-img {
        width: 160px;
    }
}

.age-gate h1 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.age-gate p {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.age-gate-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-md);
}

.age-gate-buttons .btn {
    min-width: 140px;
}

.age-gate-buttons .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.age-gate-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.age-gate-legal {
    font-size: 0.75rem;
    color: var(--gray);
}

.age-gate-legal a {
    color: var(--gold);
    text-decoration: underline;
}

/* Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background-color: var(--navy);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--navy);
    padding: 100px var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: right var(--transition-base);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-base);
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 100ms; }
.nav-menu.active li:nth-child(2) { transition-delay: 150ms; }
.nav-menu.active li:nth-child(3) { transition-delay: 200ms; }
.nav-menu.active li:nth-child(4) { transition-delay: 250ms; }
.nav-menu.active li:nth-child(5) { transition-delay: 300ms; }

.nav-menu a {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

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

/* Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .hero-background {
        background-position: 20% center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(27, 42, 74, 0.5) 0%,
        rgba(27, 42, 74, 0.3) 40%,
        rgba(27, 42, 74, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl) 0;
    max-width: 700px;
}

.hero-content.text-right {
    text-align: left;
}

@media (min-width: 768px) {
    .hero-content.text-right {
        margin-left: 53%;
        max-width: 600px;
    }
}

@media (min-width: 1200px) {
    .hero-content.text-right {
        margin-left: 58%;
    }
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--cream);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--cream);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--cream);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--cream);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(12px); }
}

/* Intro Section
   ========================================================================== */
.intro-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
    background-color: var(--navy);
}

.intro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    display: flex;
    flex-direction: column;
}

.placeholder-stripes {
    flex: 1;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
}

.placeholder-stripes .stripe {
    flex: 1;
}

.placeholder-stripes .stripe.red {
    background-color: var(--red);
}

.placeholder-stripes .stripe.white {
    background-color: var(--white);
}

.placeholder-crest {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.intro-content {
    max-width: 540px;
}

.intro-content h2 {
    margin-bottom: var(--space-md);
}

.intro-content p {
    font-size: 1.125rem;
    color: var(--gray);
}

.intro-content .btn-text {
    margin-top: var(--space-md);
}

/* Products Section
   ========================================================================== */
.products-grid {
    display: grid;
    gap: var(--space-md);
}

.product-card {
    display: block;
    background-color: var(--navy-light);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.product-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.product-card-image {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background-color: var(--navy-dark);
    overflow: hidden;
}

.product-card-image.has-image {
    padding: 0;
}

.product-card-image.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.product-card:hover .product-card-image.has-image img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 120px;
    height: 160px;
    position: relative;
}

.product-placeholder.flower {
    display: flex;
    flex-direction: column;
}

.product-placeholder.flower .bag-top {
    flex: 1;
    background-color: var(--navy);
    border-radius: 4px 4px 0 0;
}

.product-placeholder.flower .bag-bottom {
    flex: 1;
    background: repeating-linear-gradient(
        90deg,
        var(--red) 0,
        var(--red) 20%,
        var(--white) 20%,
        var(--white) 40%
    );
    border-radius: 0 0 4px 4px;
}

.product-placeholder.preroll {
    width: 40px;
    height: 160px;
    display: flex;
    flex-direction: column;
}

.product-placeholder.preroll .tube-top {
    flex: 1;
    background-color: var(--red);
    border-radius: 4px 4px 0 0;
}

.product-placeholder.preroll .tube-bottom {
    flex: 1;
    background-color: var(--navy);
    border-radius: 0 0 4px 4px;
}

.product-placeholder.future {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    border: 3px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon span {
    font-size: 2rem;
    color: var(--gold);
}

.product-card-content {
    padding: var(--space-md);
}

.product-card-content h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.product-card-content p {
    color: var(--gray-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
}

.product-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
}

.product-link span {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.product-card:hover .product-link span {
    transform: translateX(4px);
}

.products-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Value Section
   ========================================================================== */
.value-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.value-content h2 {
    margin-bottom: var(--space-md);
}

.value-content p {
    font-size: 1.125rem;
    color: var(--gray);
}

.value-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.badge svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.badge span {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--navy);
}

.value-image {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.value-stripes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.value-stripes .stripe {
    flex: 1;
}

.value-stripes .stripe:nth-child(odd) {
    background-color: var(--red);
}

.value-stripes .stripe:nth-child(even) {
    background-color: var(--white);
}

/* Values Cards Section
   ========================================================================== */
.values-grid {
    display: grid;
    gap: var(--space-md);
}

.value-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    border-radius: 50%;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.value-card h3 {
    margin-bottom: var(--space-xs);
}

.value-card p {
    color: var(--gray);
    font-size: 0.9375rem;
}

/* Testimonials Section
   ========================================================================== */
.testimonials {
    background-color: var(--cream);
}

.testimonials-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 180px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    text-align: center;
}

.testimonial.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.testimonial blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--navy);
    margin-bottom: var(--space-md);
}

.testimonial blockquote::before {
    content: '"';
    display: block;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-light);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.dot.active {
    background-color: var(--navy);
}

/* Locator Section
   ========================================================================== */
.locator-content {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.locator-text h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.locator-text p {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.wa-map {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Signup Section
   ========================================================================== */
.signup-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.signup-content h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.signup-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 400px;
    margin: 0 auto;
}

.signup-form input {
    padding: 1rem;
    border: 2px solid var(--white);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.signup-form input::placeholder {
    color: var(--gray);
}

.signup-privacy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-top: var(--space-sm);
}

/* Footer
   ========================================================================== */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
    display: block;
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--red);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-nav h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-nav a {
    color: var(--gray-light);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

.footer-disclaimer {
    padding: var(--space-md) 0;
    border-top: 1px solid var(--navy);
    border-bottom: 1px solid var(--navy);
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.8;
}

.footer-bottom {
    padding-top: var(--space-md);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Responsive Breakpoints
   ========================================================================== */

/* Tablet */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        padding: 0;
        flex-direction: row;
        gap: var(--space-lg);
    }

    .nav-menu li {
        opacity: 1;
        transform: none;
    }

    .nav-menu a {
        font-size: 0.875rem;
        padding: 0;
    }

    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .value-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .locator-content {
        grid-template-columns: 1fr 1fr;
    }

    .signup-form {
        flex-direction: row;
    }

    .signup-form input {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .section {
        padding: var(--space-2xl) 0;
    }

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

    .hero-content {
        max-width: 800px;
    }
}

/* ==========================================================================
   Page Hero (Inner Pages)
   ========================================================================== */
.page-hero {
    background-color: var(--navy);
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero.has-bg {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(27, 42, 74, 0.6) 0%,
        rgba(27, 42, 74, 0.4) 50%,
        rgba(27, 42, 74, 0.8) 100%
    );
}

.page-hero.has-bg .container {
    position: relative;
    z-index: 1;
}

.page-hero-background.products {
    background-image: url('../images/hero-products.png');
}

.page-hero-background.about {
    background-image: url('../images/hero-about.png');
}

@media (max-width: 767px) {
    .page-hero-background.products {
        background-position: 28% center;
    }

    .page-hero-background.about {
        background-position: 62% center;
    }
}

.page-hero-background.wholesale {
    background-image: url('../images/hero-wholesale.png');
}

/* Products page - text aligned right */
.page-hero.text-right .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

@media (min-width: 768px) {
    .page-hero.text-right .container {
        padding-left: 35%;
    }
}

@media (min-width: 1200px) {
    .page-hero.text-right .container {
        padding-left: 400px;
    }
}

.page-hero-tall {
    padding: calc(80px + var(--space-xl)) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    opacity: 0.9;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-hero p {
    color: var(--gray-light);
    font-size: 1.125rem;
    max-width: 600px;
}

/* ==========================================================================
   Product Detail Pages
   ========================================================================== */
.product-section-header {
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.product-section-header h2 {
    margin-bottom: var(--space-sm);
}

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

.product-detail-grid {
    display: grid;
    gap: var(--space-lg);
}

.product-detail-grid.three-col {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .product-detail-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-detail-grid.three-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-detail-grid.centered {
    justify-content: center;
}

.product-detail-grid.centered .product-detail-card {
    max-width: 500px;
}

.product-section-centered {
    max-width: 500px;
    margin: 0 auto;
}

.product-section-centered .product-section-header {
    text-align: center;
}

.product-section-centered .product-detail-card {
    text-align: center;
}

.product-detail-card {
    display: grid;
    gap: var(--space-md);
    align-items: center;
    background-color: var(--cream);
    border-radius: 4px;
    overflow: hidden;
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background-color: var(--navy);
    min-height: 300px;
    overflow: hidden;
}

.product-detail-image.has-image {
    padding: 0;
}

.product-detail-image.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.product-placeholder-lg {
    width: 160px;
    height: 220px;
    position: relative;
}

.product-placeholder-lg.flower {
    display: flex;
    flex-direction: column;
}

.product-placeholder-lg.flower.small {
    width: 120px;
    height: 180px;
}

.product-placeholder-lg.flower .bag-top {
    flex: 1;
    background-color: var(--navy-light);
    border-radius: 8px 8px 0 0;
}

.product-placeholder-lg.flower .bag-bottom {
    flex: 1;
    background: repeating-linear-gradient(
        90deg,
        var(--red) 0,
        var(--red) 20%,
        var(--white) 20%,
        var(--white) 40%
    );
    border-radius: 0 0 8px 8px;
}

.product-placeholder-lg .bag-crest,
.product-placeholder-lg .tube-crest {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background-color: var(--navy);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
}

.product-placeholder-lg.preroll {
    width: 60px;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.product-placeholder-lg.preroll .tube-top {
    flex: 1;
    background-color: var(--red);
    border-radius: 8px 8px 0 0;
}

.product-placeholder-lg.preroll .tube-bottom {
    flex: 1;
    background-color: var(--navy-light);
    border-radius: 0 0 8px 8px;
}

.product-placeholder-lg.preroll-pack {
    width: 80px;
    height: 220px;
    display: flex;
    flex-direction: column;
}

.product-placeholder-lg.preroll-pack .tube-top {
    flex: 1;
    background-color: var(--red);
    border-radius: 8px 8px 0 0;
}

.product-placeholder-lg.preroll-pack .tube-bottom {
    flex: 1;
    background-color: var(--navy-light);
    border-radius: 0 0 8px 8px;
}

.product-detail-content {
    padding: var(--space-md);
}

.product-detail-content h3 {
    margin-bottom: var(--space-xs);
}

.product-weight {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.product-detail-content p {
    color: var(--gray);
    margin-bottom: var(--space-md);
}

/* ==========================================================================
   Strains Grid
   ========================================================================== */
.strains-grid {
    display: grid;
    gap: var(--space-md);
}

.strain-card {
    background-color: var(--white);
    padding: var(--space-md);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.strain-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
    margin-bottom: var(--space-sm);
}

.strain-type.indica {
    background-color: #7C3AED;
    color: var(--white);
}

.strain-type.sativa {
    background-color: #10B981;
    color: var(--white);
}

.strain-type.hybrid {
    background-color: #F59E0B;
    color: var(--white);
}

.strain-card h3 {
    margin-bottom: var(--space-xs);
}

.strain-card p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.strains-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: var(--space-lg);
}

/* ==========================================================================
   Quality Section
   ========================================================================== */
.quality-content {
    display: grid;
    gap: var(--space-xl);
}

.quality-text h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.quality-text p {
    color: var(--gray-light);
    font-size: 1.125rem;
}

.quality-badges {
    display: grid;
    gap: var(--space-md);
}

.quality-badge {
    text-align: center;
    padding: var(--space-md);
    background-color: var(--navy-light);
    border-radius: 4px;
}

.quality-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    border-radius: 50%;
}

.quality-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.quality-badge h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.quality-badge p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

/* ==========================================================================
   Coming Soon Content
   ========================================================================== */
.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-content h2 {
    margin-bottom: var(--space-sm);
}

.coming-soon-content p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.signup-form.inline {
    flex-direction: row;
    max-width: 500px;
    margin: 0 auto;
}

.signup-form.inline input {
    border: 2px solid var(--navy);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-intro {
    margin-bottom: var(--space-lg);
}

.story-intro .lead {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--navy);
}

.story-body p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.story-body strong {
    color: var(--navy);
}

/* Values Expanded */
.values-expanded {
    display: grid;
    gap: var(--space-md);
}

.value-expanded-card {
    display: grid;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.value-expanded-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    border-radius: 50%;
}

.value-expanded-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.value-expanded-content h3 {
    margin-bottom: var(--space-xs);
}

.value-expanded-content p {
    color: var(--gray);
}

/* Difference Section */
.difference-content {
    display: grid;
    gap: var(--space-lg);
}

.difference-text h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.difference-points {
    display: grid;
    gap: var(--space-md);
}

.difference-point h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.difference-point p {
    color: var(--gray-light);
}

.difference-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    color: var(--white);
    border-left: 4px solid var(--gold);
    padding-left: var(--space-md);
}

/* Promise Section */
.promise-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.promise-content h2 {
    margin-bottom: var(--space-md);
}

.promise-content > p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.promise-list {
    margin-bottom: var(--space-lg);
}

.promise-list li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--gray);
}

.promise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
}

.promise-image {
    position: relative;
    aspect-ratio: 1;
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.promise-stripes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    display: flex;
}

.promise-stripes .stripe {
    flex: 1;
}

.promise-stripes .stripe:nth-child(odd) {
    background-color: var(--red);
}

.promise-stripes .stripe:nth-child(even) {
    background-color: var(--white);
}

.promise-crest {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--navy);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.promise-crest span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

/* ==========================================================================
   Find Us Page
   ========================================================================== */
.locator-grid {
    display: grid;
    gap: var(--space-lg);
}

.locator-sidebar {
    order: 2;
}

.locator-search {
    margin-bottom: var(--space-md);
}

.locator-search label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.search-input-wrapper {
    display: flex;
    border: 2px solid var(--navy);
}

.search-input-wrapper input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.search-input-wrapper input:focus {
    outline: none;
}

.search-btn {
    padding: 0.75rem;
    background-color: var(--navy);
    border: none;
    cursor: pointer;
}

.search-btn svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.store-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.store-card {
    padding: var(--space-md);
    background-color: var(--cream);
    border-radius: 4px;
    border-left: 4px solid var(--red);
}

.store-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.store-address {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.store-phone {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.store-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.875rem;
}

.store-directions svg {
    width: 16px;
    height: 16px;
}

.locator-map-container {
    order: 1;
}

.map-placeholder {
    background-color: var(--navy-dark);
    border-radius: 4px;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.wa-map-large {
    width: 100%;
    max-width: 400px;
    margin-bottom: var(--space-md);
}

.map-note {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Retail CTA */
.retail-cta {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.retail-cta-content h2 {
    margin-bottom: var(--space-sm);
}

.retail-cta-content p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.product-display {
    display: flex;
    justify-content: center;
}

.product-display-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Wholesale Page
   ========================================================================== */
.benefits-grid {
    display: grid;
    gap: var(--space-md);
}

.benefit-card {
    padding: var(--space-lg);
    background-color: var(--cream);
    border-radius: 4px;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    border-radius: 50%;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.benefit-card h3 {
    margin-bottom: var(--space-xs);
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.9375rem;
}

/* Wholesale Products */
.wholesale-products {
    display: grid;
    gap: var(--space-lg);
}

.wholesale-product {
    display: grid;
    gap: var(--space-md);
    align-items: center;
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.wholesale-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background-color: var(--navy);
    overflow: hidden;
    min-height: 250px;
}

.wholesale-product-image.has-image {
    padding: 0;
}

.wholesale-product-image.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.wholesale-product-info {
    padding: var(--space-md);
}

.wholesale-product-info h3 {
    margin-bottom: var(--space-sm);
}

.wholesale-product-info ul {
    color: var(--gray);
}

.wholesale-product-info li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
}

.wholesale-product-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

.wholesale-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: var(--space-lg);
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: var(--space-xl);
}

.form-intro h2 {
    margin-bottom: var(--space-sm);
}

.form-intro > p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
}

.contact-info {
    padding: var(--space-md);
    background-color: var(--cream);
    border-radius: 4px;
}

.contact-info p {
    margin-bottom: var(--space-xs);
}

.contact-info strong {
    color: var(--navy);
}

/* Forms */
.inquiry-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    gap: var(--space-md);
}

.form-row.two-col {
    grid-template-columns: 1fr;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--cream-dark);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
    display: grid;
    gap: var(--space-xl);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-block h3 {
    margin-bottom: var(--space-xs);
}

.contact-block p {
    color: var(--gray);
    margin-bottom: var(--space-xs);
}

.contact-link {
    display: inline-block;
    color: var(--red);
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-link:hover {
    color: var(--red-dark);
}

.contact-alt {
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

.contact-alt a {
    color: var(--red);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-weight: 600;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    color: var(--red);
}

.contact-form-section h3 {
    margin-bottom: var(--space-md);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    padding: var(--space-md);
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.faq-item a {
    color: var(--red);
    text-decoration: underline;
}

/* ==========================================================================
   Legal Pages
   ========================================================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.legal-content li {
    color: var(--gray);
    margin-bottom: var(--space-xs);
    list-style: disc;
}

.legal-content a {
    color: var(--red);
    text-decoration: underline;
}

.legal-meta {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--cream-dark);
}

.legal-meta p {
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-target {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive - Tablet and Up
   ========================================================================== */
@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-card {
        grid-template-columns: 1fr;
    }

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

    .quality-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .quality-badges {
        grid-template-columns: 1fr;
    }

    .value-expanded-card {
        grid-template-columns: auto 1fr;
        align-items: start;
    }

    .difference-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .promise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .locator-grid {
        grid-template-columns: 350px 1fr;
    }

    .locator-sidebar {
        order: 1;
    }

    .locator-map-container {
        order: 2;
    }

    .retail-cta {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-row.two-col {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr 2fr;
    }

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

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

/* ==========================================================================
   Responsive - Desktop and Up
   ========================================================================== */
@media (min-width: 1024px) {
    .strains-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

/* ==========================================================================
   Merch Page
   ========================================================================== */
.merch-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
    overflow: hidden;
}

.merch-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.merch-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.merch-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.merch-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.merch-hero p {
    color: var(--gray-light);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.merch-signup .signup-form {
    max-width: 400px;
}

.merch-signup .signup-privacy {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

/* Merch Preview Grid */
.merch-preview-grid {
    display: grid;
    gap: var(--space-md);
}

.merch-preview-card {
    background-color: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
}

.merch-preview-image {
    padding: var(--space-lg);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.merch-placeholder {
    width: 120px;
    height: 120px;
}

.merch-placeholder svg {
    width: 100%;
    height: 100%;
}

.merch-preview-card h3 {
    padding: var(--space-sm) var(--space-md) 0;
    margin-bottom: var(--space-xs);
}

.merch-preview-card p {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--gray);
    font-size: 0.9375rem;
}

/* Merch Message */
.merch-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.merch-message h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.merch-message p {
    color: var(--gray-light);
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .merch-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .merch-signup .signup-form {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .merch-preview-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    :root {
        --container-max: 1320px;
    }
}
