/* ========================================
   Lombriz Espacial - Static Site Styles
   Coral-Orange Palette (matching logo)
   ======================================== */

/* ---- CSS Variables ---- */
:root {
  --brand-dark: #4A2512;
  --brand-primary: #FF7F50;
  --brand-light: #FFB088;
  --brand-warm: #6B4226;
  --brand-cream: #FFF0E8;
  --brand-warm-white: #FFFAF6;
  --brand-primary-dark: #E5673D;
  --brand-primary-lighter: #FFD4C0;
  --border-color: #F0DDD0;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(74,37,18,0.06);
  --shadow-md: 0 4px 12px rgba(74,37,18,0.08);
  --shadow-lg: 0 8px 30px rgba(74,37,18,0.12);
  --shadow-xl: 0 16px 48px rgba(74,37,18,0.16);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--brand-dark);
  background-color: var(--brand-warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--white);
  border-color: var(--brand-primary);
}
.btn-primary:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  box-shadow: 0 4px 12px rgba(255,127,80,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: var(--white);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-flex2 {
  flex: 2;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--brand-dark);
  position: relative;
}

.icon-btn:hover {
  background: var(--brand-cream);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 640px) {
  .header-inner { height: 80px; }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .logo-img { width: 48px; height: 48px; }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.3s;
  color: var(--white);
}

.header.scrolled .logo-text {
  color: var(--brand-dark);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  color: rgba(255,255,255,0.9);
}

.nav-link:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.header.scrolled .nav-link {
  color: var(--brand-dark);
}

.header.scrolled .nav-link:hover {
  background: var(--brand-cream);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header:not(.scrolled) .icon-btn {
  color: var(--white);
}

.header:not(.scrolled) .icon-btn:hover {
  background: rgba(255,255,255,0.2);
}

.header.scrolled .icon-btn:hover {
  background: var(--brand-cream);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.mobile-menu-btn {
  display: inline-flex;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -288px;
  width: 288px;
  height: 100%;
  background: var(--white);
  z-index: 50;
  transition: right 0.3s ease;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mobile-menu-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--brand-dark);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: var(--brand-cream);
}

.mobile-cart-btn {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brand-cream);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(74,37,18,0.7), rgba(74,37,18,0.5), rgba(74,37,18,0.75));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-light);
  background: rgba(255,127,80,0.9);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,176,136,0.3);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3.5rem; }
}

@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}

.text-accent {
  color: var(--brand-light);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.5rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Sections ---- */
.section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section { padding: 6rem 0; }
}

.section-white {
  background: var(--brand-warm-white);
}

.section-cream {
  background: rgba(255,240,232,0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.text-left {
  text-align: left !important;
  justify-content: flex-start !important;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

.section-desc {
  color: rgba(107,66,38,0.8);
  max-width: 600px;
  margin: 0 auto;
}

.section-desc.text-left {
  margin: 0;
}

/* ---- Tabs ---- */
.tabs {
  margin-bottom: 2rem;
  text-align: center;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,240,232,0.8);
  border-radius: var(--radius-lg);
  padding: 0.25rem;
  margin: 0 auto;
  max-width: fit-content;
}

.tab-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--brand-warm);
}

.tab-btn:hover {
  color: var(--brand-dark);
}

.tab-btn.active {
  background: var(--brand-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ---- Products Grid ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,240,232,0.6);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(255,127,80,0.3);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255,240,232,0.3);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img-wrap img,
.product-card:focus-within .product-img-wrap img,
.product-img-wrap img:active {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(255,127,80,0.9);
  color: var(--white);
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.product-info {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .product-info { padding: 1rem; }
}

.product-name {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .product-name { font-size: 0.9375rem; }
}

.product-desc {
  font-size: 0.75rem;
  color: rgba(107,66,38,0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .product-desc { font-size: 0.8125rem; }
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
}

@media (min-width: 640px) {
  .product-price { font-size: 1.25rem; }
}

.product-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--brand-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

@media (min-width: 640px) {
  .product-add-btn { font-size: 0.8125rem; padding: 0.5rem 1rem; }
}

.product-add-btn:hover {
  background: var(--brand-primary-dark);
}

.product-add-btn.added {
  background: #16a34a;
}

/* ---- Two Column Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.order-2-lg { order: 2; }
.order-1-lg { order: 1; }

@media (min-width: 1024px) {
  .order-2-lg { order: 2; }
  .order-1-lg { order: 1; }
}

/* ---- Image Card ---- */
.image-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.image-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(74,37,18,0.6), transparent);
  color: var(--white);
}

