/* ================================================
   Calvin's Dispensary - Main Stylesheet
   ================================================ */

/* ================================================
   CSS Variables
   ================================================ */
:root {
  --gold: #fdc70d;
  --gold-hover: #ffe14d;
  --dark-bg: #1a1a1a;
  --darker-bg: #0d0d0d;
  --cream-bg: #f5f0e6;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #b0b0b0;
}

/* Yellow Section Dividers */
.section-divider {
  height: 9px;
  background: #fdc70c;
  width: 100%;
}

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

body {
  font-family: "Lato", sans-serif;
  color: var(--text-light);
  background-color: var(--dark-bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Russo One", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* ================================================
   News Ticker
   ================================================ */
.news-ticker {
  background-color: var(--darker-bg);
  overflow: hidden;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ticker-wrapper {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-wrapper:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 50px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.ticker-item a {
  color: var(--gold);
  text-decoration: underline;
  margin-left: 5px;
}

.ticker-item a:hover {
  color: var(--gold-hover);
}

.ticker-item strong {
  margin-right: 5px;
}

.ticker-separator {
  color: var(--gold);
  margin: 0 20px;
}

/* ================================================
   Header Navigation
   ================================================ */
.header {
  background-color: #14110d !important;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid #f4bb43;
  border-top: 2px solid #f4bb43;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: inline-block;
  line-height: 0;
}

.logo img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ================================================
   Buttons
   ================================================ */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-primary {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-primary:hover {
  background: var(--gold-hover);
}

.btn-dark {
  background: transparent;
  border: 2px solid var(--dark-bg);
  color: var(--dark-bg);
}

.btn-dark:hover {
  background: var(--dark-bg);
  color: var(--text-light);
}

.btn-dark-solid {
  background: var(--dark-bg);
  color: var(--gold);
  padding: 14px 25px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-dark-solid:hover {
  background: var(--darker-bg);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

/* ================================================
   Homepage - Hero Section
   ================================================ */
.hero {
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.3) 100%
    ),
    url("image/native-hero-bg.jpg");
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero .container {
  width: 100%;
}

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

.hero-subtitle {
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--gold);
  font-style: italic;
}

.hero-description {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-left: 3px solid var(--gold);
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.hero-link:hover {
  color: var(--gold);
}

.hero-link img {
  width: 20px;
  height: 20px;
}

.hero-link.highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ================================================
   Homepage - About Section
   ================================================ */
.about-section {
  background: #f0e3d3;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  padding-right: 40px;
}

.parallax-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.parallax-watermark img {
  position: absolute;
  top: 34%;
  left: 20%;
  transform: translateY(-50%);
  width: 600px;
  height: auto;
  opacity: 1;
  will-change: transform;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-subtitle {
  font-size: 13px;
  color: #815510;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-title {
  font-size: 38px;
  color: #815510;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-text {
  color: #815510;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-quote {
  font-style: italic;
  color: #815510;
  font-size: 14px;
  margin: 30px 0;
  padding-left: 20px;
  border-left: 2px solid #815510;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ================================================
   Homepage - Featured Categories
   ================================================ */
.categories-section {
  background: url("image/dark-textured-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto 50px;
  font-style: italic;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.category-card {
  background: rgba(40, 40, 40, 0.8);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-image {
  aspect-ratio: 1;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.category-image img {
  width: 60%;
  opacity: 0.5;
}

.category-name {
  padding: 15px;
  font-size: 14px;
  color: var(--text-light);
}

/* ================================================
   Homepage - Featured Products
   ================================================ */
.products-section {
  background: var(--cream-bg);
  padding: 80px 0;
  text-align: center;
}

.products-section .section-title {
  color: var(--text-dark);
}

.products-section .section-subtitle {
  color: #666;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--cream-bg);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  aspect-ratio: 1;
  background: #e8e3d9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.product-image img {
  width: 80%;
  opacity: 0.6;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 10px;
  padding: 4px 8px;
  text-transform: uppercase;
  font-weight: 700;
}

.product-info {
  padding: 15px;
  background: var(--dark-bg);
}

.product-title {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 5px;
}

.product-brand {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

/* ================================================
   Homepage - Newsletter Section
   ================================================ */
.newsletter-section {
  background: url("image/dark-textured-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.newsletter-content h3 {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.newsletter-content h2 {
  font-size: 28px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.newsletter-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gold);
  transition: color 0.3s ease;
}

.newsletter-link:hover {
  color: var(--gold-hover);
}

.newsletter-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.newsletter-form-container {
  background: rgba(40, 40, 40, 0.9);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  padding: 40px;
}

.newsletter-form-container h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

.newsletter-form-container .form-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: var(--text-light);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form .btn-subscribe {
  width: 100%;
  padding: 16px 30px;
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.newsletter-form .btn-subscribe:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 168, 67, 0.3);
}

.newsletter-form .form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.newsletter-form .form-privacy a {
  color: var(--gold);
  text-decoration: underline;
}

.newsletter-form .form-privacy a:hover {
  color: var(--gold-hover);
}

/* Honeypot field */
.hp-field {
  position: absolute;
  left: -9999px;
}

/* ================================================
   About Page - Hero Section
   ================================================ */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("image/dark-textured-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.about-hero-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero h1 {
  font-size: 48px;
  color: var(--gold);
  font-style: italic;
}

/* ================================================
   About Page - Yellow Content Section
   ================================================ */
.about-content-section {
  background: var(--dark-bg);
  padding: 60px 0;
}

.about-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.about-card {
  background: var(--gold);
  padding: 30px;
  border-radius: 8px;
}

.about-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-style: italic;
}

.about-card p {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 13px;
  transition: opacity 0.3s ease;
}

.about-card-link:hover {
  opacity: 0.7;
}

.about-card-link img {
  width: 18px;
  height: 18px;
}

.placeholder-box {
  background: rgba(0, 0, 0, 0.3);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 200px;
  border-radius: 8px;
}

.about-right-content h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 15px;
  font-style: italic;
}

.about-right-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* About Bottom Grid */
.about-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.about-text-card {
  background: transparent;
}

.about-text-card h4 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 15px;
  font-style: italic;
}

.about-text-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-text-card a {
  color: var(--gold);
  font-size: 13px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-text-card a:hover {
  color: var(--gold-hover);
}

/* ================================================
   About Page - Glass Collection Section
   ================================================ */
.glass-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("image/about-parallax-yellow-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}

.glass-section-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.glass-section-title {
  text-align: center;
  font-size: 42px;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 50px;
}

.glass-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  align-items: start;
}

.tobacco-card {
  background: linear-gradient(
      rgba(200, 160, 20, 0.95),
      rgba(180, 140, 10, 0.95)
    ),
    url("image/yellow-cannabis-bg.jpg");
  background-size: cover;
  padding: 35px;
  border-radius: 8px;
}

.tobacco-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.tobacco-card p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.8;
  margin-bottom: 25px;
}

.tobacco-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.tobacco-card-link:hover {
  opacity: 0.7;
}

.tobacco-card-link img {
  width: 18px;
  height: 18px;
}

.glass-image-box {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

/* ================================================
   About Page - Parallax Section
   ================================================ */
.parallax-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("image/about-parallax-yellow-bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-attachment: fixed;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ================================================
   Contact Page - Hero Section
   ================================================ */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("image/dark-textured-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.contact-hero-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-hero h1 {
  font-size: 48px;
  color: var(--gold);
}

.contact-hero-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
}

.contact-hero-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--dark-bg);
}

/* ================================================
   Contact Page - Content Section
   ================================================ */
.contact-content-section {
  background: linear-gradient(
      rgba(180, 140, 40, 0.92),
      rgba(180, 140, 40, 0.92)
    ),
    url("image/yellow-cannabis-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

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

/* Contact Form */
.contact-form-section h2 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--text-light);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
}

.form-input::placeholder {
  color: #888;
}

.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--text-light);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: var(--text-dark);
  min-height: 120px;
  resize: vertical;
}

.form-textarea::placeholder {
  color: #888;
}

.form-note {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}

.form-note a {
  color: var(--text-dark);
  text-decoration: underline;
}

.btn-submit {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--darker-bg);
}

/* Location Section */
.location-section h2 {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: #e8e3d9;
  border-radius: 8px;
  margin-bottom: 25px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--dark-bg);
}

.contact-info-text {
  font-size: 14px;
  color: var(--text-dark);
}

/* ================================================
   Contact Page - FAQ Section
   ================================================ */
.faq-section {
  background: var(--dark-bg);
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.faq-intro h2 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-intro p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.staff-photo-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(40, 40, 40, 0.8);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: "Russo One", sans-serif;
  font-size: 14px;
  color: var(--gold);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 20px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================================================
   Blog Page - Hero Section
   ================================================ */
.blog-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("image/dark-textured-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.blog-hero h1 {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-hero-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.blog-hero-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--dark-bg);
}

/* ================================================
   Blog Page - Feed Section
   ================================================ */
.blog-feed-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-content {
  padding: 35px 40px;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 12px;
  color: var(--text-muted);
}

.blog-date {
  color: var(--gold);
}

.blog-card-content h2 {
  font-size: 24px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.3;
  font-style: italic;
}

.blog-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.blog-card-content p strong {
  color: var(--text-light);
}

.blog-read-more {
  margin-top: auto;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  padding-top: 15px;
}

.blog-read-more:hover {
  color: var(--gold-hover);
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-info {
  font-size: 14px;
  color: var(--text-muted);
}

/* ================================================
   Blog Page - CTA Section
   ================================================ */
.blog-cta-section {
  background: linear-gradient(
      rgba(200, 160, 20, 0.95),
      rgba(180, 140, 10, 0.95)
    ),
    url("image/yellow-cannabis-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.blog-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.blog-cta-content h2 {
  font-size: 36px;
  color: var(--dark-bg);
  margin-bottom: 15px;
  font-style: italic;
}

.blog-cta-content p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
  line-height: 1.7;
}

.blog-newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.blog-newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.1);
  color: var(--dark-bg);
}

.blog-newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.blog-newsletter-form input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.15);
}

/* ================================================
   Blog Post Page - Individual Post
   ================================================ */
.blog-post-page {
  background: var(--cream-bg);
  padding: 80px 0;
}

.blog-post-header {
  max-width: 900px;
  margin: 0 auto 50px;
}

.blog-back-link {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-back-link:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

.blog-post-category {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-post-header h1 {
  font-size: 42px;
  color: var(--dark-bg);
  margin-bottom: 20px;
  line-height: 1.2;
  font-style: italic;
}

.blog-post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.blog-date {
  color: var(--gold);
  font-weight: 600;
}

.blog-author {
  color: #666;
}

.blog-post-image {
  max-width: 900px;
  margin: 0 auto 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
  line-height: 1.8;
}

.blog-post-intro {
  font-size: 20px;
  color: var(--dark-bg);
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.7;
  font-style: italic;
}

.blog-post-content h2 {
  font-size: 32px;
  color: var(--dark-bg);
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  font-style: italic;
}

.blog-post-content h3 {
  font-size: 24px;
  color: var(--dark-bg);
  margin: 35px 0 15px;
  font-weight: 600;
}

.blog-post-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

.blog-post-content p strong {
  color: var(--dark-bg);
  font-weight: 700;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 20px 0 20px 30px;
  padding-left: 0;
}

.blog-post-content ul li,
.blog-post-content ol li {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

.blog-post-content ul li strong,
.blog-post-content ol li strong {
  color: var(--dark-bg);
  font-weight: 700;
}

.blog-post-content a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blog-post-content a:hover {
  color: var(--gold-hover);
}

.blog-post-cta {
  background: rgba(200, 160, 20, 0.1);
  border-left: 4px solid var(--gold);
  padding: 30px;
  margin: 50px 0;
  border-radius: 8px;
}

.blog-post-cta p {
  font-size: 18px;
  color: var(--dark-bg);
  margin-bottom: 20px;
}

.blog-post-cta .btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.blog-post-cta .btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 160, 20, 0.3);
}

/* ================================================
   Terms Page - Hero Section
   ================================================ */
.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("image/dark-textured-background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.terms-hero h1 {
  font-size: 48px;
  color: var(--gold);
}

.terms-hero-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
}

.terms-hero-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--dark-bg);
}

