/** Shopify CDN: Minification failed

Line 21:14 Expected identifier but found whitespace
Line 21:16 Unexpected "{"
Line 21:26 Expected ":"
Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
Line 22:28 Expected ":"
Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
Line 23:27 Expected ":"
Line 24:9 Expected identifier but found whitespace
... and 27 more hidden warnings

**/
@charset "UTF-8";
/* COLORADO FRESH EXPRESS THEME STYLES */


  :root {
    --primary: {{ settings.colors_accent }};
    --secondary: {{ settings.colors_secondary }};
    --tertiary: {{ settings.colors_button }};
    --bg: {{ settings.colors_background }};
    --text: {{ settings.colors_text }};
    --border-one: {{ settings.colors_border }};

    /* Hero var */
    --accent: var(--secondary);
    --accent-dark: {{ settings.colors_accent | color_darken: 20 }};
    
    /* Cards / profile */
    --bg-alt: {{ settings.colors_background_2 }};
    --muted: {{ settings.colors_text | color_mix: settings.colors_background, 70 }};
    --accent-soft: {{ settings.colors_secondary | color_modify: 'alpha', 0.12 }};
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --border-soft: rgba(0, 0, 0, 0.06);

    --font-main: {{ settings.font_main.family }}, {{ settings.font_main.fallback_families }};
  }

a {
  color: inherit;
}

