/* ===========================
   East Florida Wholesale Flowers
   Premium Design System
   Colors:
   - Grey Orange: #a18961
   - Light Orange: #faf2e9
   - Dark Grey Green: #32402f
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --grey-orange: #a18961;
  --grey-orange-light: #c4a97a;
  --grey-orange-dark: #8a7350;
  --light-orange: #faf2e9;
  --light-orange-warm: #f5ead9;
  --dark-green: #32402f;
  --dark-green-light: #3d4e39;
  --dark-green-darker: #262f24;
  --white: #ffffff;
  --black: #1a1a1a;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 20px rgba(161, 137, 97, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-orange);
  color: var(--dark-green);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Utility: Animated Fade In --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* --- Header --- */
.site-header {
  background-color: var(--dark-green);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(161, 137, 97, 0.15);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: opacity var(--transition-fast);
}

.header-logo a:hover {
  opacity: 0.85;
}

.logo-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 4px;
}

.logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  position: relative;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--grey-orange);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-subtext {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-style: normal;
  color: var(--grey-orange-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item a {
  color: var(--light-orange);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  position: relative;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.nav-item a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  background-color: rgba(161, 137, 97, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-item a:hover {
  color: var(--grey-orange-light);
}

.nav-item a:hover::before {
  opacity: 1;
}

/* Account / user icon (last nav item) */
.nav-item-account {
  position: relative;
}

.nav-item-account a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-account-icon {
  width: 22px;
  height: 22px;
  display: block;
}

/* Desktop: show icon only. The label appears on mobile where nav stacks. */
.nav-account-label {
  display: none;
}

/* Account dropdown menu (shown when logged in) */
.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(161, 137, 97, 0.15);
  padding: 0.4rem;
  z-index: 1001;
  animation: fadeInUp 0.18s ease-out;
}

.account-dropdown.open {
  display: block;
}

.account-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
  text-align: left;
  color: #2b2b2b;
}

.account-dropdown-item:hover {
  background: rgba(161, 137, 97, 0.1);
}

.account-dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.account-logout {
  color: #c4453f;
}

.account-logout:hover {
  background: rgba(196, 69, 63, 0.1);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
  background-color: rgba(161, 137, 97, 0.1);
}

.menu-icon {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--grey-orange);
  position: relative;
  transition: background-color 0.3s;
  border-radius: 2px;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: var(--grey-orange);
  left: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.mobile-menu-btn.active .menu-icon {
  background-color: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* --- Hero Section (Home) --- */
.hero {
  background: linear-gradient(165deg, var(--dark-green) 0%, var(--dark-green-light) 50%, var(--dark-green) 100%);
  padding: 8rem 2rem 9rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(161, 137, 97, 0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 45%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(161, 137, 97, 0.04) 0%, transparent 55%);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--light-orange);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  color: var(--grey-orange);
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Decorative line */
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--grey-orange), transparent);
  margin: 0 auto 2.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(161, 137, 97, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--grey-orange);
  border: 1.5px solid var(--grey-orange);
}

.btn-secondary:hover {
  background-color: var(--grey-orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* --- Features / Value Props --- */
.value-props {
  background-color: var(--white);
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(161, 137, 97, 0.1);
}

.value-props-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.value-prop {
  text-align: center;
  padding: 1.5rem;
}

.value-prop-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-orange-warm) 100%);
  border-radius: 50%;
  font-size: 1.3rem;
}

.value-prop h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.value-prop p {
  color: rgba(50, 64, 47, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Categories Section --- */
.categories {
  padding: 5rem 2rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  color: var(--dark-green);
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.section-subtitle {
  color: rgba(50, 64, 47, 0.65);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--grey-orange);
  margin: 1.2rem auto 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.category-card {
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.2rem 1.8rem;
  text-align: center;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grey-orange), var(--grey-orange-light));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon {
  font-size: 2.8rem;
  transition: transform var(--transition-bounce);
}

.category-card:hover .category-icon {
  transform: scale(1.15);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-green);
  letter-spacing: 0.3px;
}

.category-card p {
  color: rgba(50, 64, 47, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- About / Story Section --- */
.about-section {
  background: var(--white);
  padding: 6rem 2rem;
  position: relative;
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--dark-green);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.about-header-sub {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--grey-orange);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about-text-block p {
  color: rgba(50, 64, 47, 0.8);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

.about-why-card {
  background: var(--light-orange);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.2rem;
  border: 1px solid rgba(161, 137, 97, 0.12);
  position: sticky;
  top: 6rem;
}

.about-why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-green);
  margin-bottom: 1.3rem;
  text-align: center;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(161, 137, 97, 0.08);
  transition: all var(--transition-fast);
}

.about-checklist-item:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}

.about-checklist-item .check-icon {
  color: var(--grey-orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-checklist-item p {
  color: var(--dark-green);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.about-tagline-banner {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
  text-align: center;
}

.about-tagline-banner p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--grey-orange-light);
  margin: 0;
}

/* Legacy about container (other pages) */
.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-content p {
  color: rgba(50, 64, 47, 0.75);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  padding: 1.5rem;
  background: var(--light-orange);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--grey-orange);
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-green);
  margin-top: 0.3rem;
  display: block;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(161, 137, 97, 0.08) 0%, transparent 60%);
}

