.navbar a,
.footer a,
.mobile-nav a { text-decoration: none; }
.navbar ul,
.footer ul,
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--copper-gradient);
  background-size: 200% 100%;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none;
}
.btn-primary:hover::after {
  animation: shimmer 0.6s ease forwards;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(184,115,51,0.4), 0 0 60px rgba(184,115,51,0.15);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: scale(0.97);
}
.btn-primary:focus { outline: none; box-shadow: 0 0 30px rgba(184,115,51,0.4); }

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn-ghost:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(184,115,51,0.25);
}
.btn-ghost:hover::before {
  opacity: 1;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(18,18,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(184,115,51,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo:hover { opacity: 0.85; }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark-body);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper-gradient);
  transition: width 0.2s ease;
}
.nav-links a:hover {
  color: var(--text-dark-heading);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--text-dark-heading);
}
.nav-links a.active::after {
  width: 100%;
}
.nav-cart {
  position: relative;
  color: var(--text-dark-body);
  font-size: 20px;
  transition: color 0.3s ease;
  cursor: pointer;
}
.nav-cart:hover {
  color: var(--text-dark-heading);
}
.nav-cart .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: var(--copper-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark-heading);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18,18,18,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-nav-links li a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 28px;
  color: var(--text-dark-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.mobile-nav-links li a:hover {
  color: var(--copper);
}

body.nav-open {
  overflow: hidden;
}

.footer {
  background: var(--dark-deepest);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-brand .nav-logo img {
  height: 32px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark-muted);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark-heading);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-dark-muted);
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--copper);
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-muted);
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--copper);
  color: var(--copper);
  box-shadow: 0 0 16px rgba(184,115,51,0.2);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-dark-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-dark-muted);
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: var(--copper);
}

.vanta-dark-section {
  background: var(--dark-bg);
  color: var(--text-dark-body);
}
.vanta-light-section {
  background: var(--light-bg);
  color: var(--text-light-body);
}

.curve-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.curve-divider.dark-to-light {
  background: var(--dark-bg);
  margin-bottom: -2px;
}
.curve-divider.dark-to-light svg {
  display: block;
  width: 100%;
}
.curve-divider.transparent-to-light {
  margin-bottom: -2px;
  margin-top: -30px;
}
.curve-divider.transparent-to-light svg {
  display: block;
  width: 100%;
}
.curve-divider.light-to-dark {
  background: var(--light-bg);
  margin-bottom: -2px;
  margin-top: 0;
}
.curve-divider.light-to-dark svg {
  display: block;
  width: 100%;
}

