/* ===================================================
   LIFARMAP BOTICA — Main Styles
   Layout, Homepage, Sections, Footer, Responsive
   =================================================== */

/* -----------------------------------------------
   BUTTONS
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,225,0,0.35);
}

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

.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

.btn-white {
  background: var(--green);
  color: var(--yellow);
  box-shadow: 0 4px 14px rgba(0,144,74,0.25);
}

.btn-white:hover {
  background: var(--green-dark);
  color: var(--yellow);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }

/* -----------------------------------------------
   BREADCRUMB
----------------------------------------------- */
.breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-light); font-size: 11px; }
.breadcrumb .current { color: var(--text-muted); }

/* -----------------------------------------------
   SECTION TITLES
----------------------------------------------- */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title a {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.section-title a:hover { text-decoration: underline; }

/* -----------------------------------------------
   HERO SLIDER
----------------------------------------------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #FFE100 !important;
  min-height: 380px;
}

.hero-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFE100 !important;
}

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

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,225,0,0.6) 0%, rgba(255,225,0,0.1) 60%, transparent 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 40px 60px;
  color: var(--green);
}

.hero-slide-content .slide-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #009E49;
  margin-bottom: 10px;
}

.hero-slide-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #009E49;
  margin-bottom: 12px;
}

.hero-slide-content p {
  font-size: 16px;
  color: #009E49;
  margin-bottom: 24px;
}

.hero-slide-content .slide-price {
  font-size: 13px;
  color: #009E49;
  margin-bottom: 4px;
}

.hero-slide-content .slide-price-big {
  font-size: 42px;
  font-weight: 900;
  color: #009E49;
  line-height: 1;
  margin-bottom: 20px;
}

.slide-btn {
  background: #009E49;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* Slider nav arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: rgba(0, 144, 74, 0.12);
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--green);
  transition: all var(--t);
}

.slider-arrow:hover {
  background: var(--green);
  color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 144, 74, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--t);
}

.slider-dot.active {
  background: var(--green);
  width: 22px;
  border-radius: 4px;
}

/* Hero fallback (no slider) */
.hero-static {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero-static h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.hero-static p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* -----------------------------------------------
   DISCLAIMER BAR
----------------------------------------------- */
.disclaimer-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* -----------------------------------------------
   COUNTDOWN BANNER
----------------------------------------------- */
.countdown-banner {
  background: var(--green-bar);
  padding: 18px 0;
  margin: 0;
}

.countdown-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.countdown-text {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  flex: 1;
}

.countdown-text span { color: var(--yellow); }

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-num {
  background: #0d2318;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  width: 62px;
  height: 62px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.countdown-sep {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  align-self: flex-start;
  margin-top: 8px;
}

/* -----------------------------------------------
   PROMO CARDS GRID
----------------------------------------------- */
.promo-section {
  padding: 32px 0;
  background: var(--bg);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.promo-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.promo-card-header {
  padding: 16px 16px 8px;
  background: var(--green);
}

.promo-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.promo-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.promo-card-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

.promo-card-body {
  flex: 1;
  overflow: hidden;
  background: var(--primary-bar);
}

.promo-card-body img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--ts);
}

.promo-card:hover .promo-card-body img { transform: scale(1.04); }

.promo-card-footer {
  padding: 12px 16px;
  background: var(--white);
}

.promo-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: background var(--t);
}

.promo-card-footer a:hover { background: #c0001f; }

/* -----------------------------------------------
   BENEFITS STRIP
----------------------------------------------- */
.benefits-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-right: 1px solid var(--border);
}

.benefit-item:last-child { border-right: none; }

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.benefit-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* -----------------------------------------------
   PRODUCTS SECTION (generic)
----------------------------------------------- */
.products-section {
  padding: 36px 0;
}

.products-section.bg-white {
  background: var(--white);
}

/* Product grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: var(--shadow);
  border-color: #d0d0d0;
  transform: translateY(-3px);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform var(--ts);
}

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

.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--r-xs);
  z-index: 2;
}

.product-card-badge.badge-promo { background: var(--green); }
.product-card-badge.badge-new { background: var(--blue); }

.product-card-wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  color: var(--text-light);
  transition: all var(--t);
  opacity: 0;
}

.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover { color: var(--red); background: #fff; }

.product-card-body {
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-type {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.product-card-brand img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.product-card-brand span {
  font-size: 11px;
  color: var(--text-muted);
}

.product-card-footer {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card-price .price-regular-label {
  font-size: 10px;
  color: var(--text-muted);
}

.product-card-price .price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.product-card-price .price-was {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card-price .price-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
}

.product-card-add {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t);
  line-height: 1;
}

.product-card-add:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}

/* -----------------------------------------------
   CATEGORY CARDS
----------------------------------------------- */
.categories-section {
  padding: 36px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--t);
}

