:root {
  --dark: #1c1b25;
  --light: #f5f3ee;
  --panel: #ebe7df;
  --green: #8fae3b;
  --purple: #7f86c1;
  --ink: #2a2a2a;
  --rope: #8a7a63;
  
}

:root {
    --ewg-green: #9dbb5f;
    --ewg-purple: #8a8fc1;
    --ewg-dark: #2f3e4e;
    --ewg-light: #f6f7f4;
}

/* ===== GLOBAL ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--ewg-light);
    color: var(--ewg-text);
    line-height: 1.6;
}


/* =========================
   HEADER (DARK, MATCH FOOTER)
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--ewg-dark);
    border-bottom: 4px solid var(--ewg-green);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    max-height: 48px;
    filter: brightness(1.1);
}

.header-nav {
    display: flex;
    gap: 28px;
}

.header-nav a {
    color: var(--ewg-light);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.header-nav a:hover {
    color: var(--ewg-green);
}

.account-link {
    color: var(--ewg-green);
    font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--ewg-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle:hover {
  color: var(--ewg-green);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ewg-dark);
  border: 1px solid rgba(255,255,255,0.15);
  min-width: 200px;
  display: none;
  flex-direction: column;
  z-index: 2000;
}

.dropdown-menu a {
  padding: 12px 16px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
}

/* Show on hover (desktop) */
.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--ewg-light);
  cursor: pointer;
}

/* MOBILE BREAKPOINT */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ewg-dark);
    flex-direction: column;
    gap: 0;
    display: none;
    padding: 12px 0;
  }

  .header-nav a,
  .dropdown-toggle {
    padding: 14px 20px;
    width: 100%;
    text-align: left;
  }

  .header-nav.open {
    display: flex;
  }

  /* Mobile dropdown always visible when opened */
  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown-menu {
    position: static;
    border: none;
  }
}

/* ================= HERO ================= */
.hero {
  height: 420px;
  background: url("/static/pages/images/saddlebag.jpeg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3.4rem;
  text-shadow: 0 4px 14px rgba(0,0,0,.45);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.hero p {
  color: white;
  opacity: .95;
}


/* ================= INTRO ================= */
.intro {
  background: var(--panel);
  text-align: center;
  padding: 60px 20px;
}

/* ================= DIVIDER ================= */

.steps-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 28px;
  color: var(--dark);
  text-transform: uppercase;
}

/* Optional subtle divider feel */
.steps-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--green);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ================= FLAGS ================= */
.steps-section {
  padding: 50px 20px;
}

.prayer-line {
  height: 4px;
  max-width: 1200px;
  margin: 0 auto 60px;
  background: linear-gradient(to right, #6f604c, var(--rope), #6f604c);
  border-radius: 2px;
}

.flags-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* ===== Flag base ===== */
.flag {
  position: relative;
  padding: 72px 0;   /* ↑ top & bottom */
  min-height: 520px;         /* forces tall flag */
  text-align: center;
  box-shadow: 0 14px 24px rgba(0,0,0,.18);
  overflow: hidden;
  display: grid;
  grid-template-rows:
    auto    /* number */
    auto    /* underline */
    minmax(3.8rem, auto) /* title (locks alignment) */
    1fr;    /* paragraph */
  align-content: start;
  justify-items: center;
}

/* Fabric texture + script */
.flag::before {
  content: "";
  position: absolute;
  inset: -1%;
  background: url("/static/pages/textures/redwoods.png") no-repeat;
  opacity: 0.28;                 /* main readability driver */
  filter: blur(0.6px) contrast(1.05) brightness(1.1);
  z-index: 1;
  background-size: cover;
  background-position: center;
}

/* Edge wear */
.flag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 60%,
    rgba(0,0,0,.25)
  );
}

.flag > * {
  position: relative;
  z-index: 2;
}

.flag-content {
  position: relative;
  z-index: 3;
}

/* Dye overlays */
.flag-green {
  background: rgba(110, 132, 46, 0.92); /* darker, mossy */
  color: #f4f1ea;
}