.about-image-placeholder p {
  color: var(--grey-orange);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  position: relative;
  z-index: 1;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-darker) 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-orange), transparent);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--light-orange);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(250, 242, 233, 0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.15);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
  border-color: var(--grey-orange);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 12px 40px rgba(161, 137, 97, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--grey-orange), var(--grey-orange-dark));
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--grey-orange);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-detail {
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.pricing-per {
  font-size: 0.85rem;
  color: rgba(50, 64, 47, 0.6);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(161, 137, 97, 0.12);
  margin-top: 0.75rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: rgba(50, 64, 47, 0.6);
  font-size: 0.9rem;
  font-style: italic;
}

/* --- Offer List (What We Offer) --- */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--light-orange);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.offer-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.offer-check {
  color: var(--grey-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.offer-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 0.2rem;
}

.offer-item p {
  color: rgba(50, 64, 47, 0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* --- CTA Buttons Row --- */
.hero-buttons,
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer Contact Links --- */
.footer-contact-link {
  color: rgba(250, 242, 233, 0.7);
  transition: color var(--transition-fast);
  display: inline-block;
}

.footer-contact-link:hover {
  color: var(--grey-orange-light);
}

/* --- Store Page --- */
.store-hero {
  background: linear-gradient(165deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

/* Build A Box Banner */
.build-a-box-banners {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

/* Hide real banners until JS has filtered them */
.build-a-box-banner {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.build-a-box-banners.loaded .build-a-box-banner {
  display: flex;
  animation: fadeInUp 0.4s ease-out both;
}

/* Skeleton banner placeholder */
.skeleton-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(161, 137, 97, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(161, 137, 97, 0.1);
  height: 58px;
}

.skeleton-banner-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.skeleton-banner-text {
  height: 16px;
  width: 55%;
  border-radius: 6px;
}

.skeleton-banner-btn {
  margin-left: auto;
  width: 100px;
  height: 30px;
  border-radius: var(--radius-sm);
}

.build-a-box-banners.loaded .skeleton-banner {
  display: none;
}

.build-a-box-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.build-a-box-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.build-a-box-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.build-a-box-btn {
  margin-left: auto;
  padding: 0.5rem 1.2rem;
  background: var(--white);
  color: var(--grey-orange-dark);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Build A Box Modal */
.box-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.box-modal-overlay.active {
  display: flex;
}

.box-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 460px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease-out;
}

.box-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: rgba(50, 64, 47, 0.4);
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1;
}

.box-modal-close:hover {
  color: var(--dark-green);
}

.box-modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.box-modal-icon {
  font-size: 1.8rem;
}

.box-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark-green);
}

.box-modal-subtitle {
  color: rgba(50, 64, 47, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.box-modal-caution {
  font-size: 0.82rem;
  color: #8a6d20;
  background: #fef9ec;
  border: 1px solid #f0dda0;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.box-modal-section {
  margin-bottom: 1.5rem;
}

.box-modal-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--dark-green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.box-modal-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.box-modal-options-inline {
  flex-wrap: nowrap;
}

.box-modal-option {
  padding: 0.7rem 1.4rem;
  border: 1.5px solid rgba(161, 137, 97, 0.25);
  border-radius: var(--radius-sm);
  background: var(--light-orange);
  color: var(--dark-green);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.box-modal-option:hover {
  border-color: var(--grey-orange);
  background: rgba(161, 137, 97, 0.08);
}

.box-modal-option.selected {
  background: var(--grey-orange);
  color: var(--white);
  border-color: var(--grey-orange);
  box-shadow: var(--shadow-gold);
}

.box-modal-option-wide {
  flex: 1;
  text-align: center;
}

/* Fresh Flowers: per-flower length groups (informational) */
.box-modal-length-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.box-modal-length-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.9rem;
  background: var(--light-orange);
  border: 1.5px solid rgba(161, 137, 97, 0.25);
  border-radius: var(--radius-sm);
}

.box-modal-length-name {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(50, 64, 47, 0.6);
}

.box-modal-length-values {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey-orange-dark);
}

.box-modal-confirm {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.box-modal-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(161, 137, 97, 0.4);
}

.box-modal-quantity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.2);
  border-radius: var(--radius-sm);
  animation: fadeIn 0.3s ease-out;
}

.box-modal-quantity-icon {
  font-size: 1.2rem;
}

.box-modal-quantity-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-green);
}

/* Build A Box - Step 2 (Builder) */
.box-builder-modal {
  max-width: 560px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.box-builder-info {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.box-builder-back {
  background: none;
  border: none;
  color: var(--grey-orange);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.box-builder-back:hover {
  color: var(--grey-orange-dark);
}

.box-builder-tag {
  padding: 0.35rem 0.8rem;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.2);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-orange-dark);
  letter-spacing: 0.3px;
}

.box-builder-progress {
  width: 100%;
  height: 8px;
  background: rgba(161, 137, 97, 0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.box-builder-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--grey-orange), var(--grey-orange-light));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.box-builder-progress-label {
  font-size: 0.78rem;
  color: rgba(50, 64, 47, 0.6);
  margin-bottom: 1rem;
}

.box-builder-search {
  margin-bottom: 1rem;
}

.box-builder-search-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(161, 137, 97, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--light-orange);
  color: var(--dark-green);
  transition: border-color var(--transition-fast);
}

.box-builder-search-input:focus {
  outline: none;
  border-color: var(--grey-orange);
}

.box-builder-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 360px;
  padding-right: 0.5rem;
}