.category-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.category-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background var(--t);
}

.category-card:hover .category-card-icon { background: var(--green); }

.category-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.category-card-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* -----------------------------------------------
   SPECIAL OFFER BANNER
----------------------------------------------- */
.offer-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--r-lg);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 32px 0;
  overflow: hidden;
  position: relative;
}

.offer-banner::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.offer-banner::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.offer-banner-text { position: relative; z-index: 1; }

.offer-banner-text .offer-tag {
  background: var(--yellow);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.offer-banner-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.offer-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
.site-footer {
  background: var(--green-bar);
  color: rgba(255,255,255,0.8);
  margin-top: 40px;
}

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

.footer-top .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}

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

.footer-logo .logo-symbol {
  background: var(--green);
}

.footer-logo .logo-name strong { color: #fff; }
.footer-logo .logo-name small { color: rgba(255,255,255,0.5); }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 240px;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  transition: all var(--t);
  max-width: 160px;
}

.app-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
}

.app-btn .app-icon { font-size: 22px; flex-shrink: 0; }

.app-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-btn-text small {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}

.app-btn-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
}

.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.footer-contact-item .fi-icon {
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Footer bottom */
.footer-bottom {
  padding: 18px 0;
  background: rgba(0,0,0,0.2);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

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

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all var(--t);
}

.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.social-link:hover svg {
  fill: #fff;
}

.footer-payments {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  letter-spacing: 0.5px;
}

/* -----------------------------------------------
   CONTACT PAGE
----------------------------------------------- */
.contact-page {
  padding: 48px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px;
  box-shadow: var(--shadow-xs);
}

.contact-form-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-card .form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(255,225,0,0.2);
}

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

.contact-info-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-xs);
}

.contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-detail-body span {
  font-size: 13px;
  color: var(--text-muted);
}

/* -----------------------------------------------
   GENERAL PAGE
----------------------------------------------- */
.page-content-wrap {
  padding: 40px 0;
}

.page-content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.page-content-full {
  grid-template-columns: 1fr;
}

.page-article {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px;
  box-shadow: var(--shadow-xs);
}

.page-article h1 {
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green);
}

.page-article .entry-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }
.page-article .entry-content h2 { font-size: 20px; margin: 28px 0 12px; }
.page-article .entry-content h3 { font-size: 17px; margin: 20px 0 10px; }
.page-article .entry-content ul, .page-article .entry-content ol {
  margin: 12px 0 16px 20px;
}
.page-article .entry-content ul { list-style: disc; }
.page-article .entry-content ol { list-style: decimal; }
.page-article .entry-content li { margin-bottom: 6px; font-size: 14px; }

.page-sidebar {
  position: sticky;
  top: 145px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
}

.sidebar-widget h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

/* -----------------------------------------------
   404 PAGE
----------------------------------------------- */
.error-page {
  padding: 80px 0;
  text-align: center;
}

.error-page .error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -20px;
}

.error-page h1 {
  font-size: 32px;
  margin-bottom: 14px;
}

.error-page p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* -----------------------------------------------
   LOADING / SKELETON
----------------------------------------------- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-sm);
}

/* -----------------------------------------------
   RESPONSIVE — MAIN
----------------------------------------------- */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top .container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: none; }
  .benefit-item:nth-child(3) { border-top: 1px solid var(--border); }
  .benefit-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .page-content-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .countdown-banner .container { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .footer-top .container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-slide-content { padding: 30px 24px; }
  .hero-slide-content h2 { font-size: 28px; }
  .offer-banner { flex-direction: column; padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top .container { grid-template-columns: 1fr; }
  .countdown-num { width: 52px; height: 52px; font-size: 22px; }
  .hero-slider { min-height: 280px; }
  .hero-slide { min-height: 280px; }
}

/* -----------------------------------------------
    ABOUT US PAGE
----------------------------------------------- */
.page-quienes-somos {
  background: var(--bg);
}

.about-page {
  padding: 40px 0;
}

.about-hero {
  animation: slideInDown 0.6s ease-out;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}

.about-article {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px;
  box-shadow: var(--shadow-xs);
}

.about-section {
  margin-bottom: 40px;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

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

.about-section p:last-child {
  margin-bottom: 0;
}

.values-grid {
  margin-top: 24px;
}

.value-card h3,
.service-card h3 {
  color: var(--green);
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 700;
}

.about-section ul li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}

.about-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 24px;
  background: var(--gray-light);
  border-radius: 8px;
  text-align: center;
  transition: all var(--t);
  border: 2px solid transparent;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(255, 225, 0, 0.25);
  transform: translateY(-3px);
}