.flag-purple {
  background: rgba(92, 96, 154, 0.96); /* indigo-dyed */
  color: #f4f1ea;
}

.flag-light {
  background: rgba(238, 231, 217, 0.98); /* ivory / light tan */
  color: #2a2a2a;
  stroke: #2a2a2a;
}

/* Number + underline */
.flag-number {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 6px;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.35),
    0 0 6px rgba(0,0,0,0.15);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.flag-underline {
  width: 100%;
  max-width: 240px;   /* anchors it to text column */
  margin: 16px auto 28px;
  height: 3px;
  background: currentColor;
  opacity: 0.8;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


/* Text */
.flag h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.35),
    0 0 6px rgba(0,0,0,0.15);
}

.flag p {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.65;
  max-width: 280px;
  text-shadow:
    0 1px 1px rgba(0,0,0,0.45);
  opacity: 0.96;
}

/* Responsive */
@media (max-width: 900px) {
  .flags-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .flag {
    padding: 48px 24px 72px;
  }

  .flag-inner {
    max-width: 320px;
  }
}

/* =========================
   Buttons
========================= */
.intro-actions {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.action-btn {
    background-color: var(--ewg-purple);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--ewg-purple);
    transition: all 0.2s ease;
}

.action-btn.outline {
    background: transparent;
    color: var(--ewg-purple);
}

.action-btn:hover {
    background-color: var(--ewg-green);
    border-color: var(--ewg-green);
    color: var(--ewg-dark);
}

.steps-cta {
  grid-column: 1 / -1;   /* span all columns */
  display: flex;
  justify-content: center;
  margin-top: 28px;
}


/* ================= GALLERY INTRO ================= */
.gallery-intro {
    background: var(--panel);
    padding: 70px 20px;
    text-align: center;
}

.gallery-intro h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.gallery-intro p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    opacity: 0.9;
}

/* ================= GRID ================= */
.gallery-grid {
    max-width: 1200px;
    margin: 70px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Hover Banner */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.55);
    color: var(--ewg-light);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ================= LIGHTBOX ================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    background: var(--ewg-light);
    max-width: 1000px;
    width: 90%;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.lightbox-image {
    height: 100%;
    width: 100%;
}

.lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* KEY LINE */
    display: block;
}

.lightbox-info {
    padding: 40px 36px;
    overflow-y: auto;
}

.lightbox-info h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    font-weight: 800;
}

.lightbox-info p {
    margin-bottom: 14px;
    font-size: 1.05rem;
}

.lightbox-price {
    color: var(--ewg-green);
    font-weight: 800;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .lightbox {
        align-items: center;
        justify-content: center;
        padding: 12px;
    }

    .lightbox-content {
        grid-template-columns: 1fr;
        width: 100%;
        max-height: 90vh;        /* constrain to viewport */
        height: auto;
    }

    /* Limit image height on mobile */
    .lightbox-image {
        height: 35vh;            /* key: stops image hogging space */
        min-height: 220px;
    }

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

    /* Scrollable info panel */
    .lightbox-info {
        max-height: calc(90vh - 35vh);
        overflow-y: auto;
        padding: 24px 20px 28px;
        -webkit-overflow-scrolling: touch;
    }
}

/* ================= CONTACT PAGE ================= */
.contact-intro {
    background: var(--panel);
    padding: 70px 20px;
    text-align: center;
}

.contact-intro h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.contact-intro p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Layout */
.contact-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* Info */
.contact-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.contact-info a {
    color: var(--ewg-purple);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--ewg-green);
}

/* Social */
.contact-social {
    margin-top: 36px;
}

.contact-social h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ewg-green);
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
    background: var(--ewg-purple);
    transform: translateY(-2px);
}

.social-icons img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        min-height: 360px;
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--ewg-dark);
    color: var(--ewg-light);
    border-top: 4px solid var(--ewg-green);
    padding: 40px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;                /* more breathing room */
    align-items: start;       /* critical */
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;      /* centers logo + text */
    text-align: center;
}