.box-builder-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.1);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}

.box-builder-item:hover {
  border-color: rgba(161, 137, 97, 0.3);
}

.box-builder-item-img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.box-builder-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-builder-item-noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.6rem;
  color: rgba(50, 64, 47, 0.4);
  text-align: center;
}

.box-builder-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.box-builder-item-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--dark-green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-builder-item-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-orange);
}

.box-builder-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.box-builder-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(161, 137, 97, 0.3);
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-green);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  line-height: 1;
}

.box-builder-btn:hover {
  background: var(--grey-orange);
  color: var(--white);
  border-color: var(--grey-orange);
}

.box-builder-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--white);
  color: var(--dark-green);
  border-color: rgba(161, 137, 97, 0.3);
}

.box-builder-btn:disabled:hover {
  background: var(--white);
  color: var(--dark-green);
  border-color: rgba(161, 137, 97, 0.3);
}

/* Whole-box item caution (e.g. Violet Blue) */
.box-builder-item-wholebox {
  border: 1.5px solid rgba(161, 137, 97, 0.4);
  background: rgba(161, 137, 97, 0.05);
}

.box-builder-item-caution {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding: 0.45rem 0.6rem;
  background: rgba(161, 137, 97, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--grey-orange-dark);
  white-space: normal;
}

.box-builder-item-caution-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* Builder incomplete-selection notice */
.box-builder-notice {
  display: none;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
  background: rgba(196, 84, 73, 0.1);
  border: 1.5px solid rgba(196, 84, 73, 0.35);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.4;
  color: #9c3a30;
  animation: fadeIn 0.2s ease-out;
}

.box-builder-notice.active {
  display: flex;
}

.box-builder-notice-icon {
  flex-shrink: 0;
  font-size: 0.95rem;
}

.box-builder-item-qty {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-green);
  min-width: 20px;
  text-align: center;
}

.box-builder-empty {
  text-align: center;
  color: rgba(50, 64, 47, 0.5);
  font-style: italic;
  padding: 2rem 0;
}

/* Bulk price display in builder items */
.box-builder-item-prices {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.box-builder-item-bulk-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-green);
  background: rgba(161, 137, 97, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* --- Confirmation Modal (Step 3) --- */
.box-confirm-modal {
  max-width: 480px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.box-confirm-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 280px;
  margin-bottom: 1.2rem;
  padding-right: 0.5rem;
}

.box-confirm-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.1);
  border-radius: var(--radius-sm);
}

.box-confirm-item-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.box-confirm-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-confirm-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.box-confirm-item-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--dark-green);
}

.box-confirm-item-qty {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-orange);
}

.box-confirm-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.box-confirm-total-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.box-confirm-total-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--grey-orange-light);
}

.box-confirm-item-price {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey-orange);
  flex-shrink: 0;
}

.box-confirm-question {
  font-size: 0.95rem;
  color: var(--dark-green);
  font-weight: 500;
  margin-bottom: 1.2rem;
  text-align: center;
}

.box-confirm-view-btn {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: none;
  color: var(--grey-orange);
  border: 1.5px solid var(--grey-orange);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-align: center;
}

.box-confirm-view-btn:hover {
  background: var(--grey-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* --- Navigation Warning Modal --- */
.box-nav-warning-overlay {
  z-index: 10001;
}

.box-nav-warning-modal {
  max-width: 400px;
}

.box-nav-warning-text {
  font-size: 0.92rem;
  color: rgba(50, 64, 47, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.box-nav-warning-actions {
  display: flex;
  gap: 0.75rem;
}

.box-nav-warning-cancel {
  flex: 1;
  padding: 0.75rem;
  background: none;
  color: var(--dark-green);
  border: 1.5px solid rgba(50, 64, 47, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.box-nav-warning-cancel:hover {
  border-color: var(--dark-green);
  background: rgba(50, 64, 47, 0.05);
}

.box-nav-warning-go {
  flex: 1;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.box-nav-warning-go:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(161, 137, 97, 0.4);
}

/* --- Success Modal (after placing reservation) --- */
.box-success-modal {
  max-width: 480px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.box-success-subtitle {
  font-size: 1.05rem;
  color: rgba(50, 64, 47, 0.75);
  text-align: center;
  margin-bottom: 1.2rem;
}

.box-success-email-notice {
  font-size: 0.82rem;
  color: #5a7a52;
  background: rgba(90, 122, 82, 0.08);
  border: 1px solid rgba(90, 122, 82, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  text-align: center;
  margin-bottom: 0.8rem;
}

.box-success-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.box-success-total-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.box-success-total-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--grey-orange-light);
}

.box-success-section {
  margin-bottom: 1.5rem;
}

.box-success-section-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.box-success-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.box-success-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.1);
  border-radius: var(--radius-sm);
}

.box-success-item-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.box-success-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-success-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.box-success-item-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--dark-green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-success-item-qty {
  font-size: 0.75rem;
  color: rgba(50, 64, 47, 0.6);
}

.box-success-item-price {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--grey-orange);
  flex-shrink: 0;
}

.box-success-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}

.box-success-text {
  font-size: 0.92rem;
  color: rgba(50, 64, 47, 0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.box-success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.store-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-orange), transparent);
}

.store-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--light-orange);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.store-hero p {
  color: var(--grey-orange);
  font-size: 1.05rem;
  opacity: 0.85;
}