.image-overlay-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.image-overlay-text {
  font-size: 0.8125rem;
  opacity: 0.9;
}

/* ---- Info Cards ---- */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(255,240,232,0.6);
}

.info-card svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.info-card-text {
  font-size: 0.6875rem;
  color: rgba(107,66,38,0.7);
}

/* ---- Forms ---- */
.form {
  max-width: 420px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(255,127,80,0.15);
}

.form-input::placeholder {
  color: rgba(107,66,38,0.4);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.form-hint {
  font-size: 0.6875rem;
  color: rgba(107,66,38,0.5);
  text-align: center;
  margin-top: 0.5rem;
}

.form-section-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

/* ---- Radio Cards ---- */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-group.horizontal {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid rgba(255,240,232,0.6);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--white);
}

.radio-card:hover {
  border-color: rgba(255,127,80,0.3);
}

.radio-card.active {
  border-color: var(--brand-primary);
  background: rgba(255,240,232,0.5);
}

.radio-input {
  accent-color: var(--brand-primary);
}

.radio-sm {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  cursor: pointer;
}

.radio-sm input {
  accent-color: var(--brand-primary);
}

/* ---- Success Card ---- */
.success-card {
  background: rgba(255,127,80,0.1);
  border: 1px solid rgba(255,127,80,0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
}

.success-card svg {
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.success-text {
  font-size: 0.8125rem;
  color: rgba(107,66,38,0.7);
  margin-bottom: 1rem;
}

/* ---- Blog Grid ---- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,240,232,0.6);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(255,127,80,0.3);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(255,240,232,0.3);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-img img,
.blog-card:focus-within .blog-card-img img,
.blog-card-img img:active {
  transform: scale(1.1);
}

.blog-card-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(255,127,80,0.9);
  color: var(--white);
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.blog-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  color: rgba(107,66,38,0.6);
  margin-bottom: 0.5rem;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
  flex: 1;
}

@media (min-width: 640px) {
  .blog-card-title { font-size: 0.9375rem; }
}

.blog-card-excerpt {
  font-size: 0.6875rem;
  color: rgba(107,66,38,0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .blog-card-excerpt { font-size: 0.8125rem; }
}

.blog-card-link {
  font-size: 0.8125rem;
  color: var(--brand-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.3s;
}

.blog-card:hover .blog-card-link {
  gap: 0.5rem;
}

.text-center {
  text-align: center;
}

/* ---- Social Section ---- */
.social-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(255,240,232,0.6);
  transition: var(--transition);
}

.social-link-card:hover {
  border-color: rgba(255,127,80,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.youtube-bg { background: #FEE2E2; color: #EF4444; }
.instagram-bg { background: #FCE7F3; color: #EC4899; }
.facebook-bg { background: #DBEAFE; color: #3B82F6; }
.tiktok-bg { background: #F3F4F6; color: #374151; }

.social-link-info h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.social-link-info p {
  font-size: 0.6875rem;
  color: rgba(107,66,38,0.6);
}

.social-arrow {
  margin-left: auto;
  color: rgba(107,66,38,0.3);
  transition: color 0.3s;
}

.social-link-card:hover .social-arrow {
  color: var(--brand-primary);
}

.social-cta {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: rgba(255,127,80,0.05);
  border: 1px solid rgba(255,127,80,0.1);
  font-size: 0.8125rem;
  color: rgba(107,66,38,0.7);
  text-align: center;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- Footer ---- */
.footer {
  background: var(--brand-dark);
  color: var(--white);
}

.footer-shipping {
  background: rgba(255,127,80,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 0;
}

.shipping-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.9);
}

.shipping-notice svg {
  color: var(--brand-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-brand { grid-column: span 1; }
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
}

.footer-social-icon:hover {
  background: rgba(255,176,136,0.3);
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.flex-items-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.payment-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-card {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.payment-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.payment-detail {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.6);
}

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

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1.5rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ---- Drawer (Cart) ---- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--white);
  z-index: 51;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.drawer.open {
  right: 0;
}

.drawer-header {
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.drawer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: calc(100% - 40px);
}

.drawer-title svg {
  color: var(--brand-primary);
}

.drawer-subtitle {
  font-size: 0.8125rem;
  color: rgba(107,66,38,0.7);
  width: 100%;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: var(--transition);
  color: var(--brand-warm);
}

.drawer-close:hover {
  background: var(--brand-cream);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 2rem 1rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  color: rgba(107,66,38,0.5);
}

.cart-empty svg {
  margin-bottom: 1rem;
  color: var(--brand-cream);
}

.cart-empty p {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  background: rgba(255,240,232,0.3);
  border: 1px solid rgba(255,240,232,0.6);
  margin-bottom: 0.75rem;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .cart-item-img { width: 80px; height: 80px; }
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-top: 2px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
  color: var(--brand-dark);
}

.qty-btn:hover {
  background: var(--brand-cream);
}

.cart-item-qty span {
  font-size: 0.8125rem;
  font-weight: 600;
  width: 24px;
  text-align: center;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #f87171;
  transition: var(--transition);
  margin-left: auto;
  font-size: 0.75rem;
}

.cart-item-remove:hover {
  background: #FEF2F2;
  color: #dc2626;
}

.drawer-footer {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

.delivery-zone {
  margin-bottom: 1rem;
}

.delivery-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.5rem 0;
}

.cart-totals {
  margin-bottom: 1rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(107,66,38,0.8);
  padding: 0.25rem 0;
}

.cart-total-row.total {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.cart-actions {
  display: flex;
  gap: 0.5rem;
}

/* ---- Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 61;
  width: calc(100vw - 2rem);
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-lg {
  max-width: 720px;
}

.modal-header {
  padding: 1.25rem;
  position: relative;
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-right: 2rem;
}

.modal-title svg {
  color: var(--brand-primary);
}

.modal-subtitle {
  font-size: 0.8125rem;
  color: rgba(107,66,38,0.7);
  margin-top: 0.25rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--brand-warm);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--brand-cream);
}

.modal-body {
  padding: 0 1.25rem 1.25rem;
}

/* ---- Checkout Summary ---- */
.checkout-summary {
  background: rgba(255,240,232,0.3);
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.checkout-summary .cart-total-row {
  font-size: 0.8125rem;
}

.checkout-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(107,66,38,0.8);
  padding: 0.125rem 0;
}

/* ---- Order Confirmation ---- */
.confirm-icon {
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.confirm-order-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
}

.confirm-text {
  font-size: 0.875rem;
  color: rgba(107,66,38,0.7);
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.confirm-details {
  background: rgba(255,240,232,0.3);
  border-radius: var(--radius-xl);
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 0.8125rem;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ---- Blog Modal ---- */
.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(107,66,38,0.6);
  margin-bottom: 1rem;
}

.blog-modal-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  max-height: 300px;
  object-fit: cover;
}

.blog-modal-content {
  font-size: 0.875rem;
  color: var(--brand-warm);
  line-height: 1.8;
}

.blog-modal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-dark);
  margin: 1.5rem 0 0.75rem;
}

.blog-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--brand-dark);
  margin: 1.25rem 0 0.5rem;
}

.blog-modal-content p {
  margin-bottom: 0.75rem;
}

.blog-modal-content ul, .blog-modal-content ol {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.blog-modal-content li {
  margin-bottom: 0.375rem;
  list-style: disc;
}

.blog-modal-content ol li {
  list-style: decimal;
}

.blog-modal-content strong {
  color: var(--brand-dark);
  font-weight: 600;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 35;
  transition: var(--transition);
  animation: floatIn 0.5s ease 1s both;
}

@keyframes floatIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37,211,102,0.5);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- Toast ---- */
.toast-container {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: var(--brand-dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
  animation: toastIn 0.3s ease;
}

.toast.success {
  background: #16a34a;
}

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 1; /* FORCED VISIBLE */
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 1.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Custom Scrollbar ---- */
.drawer-body::-webkit-scrollbar,
.modal::-webkit-scrollbar,
.cart-items::-webkit-scrollbar {
  width: 6px;
}

.drawer-body::-webkit-scrollbar-track,
.modal::-webkit-scrollbar-track,
.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.drawer-body::-webkit-scrollbar-thumb,
.modal::-webkit-scrollbar-thumb,
.cart-items::-webkit-scrollbar-thumb {
  background-color: #e0c4b0;
  border-radius: 3px;
}

.drawer-body::-webkit-scrollbar-thumb:hover,
.modal::-webkit-scrollbar-thumb:hover,
.cart-items::-webkit-scrollbar-thumb:hover {
  background-color: #c4a891;
}

/* ---- Print Styles ---- */
@media print {
  .header, .whatsapp-float, .toast-container,
  .mobile-menu, .overlay, .drawer, .drawer-overlay,
  .modal, .modal-overlay {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .section {
    padding: 1rem 0;
  }

  body {
    background: white;
    color: black;
  }

  .confirm-modal {
    position: static;
    transform: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }
}

/* ---- Responsive Fixes ---- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .tab-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 1.5rem;
  left: auto;
  background-color: var(--brand-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ==================== WHATSAPP CHATBOT ==================== */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 85px;
  right: 1.5rem;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.whatsapp-chat-widget.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
  background: #25D366;
  color: #fff;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-chat-header-info svg {
  width: 24px;
  height: 24px;
}

.whatsapp-chat-header-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.whatsapp-chat-header-text p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.9;
}

.whatsapp-chat-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.whatsapp-chat-body {
  padding: 15px;
  background: #e5ddd5;
  height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whatsapp-message {
  background: #fff;
  padding: 10px 12px;
  border-radius: 0 8px 8px 8px;
  font-size: 0.875rem;
  max-width: 85%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  position: relative;
}

.whatsapp-message.user {
  background: #dcf8c6;
  border-radius: 8px 0 8px 8px;
  align-self: flex-end;
}

.whatsapp-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 5px;
}

.whatsapp-option-btn {
  background: #fff;
  border: 1px solid #25D366;
  color: #25D366;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8125rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-weight: 500;
}

.whatsapp-option-btn:hover {
  background: #25D366;
  color: #fff;
}

.whatsapp-chat-footer {
  padding: 15px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.whatsapp-direct-btn {
  background: #25D366;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.whatsapp-direct-btn:hover {
  background: #1ebc5a;
  color: #fff;
}

@media (max-width: 480px) {
  .whatsapp-chat-widget {
    width: calc(100% - 3rem);
    bottom: 85px;
    right: 1.5rem;
  }
}

/* ==================== ANTI-COPY ==================== */
.unselectable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.back-to-top.faded {
  opacity: 0 !important;
  pointer-events: none;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 4rem 0;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--bg-cream, #FAF7F2);
  border: 1px solid var(--border-color, #e5e5e5);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  transition: var(--transition, all 0.3s ease);
}
.faq-item:hover {
  border-color: var(--brand-primary, #D46F4D);
  box-shadow: 0 4px 12px rgba(212, 111, 77, 0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-dark, #2d1810);
  cursor: pointer;
  transition: var(--transition, all 0.3s ease);
}
.faq-question:hover {
  color: var(--brand-primary, #D46F4D);
}
.faq-icon {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  color: var(--brand-primary, #D46F4D);
}
.faq-item.active {
  background: #fff;
  border-color: var(--brand-primary, #D46F4D);
}
.faq-item.active .faq-question {
  color: var(--brand-primary, #D46F4D);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-color, #4a4a4a);
  line-height: 1.6;
  font-size: 0.95rem;
}