.footer-brand img {
    max-width: 280px;         /* bigger logo */
    width: 100%;
    margin-bottom: 16px; 
    filter: brightness(1.15) contrast(1.15);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.footer-brand p {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.6;
    opacity:0.9;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--ewg-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--ewg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--ewg-green);
}

.footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--ewg-green);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
    background-color: var(--ewg-purple);
    transform: translateY(-2px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1); /* makes SVG white */
}


/* Responsive Footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 15px;
    }
}

@media (max-width: 900px) {

    .footer-links {
        align-items: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .hero-overlay h1 {
        font-size: 1.6rem;
        padding: 10px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 15px 20px;
    }
    header.shrink {
        padding: 8px 20px;
    }

    .header-left img {
        height: 50px;
    }
    header.shrink .header-left img {
        height: 35px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 6px 10px;
        margin-right: 8px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        border-width: 3px;
        padding: 8px 15px;
    }

    .hero p {
        font-size: 1.3rem;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin-left: 0;
        margin-right: 15px;
    }
}


/* ===== Submission Form ===== */

.submission-intro {
  background: var(--panel);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.submission-intro h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.submission-intro p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.9;
}

.submission-form {
  max-width: 800px;
  margin: 0 auto 80px;
  background: var(--ewg-light);
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.form-section {
  margin-bottom: 36px;
}

.form-section h2, .form-section h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ewg-dark);
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 6px;
  transition: all 0.2s ease;
}

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

.form-error {
  color: #c0392b;
  font-size: 0.875rem;
  margin-top: 4px;
}

.product-form {
  background: var(--panel);
  padding: 20px;
  margin-bottom: 18px;
  border-radius: 8px;
  position: relative;
}

.product-form .remove-item {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ewg-purple);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.product-form .remove-item:hover {
  background: var(--ewg-green);
}

button.action-btn {
  display: inline-block;
  margin-top: 12px;
  background-color: var(--ewg-purple);
  color: white;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--ewg-purple);
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

button.action-btn:hover {
  background-color: var(--ewg-green);
  border-color: var(--ewg-green);
  color: var(--ewg-dark);
}

button.action-btn.outline {
  background: transparent;
  color: var(--ewg-purple);
}

button.action-btn.outline:hover {
  background-color: var(--ewg-green);
  border-color: var(--ewg-green);
  color: var(--ewg-dark);
}

/* Error banner */
.error-banner {
  background: #c0392b;
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-weight: 600;
  text-align: center;
}

.form-error-banner {
  background: #c0392b;
  color: white;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: center;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .submission-form {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .submission-form {
    padding: 24px 16px;
  }

  .form-section h2 {
    font-size: 1.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 8px 12px;
  }

  button.action-btn {
    width: 100%;
    padding: 12px 0;
  }

  .product-form .remove-item {
    top: auto;
    bottom: 12px;
    right: 12px;
  }
}

/* ===== Submission Thank You ===== */

.submission-success {
    position: relative;
    text-align: center;
    padding: 120px 20px; /* top/bottom padding for content spacing */
    background: url('/static/consignments/images/rainbow.jpeg') no-repeat center center;
    background-size: cover; /* fills the section, zooms in/out with screen */
    width: 100%;
    min-height: 100vh; /* full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.submission-box {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    border: 2px solid white;
    padding: 40px 30px; /* reduced padding */
    border-radius: 12px;
    max-width: 500px; /* smaller width */
    color: white;
}

.submission-box h1 {
    font-size: 2.5rem; /* slightly smaller heading */
    font-weight: 800;
    margin-bottom: 24px;
}

.submission-box .confirmation-message {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

/* =========================
   HEADER LAYOUT LOCK
========================= */

/* DESKTOP ONLY */
@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }

  .header-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
}

/* MOBILE ONLY */
@media (max-width: 900px) {
  .header-container {
    flex-wrap: wrap;
  }

  .header-nav {
    width: 100%;
    order: 3;
  }

  .header-logo {
    order: 1;
  }

  .menu-toggle {
    order: 2;
  }
}

/* ================= SEASONAL GUIDELINES ================= */