.store-content {
  max-width: 100%;
  margin: 0;
  padding: 3.5rem 2rem 3.5rem 1rem;
}

.store-container {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
}

.store-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.store-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-green);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--grey-orange);
}

.sidebar-nav li {
  margin-bottom: 0.25rem;
}

.sidebar-link {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--dark-green);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.sidebar-link:hover {
  background-color: rgba(161, 137, 97, 0.08);
  color: var(--grey-orange-dark);
  border-left-color: var(--grey-orange);
  padding-left: 1.2rem;
}

/* Sidebar sub-categories */
.sidebar-subnav {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(161, 137, 97, 0.2);
}

.sidebar-subnav li {
  margin-bottom: 0.15rem;
}

.sidebar-sublink {
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  color: rgba(50, 64, 47, 0.75);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.sidebar-sublink:hover {
  background-color: rgba(161, 137, 97, 0.08);
  color: var(--grey-orange-dark);
  border-left-color: var(--grey-orange);
  padding-left: 1.1rem;
}

.sidebar-sublink-active {
  background-color: rgba(161, 137, 97, 0.1);
  border-left-color: var(--grey-orange);
  color: var(--grey-orange-dark);
  font-weight: 600;
}

.store-grid {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(161, 137, 97, 0.25);
}

.store-grid-loaded {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
  align-content: start;
  padding: 1.5rem;
  border: 1px solid rgba(161, 137, 97, 0.1);
  border-style: solid;
}

/* --- Skeleton Loading Cards --- */
.skeleton-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(161, 137, 97, 0.1);
  display: flex;
  flex-direction: column;
}

.skeleton-shimmer {
  background: linear-gradient(
    90deg,
    rgba(161, 137, 97, 0.08) 25%,
    rgba(161, 137, 97, 0.18) 37%,
    rgba(161, 137, 97, 0.08) 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}

.skeleton-card-image {
  width: 100%;
  height: 200px;
}

.skeleton-card-info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skeleton-line {
  height: 14px;
  border-radius: 6px;
}

.skeleton-line-title {
  height: 18px;
  width: 70%;
}

.skeleton-line-short {
  width: 40%;
}

.skeleton-line-btn {
  height: 34px;
  border-radius: var(--radius-sm);
  margin-top: 0.4rem;
}

/* Real cards fade in together once loaded */
.store-grid-loaded .product-card {
  animation: fadeInUp 0.45s ease-out both;
}

/* --- Product detail skeleton --- */
.product-detail-skeleton .product-gallery {
  position: static;
}

.product-skeleton-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
}

.product-skeleton-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
}

.product-skeleton-tag {
  width: 90px;
  height: 24px;
  border-radius: 20px;
}

.product-skeleton-title {
  height: 36px;
  width: 65%;
  margin-bottom: 0.5rem;
}

.product-skeleton-line-short {
  width: 45%;
}

.product-skeleton-price {
  height: 70px;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.product-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-skeleton-box {
  height: 64px;
  border-radius: var(--radius-sm);
}

.product-skeleton-box-tall {
  height: 120px;
}

/* Revealed product detail fades in */
#product-detail:not([hidden]) {
  animation: fadeIn 0.4s ease-out;
}

.store-placeholder {
  color: var(--grey-orange);
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
}

/* --- Footer --- */
.site-footer {
  background: linear-gradient(180deg, var(--dark-green) 0%, var(--dark-green-darker) 100%);
  color: var(--light-orange);
  padding-top: 4rem;
  margin-top: 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-orange), transparent);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand .footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--grey-orange);
  font-weight: 700;
}