main {
  scroll-behavior: smooth;
}
/* HAMBURGER ICON override */
summary.header__icon--menu .header-drawer-icon--open {
  width: 40px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

summary.header__icon--menu .header-drawer-icon--open svg {
  width: 40px !important;
  height: 28px !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
  display: block !important;
  flex: none !important;
}

summary.header__icon--menu {
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}
/* ========= HERO SECTION ========= */

.hero {
  position: relative;
  min-height: 70vh;
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background image is controlled by section settings in Shopify */
  background-color: #000;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
}

/* === GLASS PANEL === */
.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 850px;
  width: 100%;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  background: rgba(10, 10, 10, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Eyebrow chip */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.9rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-eyebrow-dot {
  display:inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
}

/* === TITLES (HERO) === */
.hero-title {
  margin: 0 0 1.5rem;
  line-height: 1.2;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

/* keep hero text from doing weird mid-word breaks */
.hero-title,
.hero-title * {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Main “Colorado Fresh Exchange” */
.hero-location-main {
  white-space: nowrap;         /* never break the word */
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0.4rem 0 0.7rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.8);
}

/* Small phones: shrink more so it always fits in width */
@media (max-width: 480px) {
  .hero-location-main {
    font-size: 10vw;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 360px) {
  .hero-location-main {
    font-size: 11vw;
    letter-spacing: 0.04em;
  }
}

.hero-kicker {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.9;
}

.hero-market {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.92;
}

/* === SUBLINE === */
.hero-subline {
  margin-top: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* === BUTTONS === */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

/* ================================.  NEW */

/* New, namespaced buttons for farmers market */
.fm-btn {
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: 0.15s ease;
}

.fm-btn--primary {
  background: var(--primary);
  color: #fff;
}

.fm-btn--secondary {
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
}

.fm-btn--primary:hover,
.fm-btn--secondary:hover {
  opacity: 0.9;
}

/* ================================.  end  */


/* Generic section wrapper (for sections that use it) */
main .section {
  padding: 2.75rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

main .section-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

main .section-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-top: -0.6rem;
  margin-bottom: 1.5rem;
}

/* Search + filters */
.search-bar {
  margin-bottom: 1rem;
  max-width: 400px;
}

.search-bar input {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #cccccc;
  font-size: 0.95rem;
}

.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.chip {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  border: 1px solid #e5e5e5;
  font-size: 0.85rem;
  color: #fff;
  cursor: pointer;
}

.chip.active {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
}

/* =========== 
   STYLISH STYLES FOR PAGE
   ============ */
.border-one {
  border: 1px solid rgba(228, 146, 58, 0.55);
  border-radius: 10px;
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(228, 146, 58, 0.18);
}

/* Vendor cards */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
/* ============= 
FEATURED VENDOR CARD START. */

/*  NEW SO THAT CARDS STAY THE SAME REGARDLESS OF TEXT LENGTH */
/* Featured vendors grid */
.vendor-grid.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  grid-auto-rows: 1fr;
}

/* Each card is a flex column so content can be spaced nicely */
.vendor-grid.featured-grid .vendor-card {
  background: var(--bg-alt, #fff);
  border-radius: 18px;
  box-shadow: var(--shadow-soft, 0 8px 20px rgba(0,0,0,0.06));
  border: 1px solid var(--border-soft, #eee);
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem 1rem;
  height: 100%;
}

/* Top badge */
.vendor-grid.featured-grid .featured-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

/* Image placeholder area — fixed height so all cards align */
.vendor-grid.featured-grid .vendor-image {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  background: #f1f1f1;
  margin-bottom: 0.5rem;
}

/* Make vendor images fill their container and keep aspect ratio */
.vendor-image img,
.vendor-grid.featured-grid .vendor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Name / tags / meta basic styling */
.vendor-grid.featured-grid .vendor-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--primary, #333);
}

.vendor-grid.featured-grid .vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
}

.vendor-grid.featured-grid .vendor-tag {
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
  color: var(--muted, #777);
}

/* DESCRIPTION: clamp to a few lines with ellipsis */
.vendor-grid.featured-grid .description {
  font-size: 0.88rem;
  color: var(--muted, #777);
  line-height: 1.5;
  margin: 0 0 0.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

/* Push meta + link to bottom so cards align nicely */
.vendor-grid.featured-grid .vendor-meta {
  font-size: 0.8rem;
  color: var(--muted, #777);
  margin-top: auto;
  margin-bottom: 0.35rem;
}
.vendor-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:999px;         /* pill */
  background: var(--secondary);
  color:#fff;                  /* always readable */
  font-weight:600;
  letter-spacing:.03em;
  text-decoration:none;
  margin-top:auto;
}
.vendor-link:hover{
  background: var(--primary);
  transform: translateY(-1px);
}

/* Generic vendor-card base */
.vendor-card {
  position: relative;
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.vendor-image {
  width: 100%;
  height: 150px;
  background: #ddd;
  border-radius: 0.75rem;

}

.vendor-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.vendor-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--secondary);
  color:#ffffff;
}

.vendor-meta {
  font-size: 0.8rem;
  color: #777;
}

.vendor-link {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

.vendor-link:hover {
  text-decoration: underline;
}

/* Featured Vendors */
.vendor-card .featured-title {
  background: var(--primary); 
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  padding: 0.4rem 0;
  width: calc(100% + 2rem);
  margin: -1rem 0 1rem -1rem;
  border-radius: 1rem 1rem 0 0;
  display: block;
}

.featured-vendors {
  background: var(--bg);
}

.featured-grid .vendor-card {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.featured-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  background: var(--primary);
  color: white;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
/* ========= 
Featured vendor cards end.
 */
/* Creatives (art & apparel) – image grid style */
.creatives {
  background: var(--bg);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.creatives .section-title,
.creatives .section-subtitle {
  color: #111827;
  text-align: center;
}

.creatives .section-subtitle {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.creative-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.creative-tile {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #111827;
  cursor: pointer;
  aspect-ratio: 4 / 5;
}

/* ================================
   UPCOMING EVENTS SECTION
*/

.fm-events-slider .events-inner {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.fm-events-slider .events-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 2rem 0 0;
  background: transparent;
}

.fm-events-slider .events-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem;
}

.fm-events-slider .events-track {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.4s ease;
  padding: 0 0.5rem;
}

.fm-events-slider .event-card {
  overflow: hidden;
}

.fm-events-slider .event-image {
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  height: auto;
}

.fm-events-slider .event-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
}

.fm-events-slider .events-track .event-card {
  flex: 0 0 calc(100% - 2rem);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .fm-events-slider .events-track .event-card {
    flex: 0 0 calc((100% - (2rem * 2)) / 3);
  }
}

.fm-events-slider .vendor-link {
  font-weight: 500;
  text-decoration: none;
}

.fm-events-slider .vendor-link:hover {
  text-decoration: underline;
}

.fm-events-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 3;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.fm-events-slider .slider-btn:hover {
  filter: brightness(0.95);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.fm-events-slider .slider-btn:active {
  filter: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.14);
}

.fm-events-slider .slider-btn.prev {
  left: -1rem;
}

.fm-events-slider .slider-btn.next {
  right: -1rem;
}

@media (max-width: 600px) {
  .fm-events-slider .slider-btn.prev {
    left: 0.25rem;
  }

  .fm-events-slider .slider-btn.next {
    right: 0.25rem;
  }

  .fm-events-slider .event-card h3,
  .fm-events-slider .event-card .event-meta,
  .fm-events-slider .event-card p,
  .fm-events-slider .event-card .vendor-link {
    position: relative;
    z-index: 2;
    color: #fff !important;
  }
}


/* 
   UPCOMING EVENTS SECTION END
   ================================ */



/* Example image placeholders */
.creative-tile.image-1 {
  background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=800&q=80')
             center/cover no-repeat;
}
.creative-tile.image-2 {
  background: url('https://images.unsplash.com/photo-1528372444006-1bfc81acab02?auto=format&fit=crop&w=800&q=80')
             center/cover no-repeat;
}
.creative-tile.image-3 {
  background: url('https://images.unsplash.com/photo-1513364776144-60967b0f800f?auto=format&fit=crop&w=800&q=80')
             center/cover no-repeat;
}
.creative-tile.image-4 {
  background: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=800&q=80')
             center/cover no-repeat;
}
.creative-tile.image-5 {
  background: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=800&q=80')
             center/cover no-repeat;
}
.creative-tile.image-6 {
  background: url('https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=800&q=80')
             center/cover no-repeat;
}

.creative-tile::after {
  content: "";
  position: absolute;
  inset: 40% 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.creative-info {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.7rem;
  z-index: 1;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.creative-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.creative-tagline {
  font-size: 0.8rem;
  opacity: 0.85;
}

.creative-chip {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.8);
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.creative-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* ====================================== 
Locations button section */

.locations-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, 180px) !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 15px !important;
}

.location-card {
  display: block !important;
  width: 180px !important;
  margin: 0 !important;
  padding: 18px !important;
  box-sizing: border-box !important;
  text-decoration: none;
  background: var(--primary);
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--bg-alt);
}

.location-card h3 {
  margin: 0 0 6px !important;
  font-size: 0.9rem;
  line-height: 1.2;
}

.location-card p {
  margin: 0 0 4px !important;
  font-size: 0.72rem;
  line-height: 1.25;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}


.location-image {
  height: 112px;
  background: #ddd;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Events */
.events-section {
  background: var(--bg);
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-image {
  height: auto;
  background: #ccc;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}

.event-meta {
  font-size: 0.85rem;
  color: #777;
  margin-top: -0.25rem;
}
@media (max-width: 600px) {

  .slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .slider-btn {
    position: static;
    transform: none;
  }

}
/* ============================
Visit section 
*/
.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.visit-map {
  height: 260px;
  background: #ddd;
  border-radius: 1rem;
}

.visit-details p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.visit-list {
  list-style: none;
  padding: 0;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.visit-list li::before {
  content: "• ";
  color: var(--primary);
}

/* FOOTER 
footer {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #a8a8a8;
  background: #1a1a1a;
  border-top: 1px solid #e5e5e5;
}
*/
/* PROFILE PAGE-SPECIFIC STYLING */
.profile-hero {
  padding: 2.6rem 0 2.2rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.profile-card {
  background: var(--bg-alt);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  padding: 1.4rem;
}

.profile-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd7a3, #f7947f);
  overflow: hidden;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.profile-header-text h1 {
  margin: 0;
  font-size: 1.3rem;
  text-transform: capitalize;
}

.profile-header-text p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
}

.profile-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
}

.profile-badge.accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.profile-about {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.profile-meta-list {
  margin-top: 0.4rem;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
  color: var(--muted);
}

.profile-meta-list li + li {
  margin-top: 0.25rem;
}

.profile-showcase-card {
  background: var(--bg-alt);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.1rem 1.3rem;
}

.profile-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.9rem;
  gap: 1rem;
}

.profile-showcase-header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.profile-showcase-header span {
  font-size: 0.8rem;
  color: var(--muted);
}

.profile-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.profile-product-card {
  background: #faf7f3;
  border-radius: 16px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.profile-product-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4f1ff, #a3c4ff);
  position: relative;
}

.profile-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-product-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.profile-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Contact section (if you add it later) */
.profile-contact-section {
  padding: 2rem 0 2.6rem;
}

.profile-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.contact-card,
.more-from-card {
  background: var(--bg-alt);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  padding: 1.2rem 1.1rem;
  font-size: 0.9rem;
}

.contact-card h2,
.more-from-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
}

.contact-card label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 0.45rem 0.7rem;
    font-family: var(--font-body-family, inherit);
  font-size: 0.86rem;
  outline: none;
  background: #faf7f3;
  margin-bottom: 0.7rem;
  resize: vertical;
}

.more-from-list {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.more-from-list li + li {
  margin-top: 0.60rem;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 900px) {
  .visit-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-products-grid {
    grid-template-columns: 1fr;
  }
  .profile-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .inner {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 4.5rem 0;
  }

  .section {
    padding: 2.25rem 1.25rem;
  }
}

/* FULL-WIDTH BACKGROUND */
.locations-section {
  width: 100%;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
}

/* CONTENT WRAPPER */
.locations-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
    font-family: var(--font-body-family, inherit);
}

.locations-title {
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 700;
  color: var(--text-dark);
}

/* GRID */
.locations-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding:20px;
}

/* CLICKABLE CARDS (overrides generic location-card above) */
.locations-section .location-card {
  display: block;
  text-decoration: none;
  background: var(--primary);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--bg-alt);
}

.locations-section .location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.location-city {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-light);
}

.location-day,
.location-hours {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ---------- PRETTY MOBILE DROPDOWN ---------- */

/* Hidden by default; we toggle in media queries */
.locations-dropdown-wrap {
  display: none;
}

.locations-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text-dark);
}

/* Desktop: show grid, hide dropdown */
@media (min-width: 769px) {
  .locations-grid {
    display: grid;
  }

  .locations-dropdown-wrap {
    display: none;
  }
}

/* Mobile: show pretty dropdown, hide grid */
@media (max-width: 768px) {
  .locations-grid {
    display: none;
  }

  .locations-dropdown-wrap {
    display: block;
    max-width: 500px;
    margin: 0 auto 24px;
    position: relative;
    text-align: left;
  }

  .locations-dropdown {
    width: 100%;
    padding: 0.9rem 1.2rem;
    padding-right: 3rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: linear-gradient(135deg, #ffffff, #faf8f2);
    box-shadow:
      0 4px 10px rgba(0, 0, 0, 0.08),
      inset 0 0 8px rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: 
      border-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.15s ease;
  }

  .locations-dropdown:focus {
    border-color: var(--primary);
    box-shadow:
      0 6px 16px rgba(0, 0, 0, 0.12),
      inset 0 0 8px rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
  }

  .locations-dropdown:hover {
    box-shadow:
      0 6px 18px rgba(0, 0, 0, 0.10),
      inset 0 0 6px rgba(255, 255, 255, 0.7);
  }

  /* Chevron */
  .locations-dropdown-wrap::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 70%;
    transform: translateY(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid var(--primary);
    pointer-events: none;
    opacity: 0.85;
  }
}

/* Spotlight Vendor – one long horizontal card */
.spotlight-vendor .vendor-card--wide {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;   /* keeps width consistent */
  margin: 2rem auto 0;
  align-items: stretch;
  box-sizing: border-box;
}

/* Prevent inner elements from resizing the card */
.spotlight-vendor .vendor-card--wide > * {
  flex: 1 1 0;
  min-width: 0;
}

.vendor-card-media {
  flex: 0 0 35%;
}

.vendor-image--wide {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
}

.vendor-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vendor-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.vendor-description-long {
  max-width: 50rem;
}

.vendor-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vendor-link-secondary {
  opacity: 0.85;
}

/* Stack vertically on smaller screens */
@media (max-width: 768px) {
  .spotlight-vendor .vendor-card--wide {
    flex-direction: column;
  }

  .vendor-card-media {
    flex: 0 0 auto;
  }

  .vendor-image--wide {
    min-height: 180px;
  }
}

/*  Featured vendor button */  
.featured-bottom-button {
  margin-top: 2rem;
  text-align: center;
}

.featured-bottom-button .btn {
  padding: 0.75rem 1.25rem;
}
	  
/* SPOTLIGHT CARD OVERRIDE */
.vendor-card {
  background: var(--primary);
  padding: 2rem;
  border-radius: 1rem;
  color:#ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.06),
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 1px 1.5px rgba(0, 0, 0, 0.03);  
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.vendor-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.07),
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.03);
}

@media (max-width: 600px) {
  .vendor-card {
    padding: 1.25rem;
  }
}
	  
/* NEWSLETTER SIGN UP */	  
.newsletter-section {
  width: 100%;
  padding: 3.5rem 1.5rem;
  background: var(--primary);
  display: flex;
  justify-content: center;
}

.newsletter-inner {
  width: 100%;
  max-width: 1000px;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.newsletter-title {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}

.newsletter-subtitle {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

.newsletter-form {
  width: 100%;
}

.newsletter-label {
  display: block;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  color: #555;
}

.newsletter-input-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #d7d7d7;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input::placeholder {
  color: #a0a0a0;
}

.newsletter-input:focus {
  border-color: #476060;
  box-shadow: 0 0 0 2px rgba(71, 96, 96, 0.12);
}

.newsletter-button {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  white-space: nowrap;
  background: #476060;
  color: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.newsletter-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  background: #3d5252;
}

.newsletter-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.newsletter-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #888;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .newsletter-inner {
    padding: 1.5rem 1.25rem;
  }

  .newsletter-input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-button {
    width: 100%;
    justify-content: center;
  }
}

/* NEW: What's Fresh grid */
.whats-fresh-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .whats-fresh-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.whats-fresh-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.1rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  font-size: 0.9rem;
}

.whats-fresh-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.whats-fresh-list {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
  font-size: 0.86rem;
}

/* Seasonal guides */
.seasonal-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .seasonal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.season-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-size: 0.86rem;
  /* border-radius comes from section settings (scoped <style>) */
}