.arc-divider {
  position: relative;
  line-height: 0;
}
.arc-divider.dark-to-light, .arc-divider.light-to-dark {
  margin-top: -1px;
  margin-bottom: -1px;
}
.arc-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.newsletter {
  background: var(--dark-bg);
  padding: 100px 0;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  color: var(--text-dark-heading);
  margin-bottom: 16px;
}
.newsletter p {
  margin-bottom: 36px;
  color: var(--text-dark-body);
}
.newsletter .wpforms-container {
  max-width: 480px !important;
  margin: 0 auto !important;
}
.newsletter .wpforms-form {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.newsletter .wpforms-field-container {
  flex: 1;
}
.newsletter .wpforms-field {
  margin: 0;
  padding: 0;
}
.newsletter .wpforms-field-label,
.newsletter .wpforms-field-sublabel-after,
.newsletter .wpforms-field-description,
.newsletter .wpforms-error-noscript {
  display: none;
}
.newsletter .wpforms-field input[type="email"] {
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-right: none;
  border-radius: 2px 0 0 2px;
  color: var(--text-dark-heading);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  height: auto;
  width: 100%;
  box-sizing: border-box;
}
.newsletter .wpforms-field input[type="email"]::placeholder {
  color: var(--text-dark-muted);
}
.newsletter .wpforms-field input[type="email"]:focus {
  border-color: var(--copper);
  box-shadow: 0 0 20px rgba(184,115,51,0.1);
}
.newsletter label.wpforms-error,
.newsletter em.wpforms-error,
.newsletter .wpforms-error-container {
  position: absolute;
  bottom: -24px;
  left: 0;
  font-size: 12px;
  color: #e74c3c;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  font-style: normal;
}
.newsletter .wpforms-field {
  position: relative;
}
.newsletter .wpforms-submit-container .wpforms-submit-spinner,
.newsletter .wpforms-hidden {
  display: none !important;
}
.newsletter .wpforms-submit-container {
  margin: 0;
  padding: 0;
}
.newsletter .wpforms-submit-container button[type="submit"] {
  border-radius: 0 2px 2px 0;
  padding: 16px 28px;
  white-space: nowrap;
  border: none;
  background: var(--copper-gradient);
  background-size: 200% 100%;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  height: 100%;
  min-width: 120px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.newsletter .wpforms-submit-container button[type="submit"]:hover {
  box-shadow: 0 0 30px rgba(184,115,51,0.4), 0 0 60px rgba(184,115,51,0.15);
  transform: translateY(-2px);
}
.newsletter .wpforms-submit-container button[type="submit"]:active {
  transform: scale(0.97);
}
.newsletter .wpforms-submit-container button[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 30px rgba(184,115,51,0.4);
}
.newsletter .wpforms-confirmation-container-full,
.newsletter .wpforms-confirmation-container {
  background: transparent !important;
  border: none !important;
  color: var(--text-dark-heading) !important;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 20px 0 !important;
}
.newsletter .wpforms-confirmation-container-full p,
.newsletter .wpforms-confirmation-container p {
  color: var(--text-dark-heading) !important;
  margin: 0;
}

.instagram {
  background: var(--dark-bg);
  padding: 80px 0 0;
}
.instagram .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.instagram h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 32px;
  color: var(--text-dark-heading);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.instagram-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item:hover img {
  transform: scale(1.08);
}
.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184,115,51,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instagram-item:hover::after {
  opacity: 1;
}
.instagram-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 24px;
}
.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.testimonials {
  background: var(--dark-charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-slider {
  position: relative;
  min-height: 250px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  background: var(--copper-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--text-dark-heading);
  line-height: 1.5;
  margin-bottom: 24px;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(184,115,51,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active {
  background: var(--copper);
  box-shadow: 0 0 12px rgba(184,115,51,0.4);
}
.testimonial-glass {
  position: absolute;
  inset: -40px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 16px;
  z-index: -1;
}

.product-card {
  background: var(--light-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.product-card-img {
  display: block;
  width: 100%;
  height: 65%;
  overflow: hidden;
  position: relative;
}
.product-card.featured .product-card-img {
  height: 70%;
  width: 80%;
  margin-left: 10%;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 24px;
}
.product-card.featured .product-card-body {
  padding: 32px;
}
.product-card-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-light-heading);
  margin-bottom: 6px;
}
.product-card.featured .product-card-name {
  font-size: 24px;
}
.product-card-price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light-heading);
  margin-bottom: 12px;
}
.product-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.product-card:hover .product-card-meta {
  opacity: 1;
  transform: translateY(0);
}
.flavor-pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--light-border);
  color: var(--text-light-muted);
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}
.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  background: rgba(184,115,51,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184,115,51,0.25);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}

.category-card {
  position: relative;
  display: block;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.category-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
  transition: background 0.3s ease;
}
.category-card:hover .category-card-img {
  transform: scale(1.05);
}
.category-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%);
}
.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
}
.category-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-dark-heading);
  margin-bottom: 12px;
}
.category-card .btn-ghost {
  padding: 10px 24px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.category-card:hover .btn-ghost {
  opacity: 1;
  transform: translateY(0);
}

.stats {
  background: var(--dark-charcoal);
  padding: 100px 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.stats-grid--1 { grid-template-columns: 1fr; max-width: 300px; }
.stats-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
.stats-grid--4 { grid-template-columns: repeat(4, 1fr); max-width: 1100px; }
.stat-card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(184,115,51,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(184,115,51,0.1);
  border-color: rgba(184,115,51,0.15);
}
.stat-card:hover::before {
  opacity: 1;
}
.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184,115,51,0.1);
  border: 1px solid rgba(184,115,51,0.6);
  color: var(--copper);
  position: relative;
  z-index: 1;
}
.stat-icon svg {
  width: 32px;
  height: 32px;
}
.stat-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark-heading);
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}
.stat-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  color: #888;
  position: relative;
  z-index: 1;
}