.footer-brand .logo-subtext {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-style: normal;
  color: var(--grey-orange-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer-tagline {
  color: rgba(250, 242, 233, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--grey-orange);
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: rgba(250, 242, 233, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links ul li a:hover {
  color: var(--grey-orange-light);
  transform: translateX(3px);
}

.footer-contact p {
  color: rgba(250, 242, 233, 0.6);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid rgba(161, 137, 97, 0.15);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 242, 233, 0.4);
  letter-spacing: 0.3px;
}

.footer-bottom a {
  color: rgba(250, 242, 233, 0.4);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--grey-orange);
}

/* --- Product Cards (Store Grid) --- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(161, 137, 97, 0.1);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(161, 137, 97, 0.2);
}

.product-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--light-orange);
  position: relative;
}

.product-card-category-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--dark-green);
  color: var(--grey-orange-light);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-card-featured-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: linear-gradient(135deg, #d4af37, #f5d060);
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
}

.product-card-placeholder span {
  font-size: 0.85rem;
  color: var(--grey-orange);
  font-family: var(--font-heading);
  font-style: italic;
  letter-spacing: 0.5px;
}

.product-card-info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-green);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.product-card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-orange);
  white-space: nowrap;
  flex-shrink: 0;
}

.product-card-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  flex-shrink: 0;
}

.product-card-price span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
}

.product-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-length {
  font-size: 0.82rem;
  color: rgba(50, 64, 47, 0.6);
}

.product-card-action {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(161, 137, 97, 0.1);
}

.product-card-btn {
  display: block;
  text-align: center;
  padding: 0.6rem;
  background: var(--light-orange);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark-green);
  transition: all var(--transition-fast);
}

.product-card:hover .product-card-btn {
  background: var(--grey-orange);
  color: var(--white);
}

/* --- Active Sidebar Link --- */
.sidebar-link-active {
  background-color: rgba(161, 137, 97, 0.1);
  border-left-color: var(--grey-orange);
  color: var(--grey-orange-dark);
  font-weight: 600;
}

/* --- Product Detail Page --- */
.product-page {
  background: var(--light-orange);
  min-height: 60vh;
}

.product-page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0 2rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--grey-orange);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--grey-orange-dark);
}

.breadcrumb-sep {
  color: rgba(50, 64, 47, 0.3);
}

.breadcrumb-current {
  color: var(--dark-green);
  font-weight: 500;
}

/* Product Detail Layout */
.product-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Product Gallery */
.product-gallery {
  position: sticky;
  top: 100px;
}

.product-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.product-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  color: var(--grey-orange);
  gap: 1rem;
}

.product-image-placeholder p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
}

.product-image-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--grey-orange);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-category-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(161, 137, 97, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-orange-dark);
  align-self: flex-start;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--dark-green);
  line-height: 1.2;
}

.product-description {
  color: rgba(50, 64, 47, 0.75);
  font-size: 1rem;
  line-height: 1.8;
}

.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(161, 137, 97, 0.15);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--grey-orange);
}

.product-price-label {
  font-size: 0.9rem;
  color: rgba(50, 64, 47, 0.6);
}

/* Product Details Grid */
.product-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-detail-item {
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.detail-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(50, 64, 47, 0.5);
  margin-bottom: 0.3rem;
}

.detail-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-green);
  font-weight: 600;
}

