:root {
  --primary: #ff9800;
  --primary-dark: #e68a00;
  --accent: #ffb74d;
  --foreground: #1a1512;
  --background: #faf8f5;
  --muted: #f5f0eb;
  --muted-foreground: #6b5e52;
  --border: #e8e0d8;
  --card: #ffffff;
  --destructive: #e53935;
  --shadow-sm: 0 1px 2px rgba(255,152,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(255,152,0,0.1), 0 2px 4px -2px rgba(255,152,0,0.08);
  --shadow-lg: 0 10px 15px -3px rgba(255,152,0,0.1), 0 4px 6px -4px rgba(255,152,0,0.08);
  --shadow-xl: 0 20px 25px -5px rgba(255,152,0,0.1), 0 8px 10px -6px rgba(255,152,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Gradient text */
.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1.5;
}
.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { box-shadow: var(--shadow-xl); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid rgba(255,152,0,0.3);
}
.btn-outline:hover { background: rgba(255,152,0,0.05); }
.btn-ghost {
  background: transparent;
  color: var(--foreground);
  border: none;
}
.btn-ghost:hover { background: rgba(0,0,0,0.05); }
.btn-lg { padding: 0.75rem 1.75rem; font-size: 1rem; }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-icon { padding: 0.5rem; width: 2.25rem; height: 2.25rem; }
.btn-icon-sm { padding: 0.25rem; width: 2rem; height: 2rem; }
.btn-white-outline {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
}

/* Cards */
.card {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-hover:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}
.card-no-border { border: none; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.badge-primary { background: rgba(255,152,0,0.15); color: var(--primary); }
.badge-accent { background: rgba(255,183,77,0.15); color: var(--accent); }
.badge-white { background: rgba(255,255,255,0.2); color: white; }

/* Section headings */
.section-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .section-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 3rem; } }
.section-subheading {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Icon boxes */
.icon-box {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: var(--shadow-md);
}
.icon-box-light {
  background: rgba(255,152,0,0.1);
  color: var(--primary);
}
.icon-box-lg { width: 3.5rem; height: 3.5rem; border-radius: 1rem; }
.icon-box-xl { width: 6rem; height: 6rem; border-radius: 9999px; }

/* Dividers */
.gradient-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,152,0,0.3), transparent);
  margin: 2rem 0;
}