.season-card-header {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.05);
  /* header bg/text colors come from section settings (scoped <style>) */
}

.season-card-body {
  padding: 20px;
}

.season-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  /* title color comes from section settings (scoped <style>) */
}
/* NEW: Recipe teaser */
.recipe-teaser {
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

/* NEW: Market map */
.map-section {
  text-align: center;
}

.map-wrapper {
  margin-top: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 1rem;
}

.map-placeholder {
  width: 100%;
  min-height: 220px;
  border-radius: 0.75rem;
  background: repeating-linear-gradient(
    45deg,
    rgba(171, 99, 23, 0.08),
    rgba(171, 99, 23, 0.08) 10px,
    rgba(255, 255, 255, 0.4) 10px,
    rgba(255, 255, 255, 0.4) 20px
  );
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--primary);
  font-size: 0.9rem;
}

/* NEW: Social bar */
.social-bar {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.social-links {
  margin-top: 0.4rem;
  display:flex;
  justify-content:center;
  gap:0.75rem;
  flex-wrap:wrap;
}

.social-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
/* Vendor Directory – shared styles */

/* Container */
.vendor-directory {
  box-sizing: border-box;
}

.vendor-directory * {
  box-sizing: inherit;
}

/* Page title */
.vendor-directory .vd-page-title {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 2.5rem 1.5rem 1rem;
    font-family: var(--font-body-family, inherit);
}

.vendor-directory .vd-page-title-heading {
  font-size: 2rem;
  margin: 0 0 0.4rem;
  color: var(--vd-text, #111827);
}

.vendor-directory .vd-page-title-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--vd-muted, #6b7280);
  max-width: 640px;
}

/* Directory layout */
.vendor-directory .vd-directory {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem 3rem;
    font-family: var(--font-body-family, inherit);
}

.vendor-directory .vd-layout {
  display: grid;
  grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Filters sidebar */
.vendor-directory .vd-filters {
  background: var(--vd-filters-bg, #f9fafb);
  border-radius: var(--vd-radius-lg, 18px);
  box-shadow: var(--vd-shadow-soft, 0 10px 30px rgba(0, 0, 0, 0.06));
  border: 1px solid var(--vd-border-soft, rgba(0, 0, 0, 0.06));
  padding: 1.2rem 1rem 1.4rem;
  font-size: 0.9rem;
}

.vendor-directory .vd-filters-title {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  color: var(--vd-text, #111827);
  font-weight: 600;
}

.vendor-directory .vd-filter-group {
  margin-bottom: 1rem;
}

.vendor-directory .vd-filter-label {
  display: block;
  font-size: 0.8rem;
  color: var(--vd-muted, #6b7280);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.vendor-directory .vd-filter-input,
.vendor-directory .vd-filter-select {
  width: 100%;
  border-radius: var(--vd-radius-pill, 999px);
  border: 1px solid var(--vd-border-soft, rgba(0, 0, 0, 0.06));
  padding: 0.45rem 0.8rem;
    font-family: var(--font-body-family, inherit);
  font-size: 0.88rem;
  outline: none;
  background: #faf7f3;
  color: var(--vd-text, #111827);
}

/* CTA button (View all Vendors in Colorado) */
.vendor-directory .vd-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--vd-radius-pill, 999px);
  border: none;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--vd-accent, #2563eb);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.vendor-directory .vd-cta-button:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.vendor-directory .vd-cta-button:active {
  filter: none;
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Filter chips (buttons) */
.vendor-directory .vd-filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vendor-directory .vd-filter-chip {
  padding: 0.25rem 0.7rem;
  border-radius: var(--vd-radius-pill, 999px);
  border: 1px solid var(--vd-border-soft, rgba(0, 0, 0, 0.06));
  font-size: 0.78rem;
  color: var(--vd-chip-text, #6b7280);
  background: var(--vd-chip-bg, #fafafa);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.vendor-directory .vd-filter-chip--active {
  background: var(--vd-accent-soft, rgba(37, 99, 235, 0.12));
  color: var(--vd-accent, #2563eb);
  border-color: transparent;
}

/* Cards grid */
.vendor-directory .vd-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  grid-auto-rows: 1fr;
}

/* Vendor card */
.vendor-directory .vd-vendor-card {
  background: var(--card-bg, var(--vd-bg-alt, #f9fafb));
  color: var(--card-text, var(--vd-text, #111827));
  border-radius: var(--vd-radius-lg, 18px);
  box-shadow: var(--vd-shadow-soft, 0 10px 30px rgba(0, 0, 0, 0.06));
  border: 1px solid var(--vd-border-soft, rgba(0, 0, 0, 0.06));
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Media block */
.vendor-directory .vd-vendor-media {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.35rem;
  padding: 0.6rem 0.6rem 0;
  height: 180px;
}

.vendor-directory .vd-vendor-main-img,
.vendor-directory .vd-vendor-side-img {
  border-radius: var(--vd-radius-md, 12px);
  overflow: hidden;
  background: #f1f1f1;
  width: 100%;
  height: 100%;
}

.vendor-directory .vd-vendor-side-img {
  background: #ffffff;
}

.vendor-directory .vd-vendor-main-img img,
.vendor-directory .vd-vendor-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card body */
.vendor-directory .vd-vendor-body {
  padding: 0.8rem 0.95rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.vendor-directory .vd-vendor-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--card-text, var(--vd-text, #111827));
}

/* Tag pills inside cards */
.vendor-directory .vd-vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.78rem;
}

.vendor-directory .vd-vendor-tag {
  padding: 0.16rem 0.55rem;
  border-radius: var(--vd-radius-pill, 999px);
  background: var(--tag-bg, var(--vd-tag-bg, #e5e7eb));
  color: var(--tag-text, var(--vd-tag-text, #4b5563));
}

/* Description */
.vendor-directory .vd-vendor-desc {
  font-size: 0.88rem;
  color: var(--card-muted, var(--vd-muted, #6b7280));
  line-height: 1.55;
  margin: 0.2rem 0 0.4rem;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Footer */
.vendor-directory .vd-vendor-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--card-muted, var(--vd-muted, #6b7280));
}

/* Link / button in card */
.vendor-directory .vd-vendor-link {
  text-decoration: none;
  font-size: 0.86rem;
  color: var(--card-accent, var(--vd-accent, #2563eb));
  font-weight: 500;
}

.vendor-directory .vd-vendor-link:hover {
  text-decoration: underline;
}

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

@media (max-width: 700px) {
  .vendor-directory .vd-filters {
    order: -1;
  }
}
/* No results message */
.vendor-directory .vd-no-results {
  grid-column: 1 / -1;
  padding: 1rem 1.1rem;
  border-radius: var(--vd-radius-lg, 18px);
  border: 1px solid var(--vd-border-soft, rgba(0, 0, 0, 0.06));
  background: var(--vd-bg-alt, #f9fafb);
  color: var(--vd-muted, #6b7280);
  box-shadow: var(--vd-shadow-soft, 0 10px 30px rgba(0, 0, 0, 0.06));
  font-size: 0.92rem;
}@charset "UTF-8";
/* CSS Document */