/* Included Items */
.product-included {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.product-included h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.product-included ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-included li {
  font-size: 0.92rem;
  color: rgba(50, 64, 47, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.included-check {
  color: var(--grey-orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Product Actions */
.product-build-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: rgba(161, 137, 97, 0.1);
  border: 1px solid rgba(161, 137, 97, 0.25);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}

.product-build-notice-icon {
  font-size: 1.4rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.product-build-notice p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(50, 64, 47, 0.8);
}

.product-build-notice strong {
  color: var(--grey-orange-dark);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .value-props-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .header-container {
    padding: 0 1.5rem;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-green);
    padding: 0.5rem 1.5rem 1.5rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(161, 137, 97, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .header-nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-item a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  /* Mobile: show the account label alongside the icon */
  .nav-item-account a {
    display: flex;
  }

  .nav-account-label {
    display: inline;
  }

  .hero {
    padding: 5rem 1.5rem 6rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .value-props-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-prop {
    padding: 1rem;
  }

  .categories {
    padding: 4rem 1.5rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .category-card {
    padding: 2rem 1rem;
  }

  .store-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .store-sidebar {
    position: static;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.2rem 1.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-header h2 {
    font-size: 1.7rem;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-why-card {
    position: static;
  }

  .about-tagline-banner p {
    font-size: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-6px);
  }

  /* Product page responsive */
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-gallery {
    position: static;
  }

  .product-name {
    font-size: 1.8rem;
  }

  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .store-grid-loaded {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }
}


/* --- Image Enhancer (Lightbox) --- */
.image-enhancer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.image-enhancer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.image-enhancer-content {
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  cursor: zoom-in;
}

.image-enhancer-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.image-enhancer-img.zoomed {
  max-width: none;
  max-height: none;
  width: 150%;
  transform: scale(1);
  cursor: grab;
}

.image-enhancer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.image-enhancer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.image-enhancer-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.image-enhancer-zoom-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.image-enhancer-zoom-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Enhance icon on product cards */
.image-enhancer-icon {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
  z-index: 5;
}

.product-card:hover .image-enhancer-icon {
  opacity: 1;
  transform: scale(1);
}

.image-enhancer-icon:hover {
  background: rgba(161, 137, 97, 0.9);
  transform: scale(1.15);
}

/* Enhance hint on product detail page */
.image-enhancer-hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-image-main:hover .image-enhancer-hint {
  opacity: 1;
}

/* ===== Auth Modal (Login / Signup) ===== */
.auth-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.auth-overlay.active {
  display: flex;
}

.auth-modal {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  width: 100%;
  max-width: 940px;
  min-height: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.35s ease-out;
}

.auth-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--dark-green);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-close:hover {
  background: var(--white);
  transform: rotate(90deg);
}

/* Left visual panel. The source image faces right, so we flip it
   horizontally to face into the form on the left. */
.auth-visual {
  position: relative;
  background: var(--dark-green);
  overflow: hidden;
}

.auth-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scaleX(-1);
}

.auth-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.25rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.auth-form[hidden] {
  display: none;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--dark-green);
  line-height: 1.1;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: rgba(50, 64, 47, 0.65);
  margin-top: -0.35rem;
  line-height: 1.5;
}

.auth-error {
  display: none;
  padding: 0.6rem 0.8rem;
  background: rgba(196, 84, 73, 0.1);
  border: 1.5px solid rgba(196, 84, 73, 0.35);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: #9c3a30;
}

.auth-error.active {
  display: block;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-field span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: rgba(50, 64, 47, 0.6);
}

.auth-field input {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(161, 137, 97, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark-green);
  background: var(--light-orange);
  transition: all var(--transition-fast);
}

.auth-field input:focus {
  outline: none;
  border-color: var(--grey-orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(161, 137, 97, 0.15);
}

/* Password field with visibility toggle */
.auth-password-wrap {
  position: relative;
  display: flex;
}

.auth-password-wrap input {
  flex: 1;
  padding-right: 2.8rem;
  width: 100%;
}

.auth-password-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(50, 64, 47, 0.45);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.auth-password-toggle:hover {
  color: var(--grey-orange-dark);
}

.auth-password-toggle svg {
  width: 20px;
  height: 20px;
}

/* When revealed, tint the icon and add a strike to signal "hide" */
.auth-password-toggle.revealed {
  color: var(--grey-orange);
}

.auth-password-toggle.revealed svg {
  position: relative;
}

.auth-password-toggle.revealed::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
}

.auth-submit {
  margin-top: 0.5rem;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(50, 64, 47, 0.7);
  margin-top: 0.5rem;
}

.auth-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-orange-dark);
  cursor: pointer;
  text-decoration: underline;
}

.auth-link:hover {
  color: var(--grey-orange);
}

/* On smaller screens, drop the image and show just the form */
@media (max-width: 700px) {
  .auth-modal {
    grid-template-columns: 1fr;
    max-width: 420px;
    min-height: 0;
  }

  .auth-visual {
    display: none;
  }

  .auth-panel {
    padding: 2.5rem 1.75rem;
  }
}

/* --- Account Dropdown: Reservations link --- */
.nav-item-account .account-dropdown .account-reservations,
.nav-item-account .account-dropdown .account-reservations:visited {
  color: #1a1a1a !important;
  text-decoration: none;
}

.nav-item-account .account-dropdown .account-reservations span {
  color: #1a1a1a !important;
}

.nav-item-account .account-dropdown .account-reservations svg {
  stroke: #1a1a1a !important;
}

.nav-item-account .account-dropdown .account-reservations:hover {
  background: rgba(161, 137, 97, 0.1);
}

/* --- Reservations Page --- */
.reservations-hero {
  background: linear-gradient(165deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.reservations-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-orange), transparent);
}

.reservations-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--light-orange);
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.reservations-hero p {
  color: var(--grey-orange);
  font-size: 1.05rem;
  opacity: 0.85;
}

.reservations-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.reservations-container {
  animation: fadeInUp 0.6s ease-out;
}

/* Empty State */
.reservations-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(161, 137, 97, 0.12);
  box-shadow: var(--shadow-md);
}

.reservations-empty-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-orange-warm) 100%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.reservations-empty-icon svg {
  width: 50px;
  height: 50px;
  stroke: var(--grey-orange);
}

.reservations-empty-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.reservations-empty-text {
  color: rgba(50, 64, 47, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.reservations-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 3rem;
  font-size: 0.9rem;
}

/* Reservations List (for when items exist in the future) */
.reservations-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Reservation Loading */
.reservations-loading {
  text-align: center;
  padding: 3rem 2rem;
  color: rgba(50, 64, 47, 0.6);
  font-style: italic;
}

/* Reservation Cards */
.reservation-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(161, 137, 97, 0.12);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.reservation-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(161, 137, 97, 0.25);
}

.reservation-card-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.reservation-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.reservation-card-info {
  flex: 1;
  min-width: 0;
}

.reservation-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 0.25rem;
}

.reservation-card-date {
  font-size: 0.85rem;
  color: rgba(50, 64, 47, 0.6);
}

.reservation-card-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.reservation-btn {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reservation-btn-view {
  background: var(--light-orange);
  color: var(--dark-green);
  border: 1.5px solid rgba(161, 137, 97, 0.2);
}

.reservation-btn-view:hover {
  background: rgba(161, 137, 97, 0.1);
  border-color: var(--grey-orange);
}

.reservation-btn-cancel {
  background: none;
  color: #c4453f;
  border: 1.5px solid rgba(196, 69, 63, 0.2);
}

.reservation-btn-cancel:hover {
  background: rgba(196, 69, 63, 0.08);
  border-color: #c4453f;
}

/* View Reservation Modal */
.res-view-modal {
  max-width: 480px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.res-view-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.res-view-meta-item {
  padding: 0.35rem 0.75rem;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.15);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dark-green);
}