/* Form elements */
.form-input, .form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: var(--card);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,152,0,0.15);
}
.form-textarea { resize: vertical; min-height: 8rem; }
.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}
.form-error { color: var(--destructive); font-size: 0.75rem; margin-top: 0.25rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes gentleRotate {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}
@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes gentleScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animate-left {
  transform: translateX(-40px);
}
.animate-on-scroll.animate-right {
  transform: translateX(40px);
}
.animate-on-scroll.animate-scale {
  transform: scale(0.85);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

.animate-gentle-rotate { animation: gentleRotate 3s ease-in-out infinite; }
.animate-gentle-bounce { animation: gentleBounce 2.5s ease-in-out infinite; }
.animate-gentle-scale { animation: gentleScale 2s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse 4s ease-in-out infinite; }

/* Hero Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  max-height: 520px;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}
.carousel-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent, transparent);
}
.carousel-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
}
@media (min-width: 640px) { .carousel-content { padding: 3rem; } }
@media (min-width: 1024px) { .carousel-content { padding: 5rem; } }
.carousel-dot {
  width: 0.75rem; height: 0.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active {
  width: 2rem;
  background: linear-gradient(to right, var(--primary), var(--accent));
}
.carousel-dot:hover { background: rgba(255,255,255,0.7); }
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-nav:hover { background: rgba(255,255,255,0.3); }
.carousel-nav-prev { left: 1rem; }
.carousel-nav-next { right: 1rem; }

/* FAQ Accordion */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-answer.open {
  max-height: 500px;
  opacity: 1;
}
.faq-chevron {
  transition: transform 0.3s;
}
.faq-chevron.open {
  transform: rotate(180deg);
}

/* Header */
.header {
  background: linear-gradient(to right, #fff7ed, #ffffff, #fff7ed);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: hidden;
}
.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: between;
  height: 5rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 5rem;
  z-index: 30;
  background: rgba(245,240,235,0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.75rem;
}
.nav-link {
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
  color: var(--foreground);
}
.nav-link:hover { background: rgba(0,0,0,0.05); }
.nav-link.active { background: var(--muted); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.375rem;
  right: 0.375rem;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 9999px;
}
.nav-category {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  border-radius: 0.375rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-category:hover { color: var(--foreground); background: rgba(0,0,0,0.05); }
.search-bar {
  display: flex;
  align-items: center;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.search-bar:focus-within {
  border-color: rgba(255,152,0,0.5);
  box-shadow: 0 0 0 2px rgba(255,152,0,0.1);
}
.search-input {
  height: 2rem;
  width: 6rem;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  padding: 0 0.25rem 0 1rem;
  outline: none;
  font-family: inherit;
}
@media (min-width: 640px) { .search-input { width: 10rem; } }
.search-btn {
  height: 2rem; width: 2rem;
  border-radius: 0 9999px 9999px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: background 0.2s;
}
.search-btn:hover { background: rgba(255,152,0,0.1); }

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
}
.footer-bg {
  background: linear-gradient(135deg, #2d2520 0%, #1a1512 100%);
}
.footer-glow {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.04;
  pointer-events: none;
}
.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ede0d4;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  display: inline-block;
  border-bottom: 2px solid rgba(255,152,0,0.4);
}
.footer-link {
  font-size: 0.875rem;
  color: #a89888;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem 0;
  transition: all 0.2s;
  cursor: pointer;
}
.footer-link:hover { color: #c4b5a4; }
.footer-link:hover .footer-link-arrow { opacity: 1; transform: translateX(0); }
.footer-link:hover .footer-link-text { transform: translateX(0.25rem); }
.footer-link-arrow {
  width: 0.75rem; height: 0.75rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: all 0.2s;
  flex-shrink: 0;
}
.footer-link-text { transition: transform 0.2s; }
.footer-contact-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,152,0,0.1);
  box-shadow: 0 0 10px rgba(255,152,0,0.06);
}
.footer-contact-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.footer-brand-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,152,0,0.1);
  box-shadow: 0 0 12px rgba(255,152,0,0.08);
}
.footer-brand-icon svg { width: 1rem; height: 1rem; color: var(--primary); }

/* Ecwid overrides */
.ecwid-popup-overlay,
.ecwid-lightbox-background,
.ecwid-productBrowser-overlayWrap,
div[class*="ecwid-popup"],
div[class*="lightbox-overlay"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 1.25rem; height: 1.25rem;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.3s ease;
}

/* Toast notification */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
}
.toast {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-xl);
  animation: fadeInUp 0.3s ease;
  max-width: 24rem;
  margin-top: 0.5rem;
}
.toast-title { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }
.toast-desc { font-size: 0.8125rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.toast-error { border-left: 4px solid var(--destructive); }

/* Utility */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.bg-primary { background: var(--primary); }
.bg-muted { background: var(--muted); }

/* Hero section backgrounds */
.hero-dark {
  position: relative;
  background: var(--foreground);
  overflow: hidden;
  padding: 5rem 1rem;
}
.hero-dark .hero-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.1;
}

/* Loading spinner */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; }

/* Responsive grid helpers */
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .sm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); } .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .lg-grid-cols-3 { grid-template-columns: repeat(3, 1fr); } .lg-grid-cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* Footer responsive grid */
.footer-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 4fr 3fr 3fr 2fr; } }
.footer-bottom-bar { flex-direction: column; }
@media (min-width: 768px) { .footer-bottom-bar { flex-direction: row; } }

/* Responsive helpers */
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }
@media (min-width: 1024px) { .nav-categories-desktop { display: flex !important; } }

/* Policy page styles */
.policy-hero {
  position: relative;
  background: var(--foreground);
  overflow: hidden;
  padding: 3rem 1rem;
  text-align: center;
}
.policy-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 2rem 0 1rem;
}
.policy-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1.5rem 0 0.75rem;
}
.policy-content p, .policy-content li {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.policy-content ul, .policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Guide page styles */
.guide-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.guide-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.guide-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1.5rem 0 0.75rem;
}
.guide-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.guide-content ul, .guide-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}
.guide-content li { margin-bottom: 0.5rem; line-height: 1.6; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { transition: none; opacity: 1; transform: none; }
  .carousel-slide { transition: opacity 0.1s; transform: none !important; }
  .animate-gentle-rotate, .animate-gentle-bounce, .animate-gentle-scale, .animate-pulse-glow { animation: none; }
}