.founder-quote {
  background: var(--light-bg);
  padding: 100px 0 120px;
  position: relative;
}
.founder-quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.founder-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(184,115,51,0.15);
}
.founder-text {
  position: relative;
}
.founder-quote-mark {
  font-family: var(--font-heading);
  font-size: 100px;
  line-height: 0.8;
  background: var(--copper-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}
.founder-text blockquote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--text-light-heading);
  line-height: 1.5;
  margin-bottom: 28px;
}
.founder-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-light-heading);
}
.founder-title {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.commitment {
  background: var(--dark-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.commitment-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.commitment-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.commitment-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.commitment-img:first-child {
  margin-left: 40px;
}
.commitment-img:last-child {
  margin-right: 40px;
}
.commitment-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.commitment-img:hover img {
  transform: scale(1.03);
}
.commitment-text h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 42px;
  color: var(--text-dark-heading);
  margin-bottom: 20px;
  line-height: 1.2;
}
.commitment-text > p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.commitment-item.revealed {
  opacity: 1;
  transform: translateX(0);
}
.commitment-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(184,115,51,0.12);
  border: 1px solid rgba(184,115,51,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.commitment-check svg {
  width: 14px;
  height: 14px;
}
.commitment-item-text h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-dark-heading);
  margin-bottom: 4px;
  margin-top: 4px;/
}
.commitment-item-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark-body);
}

/* Smash Balloon Instagram Feed — dark theme overrides */
.instagram-grid-wrapper { padding: 0; }
.instagram-grid-wrapper #sb_instagram { background: transparent !important; padding: 0 !important; }
.instagram-grid-wrapper #sb_instagram .sb_instagram_header { display: none; }
.instagram-grid-wrapper #sbi_images { padding: 0 !important; }

/* WooCommerce notices — fixed toast at top */
.woocommerce-notices-wrapper:not(:empty) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  animation: vanta-toast-in 0.4s ease-out;
}

.admin-bar .woocommerce-notices-wrapper:not(:empty) {
  top: 32px;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .wc-block-components-notice-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  border: none;
  border-radius: 0;
  background: var(--dark-bg, #1C1C1C);
  color: var(--text-dark-heading, #F0E6D3);
}

.woocommerce-notices-wrapper .wc-block-components-notice-banner .wc-block-components-notice-banner__content {
  flex: 1;
}

.woocommerce-notices-wrapper .wc-block-components-notice-banner .wc-block-components-notice-banner__content a {
  color: var(--copper, #B87333);
  text-decoration: none;
  font-weight: 600;
}

.woocommerce-notices-wrapper .wc-block-components-notice-banner .wc-block-components-notice-banner__content a:hover {
  text-decoration: underline;
}

.woocommerce-notices-wrapper .wc-block-components-notice-banner svg {
  fill: var(--copper, #B87333);
  flex-shrink: 0;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background: var(--dark-bg, #1C1C1C);
  color: var(--text-dark-heading, #F0E6D3);
}

.woocommerce-notices-wrapper .woocommerce-message::before {
  color: var(--copper, #B87333);
}

.woocommerce-notices-wrapper .woocommerce-message a {
  color: var(--copper, #B87333);
  text-decoration: none;
  font-weight: 600;
  margin-left: auto;
}

.woocommerce-notices-wrapper .woocommerce-message a:hover {
  text-decoration: underline;
}

.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .wc-block-components-notice-banner.is-error {
  background: #4a1c1c;
  color: #f8d7da;
}

.vanta-toast-close {
  background: none;
  border: none;
  color: var(--text-dark-heading, #F0E6D3);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 16px;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-left: auto;
}

.vanta-toast-close:hover {
  opacity: 1;
}

@keyframes vanta-toast-in {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
