.glittery-title {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFFACD);
  background-size: 150% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 3px rgba(255, 215, 0, 0.3),
    0 0 5px rgba(255, 165, 0, 0.2);
  animation: shimmer 3s infinite linear;
  position: relative;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Sparkle effect */
.glittery-title::before {
  content: '✨';
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  animation: sparkle 3s infinite;
}

.glittery-title::after {
  content: '✨';
  position: absolute;
  font-size: 0.8rem;
  opacity: 0;
  animation: sparkle 3s infinite 1.5s;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(10px, -10px) scale(1);
  }
}

a {
  color: inherit; /* Uses the parent element's text color */
  text-decoration: none; /* Removes underline */
}

/* Optional: Style different link states */
a:hover {
  text-decoration: underline; /* Add underline on hover if you want */
  opacity: 0.8; /* Or fade slightly */
}

a:visited {
  color: inherit; /* Keep visited links the same color */
}

a:active {
  color: inherit;
}

h2 {
  color:#fff
}

p.darkmode {
  color: #fff
}

body {
  font-family: sans-serif;
  margin: 0;
  background: #074210;
  color: #333;
  overflow-x: hidden;
}

header, footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #fff;
}

/* Banner section */
.banner {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 250px;
  margin: 0;
  padding: 0;
}
.banner-thin {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 160px;
  margin: 0;
  padding: 0;
}

.banner-thick {
  position: relative;
  overflow: hidden;
  width: 90vw;
  height: 480px;
  margin: 1rem auto;
  padding: 1rem;
}
/* Carousel container - this is what moves */
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

/* Each slide takes full banner width */
.slide {
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  flex-shrink: 0;
  height: 100%;
}

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

/* Arrow buttons */
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 0.5rem; }
.next { right: 0.5rem; }

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
}


/* === Catalogue Section === */
.catalogue {
  padding: 1rem;
}

.catalogue h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .banner {
    height: 350px; /* taller on larger screens */
  }
}
/* === Products Cards === */
.product {
  text-align: center;
  background: #ffffffcc; /* light translucent white background */
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 200px; /* fixed height */
  object-fit: cover; /* crop image to fill box */
  border-radius: 8px;
}

.product p {
  margin-top: 0.5rem;
  font-weight: bold;
}

/* .catalogue {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  gap: 10px;
}

.catalogue-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 140px;
  text-align: center;
  padding: 10px;
}

.catalogue-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 5px;
} */

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003600;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

.btn:hover {
  background-color: #032702;
}

header.header {
  display: flex;              /* Arrange children in a row */
  justify-content: space-between; /* Push first and last child to opposite sides */
  align-items: center;        /* Vertically center them */
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
}

header .header-text h1, 
header .header-text h2 {
  margin: 0; /* Remove default spacing */
}

.two-columns {
  column-count: 2;      /* Number of columns */
  column-gap: 40px;     /* Space between columns */
  column-rule: 1px solid #ccc; /* Optional vertical line between columns */
}

.columns {
  column-width: 320px;
  column-gap: 20px;
  column-rule: 1px solid #ccc;
}


/* age gate modal */

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-gate-overlay.active {
  display: flex;
}

.age-gate-modal {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.age-gate-modal h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #333;
}

.age-gate-modal p {
  margin-bottom: 2rem;
  color: #666;
}

.age-gate-modal button {
  padding: 12px 32px;
  margin: 0.5rem;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.age-gate-modal button:first-of-type {
  background: #28a745;
  color: white;
}

.age-gate-modal button:first-of-type:hover {
  background: #218838;
}

.age-gate-modal button:last-of-type {
  background: #dc3545;
  color: white;
}

.age-gate-modal button:last-of-type:hover {
  background: #c82333;
}


/* product display styles */

.product-section {
  margin-bottom: 3rem;
}

.product-section h2 {
  color: aquamarine;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid aquamarine;
  display: inline-block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-card {
  background: rgba(127, 255, 212, 0.1);
  border: 1px solid aquamarine;
  border-radius: 8px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  background: rgba(127, 255, 212, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 255, 212, 0.1);
}

.product-name {
  color: aquamarine;
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  font-weight: 500;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.tag-prem {
  background: rgba(255, 215, 0, 0.3);
  color: gold;
  border: 1px solid gold;
}

.tag-basic {
  background: rgba(135, 206, 235, 0.3);
  color: skyblue;
  border: 1px solid skyblue;
}

.tag-day {
  background: rgba(255, 255, 0, 0.2);
  color: yellow;
  border: 1px solid yellow;
}

.tag-week {
  background: rgba(255, 165, 0, 0.2);
  color: orange;
  border: 1px solid orange;
}

.tag-ratio {
  background: rgba(147, 112, 219, 0.3);
  color: plum;
  border: 1px solid plum;
}

.tag-sauce {
  background: rgba(255, 105, 180, 0.3);
  color: hotpink;
  border: 1ptagx solid hotpink;
}

.tag-indica {
  background: rgba(255, 105, 180, 0.3);
  color: hotpink;
  border: 1ptagx solid hotpink;
}

.tag-sativa {
  background: rgba(5, 71, 2, 0.3);
  color: limegreen;
  border: 1ptagx solid limegreen;
}

.tag-hybrid {
  background: rgba(5, 71, 2, 0.3);
  color: yellow;
  border: 1ptagx solid yellow;
}

.tag-shatter {
  background: rgba(0, 255, 255, 0.3);
  color: cyan;
  border: 1px solid cyan;
}

.tag-other {
  background: rgba(200, 200, 200, 0.3);
  color: #ddd;
  border: 1px solid #ddd;
}

.leafly-indicator {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(127, 255, 212, 0.3);
  font-size: 0.8rem;
  color: #7fffd4;
  text-align: center;
  opacity: 0.7;
}

.product-card:hover .leafly-indicator {
  opacity: 1;
}

/* Make cards with links more obviously clickable */
.product-card[style*="cursor: pointer"]:hover {
  border-color: #7fffd4;
}


/* Info boxes at top of menus */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.25rem;
  padding: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.info-box {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: #e8e8e8;
  box-shadow: 0 3px 7px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
}

.info-box img {
  width: 100%;
  height: 200px; /* fixed height */
  object-fit: cover; /* crop image to fill box */
  border-radius: 8px;
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: .5rem;
  color: #fff;
  font-weight: 600;
}

.info-box.highlight {
  border: 1px solid gold;
  background: linear-gradient(145deg, rgb(102, 101, 101), #111);
}

/* price tables */
.price-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
}

.tier {
  font-weight: 500;
  min-width: 140px;
  color: #fff;
}

.price {
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
}


/* pricing cards */
.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.price-card.basic {
  border: 1px solid green
}
.price-card.premium {
  border: 1px solid gold
}

.price-card.premium .card-header {
  background: linear-gradient(90deg, #2a2a2a, #1a1a1a);
}

.card-header {
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.05);
  font-weight: 500;
  font-size: 0.95rem;
}

.card-prices {
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.card-prices span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4ade80;
}

.card-prices small {
  font-size: 0.75rem;
  color: #a0a0a0;
  font-weight: 400;
}

/* Specials cards */

.specials-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.special-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.special-card.basic {
  border: 1px solid green
}

.special-card.premium {
  border: 1px solid gold
}

.special-card.premium .card-header {
  background: linear-gradient(90deg, #2a2a2a, #1a1a1a);
}

.card-deal {
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.deal-text {
  font-size: 1rem;
  font-weight: 500;
  color: #e8e8e8;
}

.deal-badge {
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}