.seasonal-intro {
    position: relative;
    padding: 160px 20px;
    text-align: center;
    min-height: 520px;
    background-image: url("/static/pages/images/skis.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* THIS is the zoom magic */

    color: white;
}


/* Text */
.seasonal-intro-box h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

.seasonal-subhead {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

.seasonal-intro h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.seasonal-subhead {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Explanation text */
.seasonal-explainer {
    max-width: 820px;
    margin: 60px auto;
    padding: 0 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}

/* Season cards */
.seasonal-dates {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.season-card {
    background: var(--ewg-light);
    padding: 40px 36px;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
    text-align: center;
}

.season-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.season-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.season-card li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.season-card img {
    width: 100%;
    max-width: 360px;
    margin-top: 16px;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

/* Examples */
.seasonal-examples {
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

.seasonal-examples h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
}

.examples-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.examples-grid img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
    .seasonal-dates,
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= IN-STORE CONSIGNMENT ================= */

/* Intro */
.consign-introm {
    position: relative;
    padding: 160px 20px;
    text-align: center;
    min-height: 520px;
    background: url("/static/pages/images/mail.png") center 65% / cover no-repeat;
}


.consign-introm h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

.consign-introm p {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

/* Intro */
.consign-intro {
    position: relative;
    padding: 160px 20px;
    min-height: 520px;
    text-align: center;
    background: url("/static/pages/images/store.jpeg") center / cover no-repeat;
}


.consign-intro h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

.consign-intro p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
}

/* Steps */
.consign-steps {
    padding: 1px 20px;
}

.steps-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--ewg-light);
    padding: 40px 36px;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ewg-green);
    margin-bottom: 14px;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.65;
}

.step-card a {
    color: var(--ewg-purple);
    font-weight: 600;
    text-decoration: none;
}

.step-card a:hover {
    color: var(--ewg-green);
}


/* Steps */
/* 1 — purple fill */
.step-card:nth-child(1) {
    background: var(--panel);
}

/* 2 — green outline */
.step-card:nth-child(2) {
    background: transparent;
    border: 3px solid var(--ewg-green);
}

/* 3 — grey fill */
.step-card:nth-child(3) {
    background: var(--panel);
}

/* 4 — green outline */
.step-card:nth-child(4) {
    background: transparent;
    border: 3px solid var(--ewg-green);
}

/* 5 — grey fill */
.step-card:nth-child(5) {
    background: var(--panel);
}

/* 6 — purple outline */
.step-card:nth-child(6) {
    background: transparent;
    border: 3px solid var(--ewg-green);
}


/* FAQ */
.consign-faq {
    max-width: 820px;
    margin: 100px auto;
    padding: 0 20px;
}

.consign-faq h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.consign-faq details {
    background: var(--panel);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 16px;
}

.consign-faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
}

.consign-faq p {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Consign Intros */
.consign-cta {
    text-align: center;
    padding: 40px 20px;
}

.consign-cta p {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/* Ensure CTA button spacing */
.consign-cta .action-btn {
    padding: 14px 30px;
}

.consign-faq .consignment-table {
  width: 100%;
  max-width: 360px;
  border-collapse: collapse;
  margin: 14px 0 8px;
  font-size: 0.95rem;
}

.consign-faq .consignment-table th {
  text-align: left;
  font-weight: 700;
  padding: 6px 8px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.2);
}

.consign-faq .consignment-table td {
  padding: 6px 8px;
  vertical-align: top;
}

.consign-faq .consignment-table tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.consign-faq .consignment-table th:last-child,
.consign-faq .consignment-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.consign-faq .consignment-note {
  margin-top: 10px;
  font-size: 0.9rem;
  opacity: 0.85;
}


@media (max-width: 900px) {
  .dropdown-toggle {
    pointer-events: none;
  }

  .dropdown-toggle .chevron {
    display: none;
  }
}

@media (max-width: 900px) {
  .dropdown-menu {
    display: flex !important;
    position: static;
    border: none;
    background: transparent;
    padding-left: 20px;
  }

  .dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.04em;
  }
}