.res-view-list {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 360px;
  padding-right: 0.5rem;
}

.res-view-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  background: var(--light-orange);
  border: 1px solid rgba(161, 137, 97, 0.1);
  border-radius: var(--radius-sm);
}

.res-view-item-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.1);
}

.res-view-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-view-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.res-view-item-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--dark-green);
}

.res-view-item-qty {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-orange);
}

/* Cancel confirm button (red variant) */
.res-cancel-confirm-btn {
  background: linear-gradient(135deg, #c4453f 0%, #a33a35 100%) !important;
  box-shadow: 0 4px 20px rgba(196, 69, 63, 0.25) !important;
}

.res-cancel-confirm-btn:hover {
  box-shadow: 0 8px 30px rgba(196, 69, 63, 0.4) !important;
}

/* Success Notification Toast */
.res-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-green);
  color: var(--light-orange);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}

.res-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.res-notification-icon {
  width: 24px;
  height: 24px;
  background: var(--grey-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .reservations-hero h1 {
    font-size: 2rem;
  }

  .reservations-content {
    padding: 2.5rem 1.2rem 4rem;
  }

  .reservations-empty {
    padding: 3rem 1.5rem;
  }

  .reservations-empty-title {
    font-size: 1.5rem;
  }

  .reservations-empty-text {
    font-size: 0.95rem;
  }

  .reservation-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
  }

  .reservation-card-actions {
    width: 100%;
  }

  .reservation-btn {
    flex: 1;
    text-align: center;
  }
}

/* --- Shipping Cutoff Banner + Countdown --- */
.ship-cutoff {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.ship-cutoff-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green-light) 100%);
  border: 1px solid rgba(161, 137, 97, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md, 0 10px 40px rgba(0, 0, 0, 0.12));
  position: relative;
  overflow: hidden;
}

.ship-cutoff-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--grey-orange-light), var(--grey-orange-dark));
}

.ship-cutoff-info {
  flex: 1 1 320px;
  min-width: 260px;
}

.ship-cutoff-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-orange-light);
  margin-bottom: 0.75rem;
}

.ship-cutoff-badge svg {
  width: 16px;
  height: 16px;
}

.ship-cutoff-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.ship-cutoff-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(250, 242, 233, 0.82);
  margin: 0;
}

.ship-cutoff-text strong {
  color: var(--grey-orange-light);
  font-weight: 600;
}

.ship-cutoff-timer {
  flex: 0 0 auto;
  text-align: center;
}

.ship-cutoff-timer-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-orange-light);
  margin-bottom: 0.6rem;
}

.ship-cutoff-clock {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.ship-cutoff-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
  padding: 0.7rem 0.4rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(161, 137, 97, 0.3);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(2px);
}

.ship-cutoff-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.ship-cutoff-unit-label {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-orange-light);
}

@media (max-width: 720px) {
  .ship-cutoff {
    padding: 0 1.2rem;
    margin: 1.5rem auto;
  }

  .ship-cutoff-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.6rem 1.5rem;
  }

  .ship-cutoff-timer {
    width: 100%;
  }

  .ship-cutoff-clock {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .ship-cutoff-unit {
    min-width: 0;
    flex: 1;
  }

  .ship-cutoff-num {
    font-size: 1.4rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Setup Guard Modal — License key setup for first admin
   ══════════════════════════════════════════════════════════════════════════════ */

.setup-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

.setup-modal-backdrop[hidden] {
  display: none;
}

body.setup-modal-open {
  overflow: hidden;
}

.setup-modal {
  width: 92%;
  max-width: 480px;
  background: #15171c;
  border: 1.5px solid var(--grey-orange);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.2rem;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(161, 137, 97, 0.1);
  animation: fadeInUp 0.4s ease-out;
  text-align: center;
}

.setup-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.setup-modal-icon {
  font-size: 2.8rem;
  line-height: 1;
}

.setup-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #f4f7fb;
  letter-spacing: -0.3px;
  margin: 0;
}

.setup-modal-lead {
  color: #a0a8b8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.setup-modal-notice {
  background: rgba(161, 137, 97, 0.08);
  border: 1px solid rgba(161, 137, 97, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
  text-align: left;
}

.setup-modal-notice p {
  color: #c4c8d1;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

.setup-notice-link {
  color: var(--grey-orange-light) !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.setup-notice-link:hover {
  color: #fff !important;
}

.setup-license-field {
  margin-bottom: 1.5rem;
  text-align: left;
}

.setup-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8a8f9e;
  margin-bottom: 0.6rem;
}

.setup-license-row {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(161, 137, 97, 0.3);
  transition: border-color var(--transition-fast);
}

.setup-license-row:focus-within {
  border-color: var(--grey-orange);
  box-shadow: 0 0 0 3px rgba(161, 137, 97, 0.15);
}

.setup-license-row input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: #1e2126;
  border: none;
  color: #f4f7fb;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
}

.setup-license-row input::placeholder {
  color: #5a5f6e;
}

.setup-license-row input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.setup-submit-btn {
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
}

.setup-submit-btn:hover {
  background: linear-gradient(135deg, var(--grey-orange-light) 0%, var(--grey-orange) 100%);
}

.setup-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.setup-feedback {
  margin-top: 0.7rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.5;
}

.setup-feedback[hidden] {
  display: none;
}

.setup-feedback--error {
  background: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.3);
  color: #f87171;
}

.setup-feedback--success {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.3);
  color: #68d391;
}