.service-card div:first-child {
  font-size: 40px;
  margin-bottom: 12px;
}

.about-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  margin-top: 0;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
  transition: color var(--t);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-widget ul li a:hover {
  color: var(--green-dark);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------------
    CONTACT PAGE (Enhanced)
----------------------------------------------- */
.page-contacto {
  background: var(--bg);
}

.contact-page-enhanced {
  padding: 40px 0;
}

.contact-hero {
  animation: slideInDown 0.6s ease-out;
}

.contact-layout-enhanced {
  display: grid;
  gap: 0;
}

.contact-main {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px;
  box-shadow: var(--shadow-xs);
}

.contact-section {
  margin-bottom: 40px;
}

.contact-section:last-child {
  margin-bottom: 0;
}

.contact-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.contact-info-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

/* WhatsApp Button Enhanced */
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--t);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  font-weight: 600;
  text-align: center;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Contact Form Styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(255, 225, 0, 0.2);
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

/* Quick Contact Section */
.quick-contact {
  text-align: center;
}

.quick-contact .btn {
  transition: all var(--t);
}

.quick-contact .btn:hover {
  transform: translateY(-2px);
}

/* Contact page responsive */
@media (max-width: 900px) {
  .contact-info-form-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-main {
    padding: 32px 24px;
  }
  
  .contact-section h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 24px;
  }
  
  .contact-hero h1 {
    font-size: 32px;
  }
  
  .contact-hero p {
    font-size: 16px;
  }
  
  .contact-main {
    padding: 24px 16px;
  }
  
  .quick-contact {
    flex-direction: column;
  }
  
  .quick-contact .btn {
    width: 100%;
  }
}

/* ===============================================
   STATIC INFO PAGES (common styles)
   Como comprar, FAQ, Devoluciones, Legal
=============================================== */
.info-page-hero {
  background: var(--yellow);
  padding: 48px 0 40px;
  border-bottom: 3px solid var(--green);
}
.info-page-hero .breadcrumb { margin-bottom: 12px; font-size: 13px; color: var(--green-dark); }
.info-page-hero .breadcrumb a { color: var(--green); text-decoration: none; }
.info-page-hero .breadcrumb a:hover { text-decoration: underline; }
.info-page-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 8px;
  line-height: 1.2;
}
.info-page-hero p {
  font-size: 16px;
  color: var(--green-dark);
  margin: 0;
  max-width: 560px;
}

.info-page-body {
  padding: 48px 0 72px;
  background: #fafafa;
}
.info-page-body .container { max-width: 820px; }

.info-section { margin-bottom: 40px; }
.info-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow);
}
.info-section h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 18px 0 8px; }
.info-section p, .info-section li { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.info-section ul, .info-section ol { padding-left: 20px; margin-bottom: 14px; }
.info-section li { margin-bottom: 6px; }

/* Steps (¿Cómo comprar?) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 24px 0 40px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px 22px;
  text-align: center;
  position: relative;
  transition: box-shadow .2s;
}
.step-card:hover { box-shadow: 0 4px 18px rgba(0,144,74,.1); }
.step-num {
  width: 40px; height: 40px;
  background: var(--yellow);
  color: var(--green);
  font-size: 18px; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border: 2px solid var(--green);
}
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 6px; }
.step-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Payment methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.pay-badge span { font-size: 20px; }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-question:hover { background: #f9fdf9; }
.faq-question.open { color: var(--green); background: #f0faf4; }
.faq-chevron {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform .2s;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); background: var(--green); color: #fff; border-color: var(--green); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* Info highlight box */
.info-box {
  background: #f0faf4;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--green-dark);
}
.info-box strong { color: var(--green); }

.info-contact-cta {
  background: var(--yellow);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.info-contact-cta p { font-size: 16px; font-weight: 600; color: var(--green); margin: 0; }
.info-contact-cta small { display: block; font-weight: 400; color: var(--green-dark); font-size: 13px; margin-top: 2px; }

@media (max-width: 600px) {
  .info-page-hero h1 { font-size: 24px; }
  .info-page-hero { padding: 32px 0 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .info-contact-cta { flex-direction: column; text-align: center; }
  .info-contact-cta .btn { width: 100%; }
}