/* ================================================
   Terms Page - Content Section
   ================================================ */
.terms-content-section {
  background: var(--cream-bg);
  padding: 80px 0;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
}

.terms-last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.terms-block {
  margin-bottom: 40px;
}

.terms-block h2 {
  font-size: 24px;
  color: var(--dark-bg);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.terms-block p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.terms-block ul {
  margin-left: 25px;
  margin-bottom: 15px;
}

.terms-block li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.terms-block a {
  color: var(--gold);
  text-decoration: underline;
}

.terms-block a:hover {
  color: #b8912e;
}

/* ================================================
   Shared - CTA Section
   ================================================ */
.cta-section {
  background: var(--dark-bg);
  padding: 60px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cta-card {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 8px;
}

.cta-card h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 15px;
}

.cta-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-card a {
  color: var(--gold);
  font-size: 13px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cta-card a:hover {
  color: var(--gold-hover);
}

/* ================================================
   Footer
   ================================================ */
.footer {
  background: var(--darker-bg);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo a {
  display: inline-block;
  line-height: 0;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  max-width: 100%;
}

.footer-tagline {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer h4 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 20px;
  font-style: italic;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

.business-hours {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.business-hours p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.business-hours span {
  color: var(--text-muted);
}

.footer-newsletter h4 {
  color: var(--gold);
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  font-size: 13px;
}

.footer-newsletter-form input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter-form button {
  padding: 12px 15px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter-form button:hover {
  background: var(--gold-hover);
}

.footer-newsletter-form button svg {
  width: 18px;
  height: 18px;
  fill: var(--dark-bg);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-social a.facebook {
  background: #1877f2;
}

.footer-social a.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.footer-social a.weedmaps {
  background: #00c853;
}

.footer-social a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

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

.footer-social i {
  font-size: 18px;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 10px;
}

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

.footer-disclaimer {
  font-size: 10px;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ================================================
   Age Verification Modal
   ================================================ */
.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal-overlay.hidden {
  display: none;
}

.age-modal {
  background: #1f1f1f;
  border: 3px solid var(--gold);
  border-radius: 16px;
  padding: 50px 60px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.age-modal-logo {
  width: 80px;
  height: 100px;
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.age-modal-logo-box {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.age-modal-logo-box span {
  font-family: "Russo One", sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark-bg);
  line-height: 1;
}

.age-modal-mohawk {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.age-modal-mohawk span {
  display: block;
  width: 4px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}

.age-modal-mohawk span:nth-child(1) {
  height: 12px;
}
.age-modal-mohawk span:nth-child(2) {
  height: 18px;
}
.age-modal-mohawk span:nth-child(3) {
  height: 22px;
}
.age-modal-mohawk span:nth-child(4) {
  height: 26px;
}
.age-modal-mohawk span:nth-child(5) {
  height: 22px;
}
.age-modal-mohawk span:nth-child(6) {
  height: 18px;
}
.age-modal-mohawk span:nth-child(7) {
  height: 12px;
}

.age-modal h2 {
  font-family: "Russo One", sans-serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 400;
}

.age-modal-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.age-modal-btn-yes {
  display: block;
  width: 100%;
  padding: 16px 30px;
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.age-modal-btn-yes:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 168, 67, 0.4);
}

.age-modal-btn-no {
  display: block;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
  margin: 0 auto 25px;
}

.age-modal-btn-no:hover {
  color: var(--gold);
}

.age-modal-disclaimer {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.age-modal-disclaimer a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.age-modal-disclaimer a:hover {
  color: var(--gold-hover);
  text-decoration: underline;
}

/* ================================================
   Responsive Styles
   ================================================ */
@media (max-width: 1024px) {
  .categories-grid,
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-top-grid,
  .about-bottom-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--darker-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
  }

  .main-nav a.active::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
  }

  .mobile-overlay.active {
    display: block;
  }
}

@media (max-width: 768px) {
  /* Disable parallax on mobile/tablet for better performance */
  .hero,
  .about-section,
  .categories-section,
  .newsletter-section,
  .about-hero,
  .glass-section,
  .parallax-section,
  .contact-hero,
  .cta-section {
    background-attachment: scroll;
  }

  .parallax-watermark img {
    width: 200px;
    opacity: 0.1;
  }

  .hero {
    min-height: 500px;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 13px;
    padding: 15px;
  }

  .about-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-right: 0;
  }

  .about-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .business-hours p {
    justify-content: center;
    gap: 20px;
  }

  .footer-newsletter-form {
    justify-content: center;
  }

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

  .newsletter-form-container {
    padding: 30px 20px;
  }

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

  /* About page */
  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero {
    padding: 50px 0;
  }

  .about-content-section {
    padding: 40px 0;
  }

  .about-card {
    padding: 25px;
  }

  .glass-section {
    padding: 50px 0;
  }

  .glass-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .tobacco-card {
    padding: 25px;
  }

  /* Contact page */
  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero {
    padding: 40px 0;
  }

  .contact-content-section {
    padding: 40px 0;
  }

  /* Blog page */
  .blog-hero h1 {
    font-size: 32px;
  }

  .blog-hero {
    padding: 40px 0;
    background-attachment: scroll;
  }

  .blog-feed-section {
    padding: 50px 0;
  }

  .blog-card {
    grid-template-columns: 280px 1fr;
  }

  .blog-card-content {
    padding: 25px 30px;
  }

  .blog-card-content h2 {
    font-size: 20px;
  }

  .blog-cta-content h2 {
    font-size: 28px;
  }

  .blog-newsletter-form {
    flex-direction: column;
  }

  /* Blog post page */
  .blog-post-page {
    padding: 50px 0;
  }

  .blog-post-header h1 {
    font-size: 32px;
  }

  .blog-post-image {
    margin-bottom: 30px;
  }

  .blog-post-intro {
    font-size: 18px;
  }

  .blog-post-content h2 {
    font-size: 26px;
    margin: 40px 0 15px;
  }

  .blog-post-content h3 {
    font-size: 20px;
    margin: 30px 0 12px;
  }

  .blog-post-cta {
    padding: 25px;
    margin: 40px 0;
  }

  /* Terms page */
  .terms-hero h1 {
    font-size: 32px;
  }

  .terms-hero {
    padding: 40px 0;
    background-attachment: scroll;
  }

  .terms-content-section {
    padding: 50px 0;
  }

  .terms-block h2 {
    font-size: 20px;
  }

  .contact-form-section h2,
  .location-section h2 {
    font-size: 20px;
  }

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

  .faq-section {
    padding: 40px 0;
  }

  .faq-intro h2 {
    font-size: 26px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    min-height: 450px;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .about-section {
    padding: 60px 0;
  }

  .parallax-watermark img {
    width: 250px;
    left: 5%;
  }

  .about-title {
    font-size: 26px;
  }

  .categories-section,
  .products-section {
    padding: 50px 0;
  }

  .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .product-card,
  .category-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .newsletter-section {
    padding: 50px 0;
  }

  .newsletter-content h2 {
    font-size: 22px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer h4 {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .business-hours {
    font-size: 12px;
  }

  .footer-newsletter-form input {
    font-size: 12px;
    padding: 10px 12px;
  }

  /* About page */
  .about-hero h1 {
    font-size: 26px;
  }

  .about-card h3 {
    font-size: 18px;
  }

  .about-text-card h4 {
    font-size: 16px;
  }

  .glass-section-title {
    font-size: 24px;
  }

  .tobacco-card h3 {
    font-size: 18px;
  }

  .cta-card {
    padding: 25px;
  }

  .cta-card h3 {
    font-size: 18px;
  }

  /* Contact page */
  .contact-hero h1 {
    font-size: 26px;
  }

  .contact-hero-icon {
    width: 50px;
    height: 50px;
  }

  .contact-hero-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Blog page */
  .blog-hero h1 {
    font-size: 26px;
  }

  .blog-hero-subtitle {
    font-size: 14px;
  }

  .blog-hero-icon {
    width: 50px;
    height: 50px;
  }

  .blog-hero-icon svg {
    width: 24px;
    height: 24px;
  }

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

  .blog-card-image {
    min-height: 200px;
  }

  /* Blog post page */
  .blog-post-page {
    padding: 40px 0;
  }

  .blog-post-header {
    margin-bottom: 30px;
  }

  .blog-post-header h1 {
    font-size: 26px;
  }

  .blog-post-meta {
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
  }

  .blog-post-image {
    margin-bottom: 25px;
    border-radius: 8px;
  }

  .blog-post-intro {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .blog-post-content {
    font-size: 14px;
  }

  .blog-post-content h2 {
    font-size: 22px;
    margin: 30px 0 12px;
  }

  .blog-post-content h3 {
    font-size: 18px;
    margin: 25px 0 10px;
  }

  .blog-post-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .blog-post-content ul,
  .blog-post-content ol {
    margin: 15px 0 15px 20px;
  }

  .blog-post-content ul li,
  .blog-post-content ol li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .blog-post-cta {
    padding: 20px;
    margin: 30px 0;
  }

  .blog-post-cta p {
    font-size: 16px;
  }

  .blog-post-cta .btn-gold {
    padding: 12px 24px;
    font-size: 14px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card-content h2 {
    font-size: 18px;
  }

  .blog-card-content p {
    font-size: 13px;
  }

  .blog-cta-section {
    padding: 50px 0;
  }

  .blog-cta-content h2 {
    font-size: 24px;
  }

  .blog-cta-content p {
    font-size: 14px;
  }

  /* Terms page */
  .terms-hero h1 {
    font-size: 24px;
  }

  .terms-hero-icon {
    width: 50px;
    height: 50px;
  }

  .terms-hero-icon svg {
    width: 24px;
    height: 24px;
  }

  .terms-content-section {
    padding: 40px 0;
  }

  .terms-block h2 {
    font-size: 18px;
  }

  .terms-block p,
  .terms-block li {
    font-size: 14px;
  }

  .form-input,
  .form-textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .faq-intro h2 {
    font-size: 22px;
  }

  .faq-question span {
    font-size: 13px;
  }

  .staff-photo-placeholder {
    min-height: 150px;
  }

  .ticker-item {
    font-size: 11px;
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .age-modal {
    padding: 35px 25px;
    margin: 15px;
  }

  .age-modal h2 {
    font-size: 22px;
  }

  .age-modal-logo {
    width: 65px;
    height: 85px;
  }

  .age-modal-logo-box {
    width: 65px;
    height: 65px;
  }

  .age-modal-logo-box span {
    font-size: 34px;
  }

  .age-modal-subtitle {
    font-size: 14px;
  }

  .age-modal-btn-yes {
    font-size: 14px;
    padding: 14px 25px;
  }
}