.setup-feedback a {
  color: #a89fff;
  font-weight: 700;
  text-decoration: underline;
}

.setup-modal-note {
  color: #6b7185;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.setup-admin-btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  background: transparent;
  border: 1.5px solid var(--grey-orange);
  border-radius: var(--radius-sm);
  color: var(--grey-orange);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.setup-admin-btn:hover {
  background: var(--grey-orange);
  color: #fff;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ── Footer (Arctic guard-compatible) ─────────────────────────────────────── */

#site-footer .footer {
  background: var(--dark-green);
  padding: 1.2rem 2rem;
  text-align: center;
}

#site-footer .footer .shell {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#site-footer .footer .shell span {
  color: rgba(250, 242, 233, 0.6);
  font-size: 0.82rem;
}

#site-footer .footer .shell a.link {
  color: var(--grey-orange-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

#site-footer .footer .shell a.link:hover {
  color: #fff;
}

#site-footer .footer .shell b {
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════════════════
   Support Widget — Floating Bubble + Modal
   ═══════════════════════════════════════════════════════════════════════════ */

/* Floating Action Button */
.support-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(161, 137, 97, 0.4);
  transition: all var(--transition-smooth);
}

.support-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 30px rgba(161, 137, 97, 0.5);
}

.support-fab:active {
  transform: scale(1.02);
}

/* Overlay */
.support-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.support-overlay.active {
  display: flex;
}

/* Modal */
.support-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease-out;
}

.support-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: rgba(50, 64, 47, 0.35);
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1;
}

.support-modal-close:hover {
  color: var(--dark-green);
}

.support-modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.support-modal-icon {
  font-size: 1.8rem;
}

.support-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-green);
}

.support-modal-subtitle {
  color: rgba(50, 64, 47, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Form */
.support-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.support-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.support-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.support-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-form-group input,
.support-form-group select,
.support-form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(161, 137, 97, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--light-orange);
  color: var(--dark-green);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.support-form-group input:focus,
.support-form-group select:focus,
.support-form-group textarea:focus {
  outline: none;
  border-color: var(--grey-orange);
  box-shadow: 0 0 0 3px rgba(161, 137, 97, 0.1);
}

.support-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.support-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a18961' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Buttons */
.support-form-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.support-btn {
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
}

.support-btn-cancel {
  background: transparent;
  color: rgba(50, 64, 47, 0.6);
  border: 1.5px solid rgba(50, 64, 47, 0.15);
}

.support-btn-cancel:hover {
  background: rgba(50, 64, 47, 0.05);
  color: var(--dark-green);
  border-color: rgba(50, 64, 47, 0.3);
}

.support-btn-confirm {
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.support-btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(161, 137, 97, 0.4);
}

.support-btn-confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success Modal */
.support-modal-success {
  text-align: center;
  padding: 3rem 2.5rem;
}

.support-success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--grey-orange) 0%, var(--grey-orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.support-modal-success .support-modal-title {
  margin-bottom: 0.75rem;
}

.support-success-text {
  color: rgba(50, 64, 47, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.support-btn-done {
  margin: 0 auto;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .support-fab {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }

  .support-modal {
    padding: 1.8rem;
    max-width: 100%;
  }

  .support-form-row {
    grid-template-columns: 1fr;
  }

  .support-form-actions {
    flex-direction: column-reverse;
  }

  .support-btn {
    width: 100%;
    text-align: center;
  }
}


/* Read-only support fields (auto-filled from account) */
.support-form-group input[readonly] {
  background: rgba(161, 137, 97, 0.06);
  border-color: rgba(161, 137, 97, 0.12);
  color: var(--dark-green);
  cursor: default;
  opacity: 0.85;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FAQ Section
   ═══════════════════════════════════════════════════════════════════════════ */

.faq-section {
  padding: 6rem 2rem;
  background: var(--light-orange);
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(161, 137, 97, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(161, 137, 97, 0.25);
}

.faq-item[open] {
  border-color: rgba(161, 137, 97, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-green);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: '';
}

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--grey-orange);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}

.faq-question:hover {
  background: rgba(161, 137, 97, 0.03);
}

.faq-item[open] .faq-question {
  background: rgba(161, 137, 97, 0.04);
  border-bottom: 1px solid rgba(161, 137, 97, 0.08);
}

.faq-answer {
  padding: 1.2rem 1.5rem 1.4rem;
  animation: fadeIn 0.25s ease-out;
}

.faq-answer p {
  color: rgba(50, 64, 47, 0.78);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1.5rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 1rem 1.2rem;
  }

  .faq-answer {
    padding: 1rem 1.2rem 1.2rem;
  }
}
