/*
  TEVA Premium - CSS limpio final
  Estructura responsive para escritorio, tablet y celular.
*/

:root {
  --forest: #123524;
  --forest-dark: #082719;
  --gold: #b79a4b;
  --cream: #f7f2e9;
  --cream-2: #fbf7ef;
  --ivory: #fffdf8;
  --text: #1f2a24;
  --muted: #6f766f;
  --line: rgba(183,154,75,.24);
  --shadow: 0 18px 45px rgba(18,53,36,.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

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

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

h1, h2, h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
}

p {
  margin-top: 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18,53,36,.18);
}

.outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.gold {
  background: var(--gold);
  color: #fff;
}

/* Header */

.top-bar {
  background: var(--forest);
  color: var(--gold);
  text-align: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 10;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  flex: 0 0 auto;
}

.brand-symbol {
  font-size: 34px;
  line-height: 1;
}

.brand strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: .8;
  letter-spacing: 9px;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 7px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 32px);
  font-size: 14px;
  font-weight: 800;
  color: var(--forest);
}

.cart-link {
  flex: 0 0 auto;
  font-size: 20px;
}

/* Hero definitivo */

.teva-hero {
  background:
    radial-gradient(circle at 82% 35%, rgba(183,154,75,.18), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
  padding: clamp(54px, 7vw, 92px) 0;
  overflow: hidden;
}

.teva-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.teva-hero-content {
  max-width: 670px;
}

.teva-hero h1 {
  font-size: clamp(46px, 6.5vw, 86px);
  line-height: .95;
  margin: 10px 0 18px;
}

.teva-hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  margin-bottom: 4px;
}

.teva-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.teva-hero-image img {
  width: clamp(220px, 26vw, 340px);
  max-width: 100%;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(18,53,36,.16);
}

.teva-hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  max-width: 620px;
  margin-top: clamp(28px, 4vw, 44px);
}

.teva-hero-benefits span {
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

/* Línea completa */

.linea-completa {
  padding: clamp(58px, 7vw, 82px) 0;
  background: var(--cream-2);
}

.linea-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(34px, 5vw, 54px);
  align-items: center;
}

.linea-grid h2,
.ingredients-section h2,
.story-section h2,
.reviews-section h2,
.distributor-banner h2,
.featured-products h2 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1;
}

.linea-grid p {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.75;
}

.linea-image img,
.distributor-photo img {
  width: 100%;
  height: clamp(260px, 34vw, 430px);
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

/* Productos */

.featured-products {
  padding: clamp(64px, 8vw, 92px) 0;
  background: var(--ivory);
  text-align: center;
}

.featured-products h2 {
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.product-image {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 16px;
  overflow: hidden;
}

.product-image img,
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.placeholder-product {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  letter-spacing: 8px;
}

.product-card h3 {
  margin: 18px 0 8px;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.product-price {
  color: var(--forest);
  font-weight: 900;
}

.product-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
}

/* Ingredientes */

.ingredients-section {
  padding: clamp(60px, 7vw, 82px) 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(34px, 5vw, 54px);
  align-items: center;
}

.ingredients-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.ingredients-list div {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 24px 12px;
  background: #fff;
}

.ingredients-list span {
  margin-bottom: 8px;
  font-size: 28px;
}

.ingredients-list strong {
  color: var(--forest);
  font-size: 14px;
}

.ingredients-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

/* Historia */

.story-section {
  padding: clamp(64px, 8vw, 92px) 0;
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
}

.story-card {
  background: var(--cream);
  border: 1px solid rgba(183,154,75,.35);
  border-radius: 30px;
  padding: clamp(38px, 6vw, 64px);
  text-align: center;
}

.story-card strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 9vw, 110px);
  line-height: 1;
}

.story-card span {
  display: block;
  margin-top: 14px;
  color: var(--forest);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.story-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.story-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

/* Opiniones */

.reviews-section {
  padding: clamp(60px, 7vw, 82px) 0;
  background: var(--cream-2);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.reviews-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(18,53,36,.06);
}

.reviews-grid strong {
  color: var(--gold);
}

.reviews-grid p {
  line-height: 1.7;
}

/* Distribuidoras */

.distributor-banner {
  background: var(--forest);
  color: #fff;
  padding: clamp(60px, 7vw, 86px) 0;
}

.distributor-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 5vw, 54px);
  align-items: center;
}

.distributor-banner h2 {
  color: #fff;
}

.distributor-banner p {
  max-width: 520px;
  line-height: 1.75;
  opacity: .92;
}

/* Trust */

.trust-strip {
  background: var(--ivory);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.trust-grid div {
  font-size: 15px;
}

.trust-grid small {
  color: var(--muted);
}

/* Footer */

.site-footer {
  background: var(--forest-dark);
  color: #fff;
  padding: 60px 0 24px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 45px;
}

.footer-brand {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: .9;
  letter-spacing: 10px;
}

.footer-brand span {
  font-size: 13px;
  letter-spacing: 8px;
}

.site-footer h4 {
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: #fff;
}

.newsletter-form {
  display: flex;
  margin-top: 14px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 14px;
}

.newsletter-form button {
  border: none;
  border-radius: 0 8px 8px 0;
  padding: 0 20px;
  background: var(--gold);
  color: #fff;
  font-size: 22px;
}

.copyright {
  margin-top: 45px;
  text-align: center;
  opacity: .75;
  font-size: 13px;
}

/* Tablet */

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }

  .teva-hero-grid,
  .linea-grid,
  .ingredients-grid,
  .story-grid,
  .distributor-grid {
    grid-template-columns: 1fr;
  }

  .teva-hero-content,
  .linea-grid > div,
  .story-copy,
  .distributor-copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .teva-hero-text,
  .linea-grid p,
  .distributor-banner p {
    margin-left: auto;
    margin-right: auto;
  }

  .teva-hero-benefits {
    margin-left: auto;
    margin-right: auto;
  }

  .products-grid,
  .ingredients-list,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .teva-hero-image img {
    width: clamp(220px, 44vw, 330px);
  }

  .linea-image img,
  .distributor-photo img {
    height: clamp(240px, 46vw, 360px);
  }
}

/* Celular */

@media (max-width: 560px) {
  .container {
    width: min(92%, 1180px);
  }

  .brand strong {
    font-size: 30px;
    letter-spacing: 7px;
  }

  .brand small {
    letter-spacing: 5px;
  }

  .main-nav {
    gap: 12px 18px;
    font-size: 13px;
  }

  .teva-hero {
    padding: 44px 0 56px;
  }

  .teva-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .teva-hero-benefits,
  .products-grid,
  .ingredients-list,
  .story-icons,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .teva-hero-image img {
    width: min(76vw, 290px);
  }

  .linea-image img,
  .distributor-photo img {
    height: 250px;
  }

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

  .newsletter-form {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Ajuste final de imagen línea completa */
.linea-grid img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 30px;
}

/* LOGO REAL */
.site-logo-img {
  width: clamp(150px, 14vw, 230px);
  height: auto;
  display: block;
}

/* AJUSTE FINAL HERO PRODUCTO */
.teva-hero-image {
  background: rgba(255, 253, 248, 0.7);
  border-radius: 34px;
  padding: clamp(18px, 2vw, 28px);
  box-shadow: 0 28px 70px rgba(18, 53, 36, 0.12);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.teva-hero-image img {
  width: clamp(240px, 24vw, 330px) !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: contain !important;
  border-radius: 18px;
  box-shadow: none !important;
}

/* CELULAR */
@media (max-width: 560px) {
  .site-logo-img {
    width: 160px;
  }

  .teva-hero-image {
    max-width: 300px;
  }

  .teva-hero-image img {
    width: min(76vw, 260px) !important;
  }
}

/* AJUSTE FINAL DISTRIBUIDORAS - NO RECORTAR IMAGEN */
.distributor-photo img,
.distributor-image,
.distributor-image img {
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  border-radius: 30px;
}

/* BURBUJA CARRITO */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.cart-icon {
  font-size: 20px;
  line-height: 1;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
/* ==========================================
   SINGLE PRODUCT TEVA
========================================== */

.teva-single-product {
  background: var(--ivory);
}

.teva-product-hero {
  padding: clamp(56px, 7vw, 96px) 0;
  background: linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
}

.teva-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.teva-product-gallery {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
}

.teva-product-main-image {
  width: min(78%, 420px);
  max-height: 560px;
  object-fit: contain;
}

.teva-product-placeholder {
  width: 320px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold);
  border-radius: 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  letter-spacing: 10px;
}

.teva-product-summary h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.teva-product-rating {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.teva-product-rating span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.teva-product-price {
  color: var(--forest);
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 22px;
}

.teva-product-short {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.teva-product-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.teva-product-benefits span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.teva-product-cart form.cart {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.teva-product-cart .quantity input {
  width: 76px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
}

.teva-product-cart .single_add_to_cart_button {
  min-height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 32px;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.teva-product-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.teva-product-trust div {
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.teva-product-story {
  padding: clamp(58px, 7vw, 84px) 0;
}

.teva-story-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(32px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.teva-story-card h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}

.teva-story-card p {
  color: var(--muted);
  line-height: 1.85;
}

.teva-product-details {
  padding: clamp(56px, 7vw, 82px) 0;
  background: var(--cream-2);
}

.teva-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.teva-details-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.teva-details-grid h2,
.teva-product-faq h2,
.teva-related-products h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  margin-bottom: 18px;
}

.teva-details-grid ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.teva-product-faq {
  padding: clamp(56px, 7vw, 82px) 0;
}

.teva-product-faq h2 {
  text-align: center;
}

.teva-product-faq details {
  max-width: 800px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.teva-product-faq summary {
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.teva-product-faq p {
  color: var(--muted);
  line-height: 1.7;
}

.teva-related-products {
  padding: clamp(56px, 7vw, 82px) 0;
  background: var(--ivory);
}

.teva-related-products h2 {
  text-align: center;
}

/* Responsive single product */
@media (max-width: 900px) {
  .teva-product-grid,
  .teva-details-grid {
    grid-template-columns: 1fr;
  }

  .teva-product-summary {
    text-align: center;
  }

  .teva-product-benefits,
  .teva-product-trust {
    grid-template-columns: 1fr 1fr;
  }

  .teva-product-cart form.cart {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .teva-product-main-image {
    width: min(80vw, 300px);
  }

  .teva-product-benefits,
  .teva-product-trust,
  .teva-product-cart form.cart {
    grid-template-columns: 1fr;
  }

  .teva-product-cart form.cart {
    flex-direction: column;
  }

  .teva-product-cart .single_add_to_cart_button {
    width: 100%;
  }
}
/* ==========================================
   PRODUCT PAGE FINAL DETAILS
========================================== */

.teva-product-image-card {
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,253,248,.72);
  border-radius: 34px;
}

.teva-product-main-image {
  width: min(78%, 390px) !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: contain !important;
}

.teva-product-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.teva-product-thumbs button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.teva-product-thumbs button.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.teva-product-cart .single_add_to_cart_button,
.teva-cart-area button.single_add_to_cart_button {
  background: var(--forest) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  min-height: 54px !important;
  padding: 0 38px !important;
  font-family: "Manrope", sans-serif !important;
  font-weight: 900 !important;
  font-size: 15px !important;
  box-shadow: 0 16px 34px rgba(18,53,36,.18);
  transition: all .2s ease;
}

.teva-product-cart .single_add_to_cart_button:hover,
.teva-cart-area button.single_add_to_cart_button:hover {
  background: var(--gold) !important;
  transform: translateY(-1px);
}

.teva-product-cart .quantity input {
  width: 72px !important;
  height: 54px !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--forest) !important;
  font-weight: 900 !important;
  text-align: center !important;
}

.teva-product-benefits span {
  transition: all .2s ease;
}

.teva-product-benefits span:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18,53,36,.08);
}

.teva-why-section {
  padding: clamp(56px, 7vw, 82px) 0;
  background: var(--ivory);
}

.teva-why-section h2 {
  text-align: center;
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 34px;
}

.teva-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.teva-why-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.teva-why-grid span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 2px;
}

.teva-why-grid h3 {
  margin: 14px 0 10px;
  font-size: 28px;
}

.teva-why-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.teva-related-products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

.teva-related-products ul.products li.product {
  width: auto !important;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px !important;
  box-shadow: var(--shadow);
  text-align: center;
}

.teva-related-products ul.products li.product img {
  height: 230px;
  object-fit: contain;
  background: var(--cream-2);
  border-radius: 16px;
}

.teva-related-products ul.products li.product .button {
  background: var(--forest) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-weight: 900 !important;
}

@media (max-width: 900px) {
  .teva-product-image-card {
    min-height: 440px;
  }

  .teva-why-grid,
  .teva-related-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .teva-product-image-card {
    min-height: 340px;
  }

  .teva-product-main-image {
    width: min(78vw, 280px) !important;
  }

  .teva-why-grid,
  .teva-related-products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   SHOP PAGE TEVA PREMIUM
========================================== */

.teva-shop-page {
  background: var(--ivory);
}

.teva-shop-hero {
  padding: clamp(56px, 7vw, 90px) 0;
  background:
    radial-gradient(circle at 82% 35%, rgba(183,154,75,.16), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
  text-align: center;
}

.teva-shop-hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
  margin-bottom: 16px;
}

.teva-shop-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.teva-shop-content {
  padding: clamp(50px, 7vw, 82px) 0;
}

.teva-shop-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.teva-shop-categories a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  background: #fff;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  transition: all .2s ease;
}

.teva-shop-categories a:hover {
  background: var(--forest);
  color: #fff;
}

.teva-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.teva-shop-toolbar select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: var(--forest);
  font-weight: 700;
}

.teva-shop-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.teva-shop-page ul.products li.product,
.teva-shop-card {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  list-style: none;
}

.teva-shop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.teva-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(18,53,36,.12);
}

.teva-shop-card-link {
  display: block;
}

.teva-shop-card-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 22px;
  overflow: hidden;
}

.teva-shop-card-image img {
  width: 86%;
  height: 230px;
  object-fit: contain;
}

.teva-shop-card-meta {
  padding: 18px 4px 0;
  text-align: center;
}

.teva-card-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(183,154,75,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.teva-card-stars {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.teva-shop-card h2 {
  margin: 10px 0 8px;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.teva-shop-card-price {
  color: var(--forest);
  font-size: 20px;
  font-weight: 900;
}

.teva-card-actions {
  margin-top: 16px;
}

.teva-card-actions .button {
  width: 100%;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border-radius: 999px !important;
  background: var(--forest) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-align: center;
}

.teva-card-actions .button:hover {
  background: var(--gold) !important;
}

.teva-shop-pagination {
  margin-top: 44px;
  text-align: center;
}

.teva-empty-shop {
  max-width: 680px;
  margin: 0 auto;
  padding: 54px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .teva-shop-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .teva-shop-toolbar {
    flex-direction: column;
    text-align: center;
  }

  .teva-shop-page ul.products {
    grid-template-columns: 1fr !important;
  }

  .teva-shop-card-image {
    height: 250px;
  }
}
/* AJUSTE FINAL IMAGEN PRODUCTO EN SHOP */
.teva-shop-card-image {
  height: 300px;
  padding: 24px;
  align-items: center;
  overflow: visible;
}

.teva-shop-card-image img {
  width: auto !important;
  height: 100% !important;
  max-height: 245px !important;
  object-fit: contain !important;
}

/* ==========================================
   CART PAGE TEVA PREMIUM
========================================== */

.teva-cart-page {
  background: var(--ivory);
}

.teva-cart-hero {
  padding: clamp(48px, 6vw, 78px) 0;
  background: linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
  text-align: center;
}

.teva-cart-hero h1 {
  font-size: clamp(46px, 6vw, 76px);
}

.teva-cart-hero p {
  color: var(--muted);
}

.teva-cart-content {
  padding: clamp(50px, 7vw, 86px) 0;
}

.teva-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  gap: 36px;
  align-items: start;
}

.teva-cart-items,
.teva-cart-summary,
.teva-empty-cart {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.teva-cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto 34px;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.teva-cart-item:first-child {
  padding-top: 0;
}

.teva-cart-item-image {
  background: var(--cream-2);
  border-radius: 18px;
  padding: 12px;
}

.teva-cart-item-image img {
  width: 96px;
  height: 120px;
  object-fit: contain;
}

.teva-cart-item-info h2 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.teva-cart-item-price,
.teva-cart-item-total {
  color: var(--forest);
  font-weight: 900;
}

.teva-cart-item-qty .quantity input {
  width: 72px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
}

.teva-cart-item-remove a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 50%;
  color: var(--forest);
  font-size: 22px;
  font-weight: 900;
}

.teva-cart-summary {
  position: sticky;
  top: 24px;
}

.teva-cart-summary h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  font-size: 22px;
  border-bottom: none;
}

.checkout-btn {
  width: 100%;
  margin-top: 22px;
}

.teva-cart-trust {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.teva-empty-cart {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.teva-empty-cart h2 {
  font-size: 44px;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .teva-cart-layout {
    grid-template-columns: 1fr;
  }

  .teva-cart-summary {
    position: static;
  }
}

@media (max-width: 560px) {
  .teva-cart-item {
    grid-template-columns: 90px 1fr;
  }

  .teva-cart-item-total,
  .teva-cart-item-remove {
    grid-column: 2;
  }

  .teva-cart-item-image img {
    width: 72px;
    height: 96px;
  }
}
/* ==========================================
   CHECKOUT TEVA PREMIUM
========================================== */

.teva-checkout-page {
  background: var(--ivory);
}

.teva-checkout-hero {
  padding: clamp(48px, 6vw, 78px) 0;
  background: linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
  text-align: center;
}

.teva-checkout-hero h1 {
  font-size: clamp(46px, 6vw, 76px);
}

.teva-checkout-hero p {
  color: var(--muted);
}

.teva-checkout-content {
  padding: clamp(50px, 7vw, 86px) 0;
}

.teva-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 34px;
  align-items: start;
}

.teva-checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.teva-checkout-card h2 {
  font-size: clamp(30px, 3vw, 42px);
  margin-bottom: 22px;
}

.teva-checkout-page input,
.teva-checkout-page select,
.teva-checkout-page textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
}

.teva-checkout-page label {
  color: var(--forest);
  font-weight: 800;
  font-size: 13px;
}

.teva-order-summary {
  position: sticky;
  top: 24px;
}

.teva-order-summary table {
  width: 100%;
  border-collapse: collapse;
}

.teva-order-summary th,
.teva-order-summary td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.teva-order-summary .order-total {
  font-size: 20px;
  color: var(--forest);
}

.teva-checkout-page #place_order {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(18,53,36,.18);
}

.teva-checkout-page #place_order:hover {
  background: var(--gold);
}

.teva-checkout-trust {
  display: grid;
  gap: 10px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .teva-checkout-grid {
    grid-template-columns: 1fr;
  }

  .teva-order-summary {
    position: static;
  }
}
/* ==========================================
   MY ACCOUNT TEVA PREMIUM
========================================== */

.teva-account-page {
  background: var(--ivory);
}

.teva-account-hero {
  padding: clamp(48px, 6vw, 78px) 0;
  background: linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
  text-align: center;
}

.teva-account-hero h1 {
  font-size: clamp(46px, 6vw, 76px);
}

.teva-account-hero p {
  color: var(--muted);
}

.teva-account-content {
  padding: clamp(50px, 7vw, 86px) 0;
}

.teva-account-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.teva-account-nav,
.teva-account-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.teva-account-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.teva-account-nav li {
  margin-bottom: 10px;
}

.teva-account-nav a {
  display: block;
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--forest);
  font-weight: 900;
}

.teva-account-nav li.is-active a,
.teva-account-nav a:hover {
  background: var(--forest);
  color: #fff;
}

.teva-account-panel h2,
.teva-account-panel h3 {
  margin-bottom: 18px;
}

.teva-account-panel input,
.teva-account-panel select,
.teva-account-panel textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  color: var(--forest);
  font-family: "Manrope", sans-serif;
}

.teva-account-panel .button,
.teva-account-panel button {
  border: none !important;
  border-radius: 999px !important;
  background: var(--forest) !important;
  color: #fff !important;
  padding: 12px 24px !important;
  font-weight: 900 !important;
}

.teva-account-panel .button:hover,
.teva-account-panel button:hover {
  background: var(--gold) !important;
}

@media (max-width: 900px) {
  .teva-account-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FREE SHIPPING PROGRESS
========================================== */

.teva-free-shipping-box {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 22px;
}

.teva-free-shipping-box p {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.teva-free-shipping-box strong {
  color: var(--gold);
}

.teva-progress-bar {
  width: 100%;
  height: 10px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}

.teva-progress-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
}

/* ==========================================
   TEVA RITUAL ENGINE
========================================== */

.teva-ritual-card {
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.teva-ritual-head {
  margin-bottom: 18px;
}

.teva-ritual-head span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.teva-ritual-head strong {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1;
}

.teva-ritual-product {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.teva-ritual-image {
  background: var(--cream-2);
  border-radius: 18px;
  padding: 10px;
}

.teva-ritual-image img {
  width: 66px;
  height: 86px;
  object-fit: contain;
}

.teva-ritual-product h3 {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
}

.teva-ritual-product p {
  margin: 0;
  color: var(--forest);
  font-weight: 900;
}

.teva-ritual-btn {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.teva-ritual-btn:hover {
  background: var(--forest);
}

/* ==========================================
   CHECKOUT PREMIUM TEVA FINAL
========================================== */

.teva-checkout-security {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(135deg, var(--forest), #0b2418);
  color: #fff;
  border-radius: 26px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 18px 44px rgba(18, 53, 36, .18);
}

.teva-checkout-security .security-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 24px;
}

.teva-checkout-security strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.teva-checkout-security p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.55;
}

.teva-checkout-trust.premium {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.teva-checkout-trust.premium div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(18, 53, 36, .06);
}

.teva-checkout-trust.premium strong {
  display: block;
  color: var(--forest);
  font-size: 14px;
  margin-bottom: 4px;
}

.teva-checkout-trust.premium span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Mejorar bloque Mercado Pago dentro del checkout */
.teva-checkout-page .wc_payment_method,
.teva-checkout-page .payment_box {
  border-radius: 22px !important;
}

.teva-checkout-page .payment_box {
  background: #fffdf8 !important;
  border: 1px solid var(--line) !important;
  padding: 22px !important;
}

/* Mejorar resumen de pedido */
.teva-order-summary .shop_table {
  background: transparent;
}

.teva-order-summary .cart-subtotal th,
.teva-order-summary .fee th,
.teva-order-summary .woocommerce-shipping-totals th,
.teva-order-summary .order-total th {
  color: var(--forest);
  font-weight: 900;
}

.teva-order-summary .fee td {
  color: var(--gold);
  font-weight: 900;
}

.teva-order-summary .order-total strong {
  color: var(--forest);
  font-size: 22px;
}

/* Botón final de compra más premium */
.teva-checkout-page #place_order {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--forest), #0b2418) !important;
}

.teva-checkout-page #place_order:hover {
  background: var(--gold) !important;
  transform: translateY(-1px);
}
/* SHOP FIX FINAL */
.teva-shop-page {
  background: var(--ivory);
}

.teva-shop-hero {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  background: linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
}

.teva-shop-hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
}

.teva-shop-hero p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
}

.teva-shop-content {
  padding: clamp(50px, 7vw, 90px) 0;
}

.teva-shop-categories,
.teva-shop-toolbar {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.teva-shop-categories a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--forest);
  font-weight: 900;
}

.teva-shop-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.teva-shop-card {
  width: auto !important;
  margin: 0 !important;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.teva-shop-card-image {
  height: 300px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 22px;
}

.teva-shop-card-image img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 240px !important;
  object-fit: contain !important;
}

.teva-card-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201,164,76,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.teva-card-stars {
  display: block;
  color: var(--gold);
  margin-top: 12px;
}

.teva-shop-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--forest);
}

.teva-shop-card-price {
  color: var(--forest);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.teva-card-actions .button {
  width: 100%;
  border-radius: 999px !important;
  background: var(--forest) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: 14px 20px !important;
}

@media (max-width: 980px) {
  .teva-shop-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .teva-shop-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   SHOP PREMIUM TEVA
========================================== */

.teva-shop-page {
  background: var(--ivory);
}

.teva-shop-hero {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  background: linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
}

.teva-shop-hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
}

.teva-shop-hero p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
}

.teva-shop-content {
  padding: clamp(50px, 7vw, 90px) 0;
}

.teva-shop-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.teva-shop-categories a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--forest);
  font-weight: 900;
}

.teva-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.teva-shop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.teva-shop-card-image {
  height: 300px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  border-radius: 22px;
}

.teva-shop-card-image img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 240px !important;
  object-fit: contain !important;
}

.teva-card-badge {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201,164,76,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.teva-card-stars {
  display: block;
  color: var(--gold);
  margin-top: 12px;
}

.teva-shop-card h2 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--forest);
}

.teva-shop-card-price {
  color: var(--forest);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.teva-shop-btn {
  width: 100%;
  border-radius: 999px !important;
  background: var(--forest) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: 14px 20px !important;
}

@media (max-width: 980px) {
  .teva-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .teva-shop-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   TEVA FREE SHIPPING BAR
========================================== */

.teva-free-shipping-bar {
  max-width: 980px;
  margin: 0 auto 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: 0 12px 30px rgba(18, 53, 36, .08);
}

.teva-free-shipping-bar p {
  margin: 0 0 12px;
  color: var(--forest);
  font-weight: 800;
  text-align: center;
}

.teva-free-shipping-bar strong {
  color: var(--gold);
}

.teva-progress-track {
  width: 100%;
  height: 10px;
  background: #f1eadb;
  border-radius: 999px;
  overflow: hidden;
}

.teva-progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--forest));
  border-radius: 999px;
  transition: width .3s ease;
}
/* =========================================================
   TEVA ESSENCE
   SECCIÓN NOSOTROS: ESENCIA, PROPÓSITO, MISIÓN, VISIÓN Y VALORES
   ========================================================= */


/* ---------- INTRODUCCIÓN / ESENCIA ---------- */

.story-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.story-intro h2 {
  margin: 10px 0 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.story-intro > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
}


/* ---------- NUESTRO PROPÓSITO ---------- */

.story-purpose {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.story-purpose .story-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-purpose h2 {
  margin: 10px 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.story-purpose p {
  line-height: 1.75;
}

.story-purpose p:last-child {
  margin-bottom: 0;
}


/* ---------- MISIÓN Y VISIÓN ---------- */

.teva-purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto 70px;
}

.teva-purpose-card {
  padding: 38px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.teva-purpose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.09);
}

.purpose-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.7rem;
}

.teva-purpose-card h3 {
  margin: 8px 0 16px;
  font-size: 1.55rem;
  line-height: 1.25;
}

.teva-purpose-card p:last-child {
  margin-bottom: 0;
  line-height: 1.75;
}


/* ---------- VALORES ---------- */

.teva-values {
  padding-top: 10px;
}

.values-heading {
  margin-bottom: 35px;
  text-align: center;
}

.values-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 100px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.value-item span {
  flex: 0 0 auto;
  font-size: 1.8rem;
}

.value-item strong {
  font-size: 1rem;
  line-height: 1.4;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .story-intro {
    margin-bottom: 45px;
  }

  .story-purpose {
    margin-bottom: 45px;
    padding: 32px 26px;
  }

  .teva-purpose-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 55px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 600px) {

  .story-intro {
    margin-bottom: 35px;
    text-align: left;
  }

  .story-intro > p:last-child {
    font-size: 1rem;
    line-height: 1.7;
  }

  .story-purpose {
    margin-bottom: 35px;
    padding: 26px 20px;
    border-radius: 18px;
  }

  .story-purpose .story-copy {
    text-align: left;
  }

  .teva-purpose-grid {
    margin-bottom: 45px;
  }

  .teva-purpose-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .purpose-icon {
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }

  .teva-purpose-card h3 {
    font-size: 1.35rem;
  }

  .values-heading {
    text-align: left;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .value-item {
    min-height: auto;
    padding: 18px;
  }

  .value-item span {
    font-size: 1.55rem;
  }
}

/* =========================================================
   TEVA ESSENCE - CONSEJOS / BLOG
   ========================================================= */

.teva-consejos-hero,
.teva-consejo-hero {
  background:
    radial-gradient(circle at 80% 30%, rgba(183,154,75,.18), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f4ecd9 100%);
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
}

.teva-consejos-hero h1,
.teva-consejo-hero h1 {
  max-width: 880px;
  margin: 0 auto 18px;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .95;
}

.teva-consejos-hero p,
.teva-consejo-intro {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.teva-consejos-listado {
  padding: clamp(58px, 7vw, 90px) 0;
  background: var(--ivory);
}

.teva-consejos-header {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.teva-consejos-header h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.teva-consejos-header p {
  color: var(--muted);
  line-height: 1.8;
}

.teva-consejos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.teva-consejo-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.teva-consejo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(18,53,36,.12);
}

.teva-consejo-card-content {
  padding: 32px;
}

.teva-consejo-card-category {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.teva-consejo-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.teva-consejo-card p {
  color: var(--muted);
  line-height: 1.75;
}

.teva-consejo-card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 900;
}

.teva-consejo-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 900;
}

.teva-consejo-content {
  padding: clamp(52px, 7vw, 86px) 0;
}

.teva-consejo-body {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}

.teva-article-section {
  margin-bottom: 42px;
}

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

.teva-article-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.teva-article-section h3 {
  margin: 24px 0 10px;
  font-size: 1.45rem;
}

.teva-article-section p,
.teva-article-section li {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.85;
}

.teva-article-section ul,
.teva-article-section ol {
  padding-left: 22px;
}

.teva-article-section a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.teva-consejo-cta {
  padding: clamp(54px, 7vw, 86px) 0;
  background: var(--forest);
}

.teva-consejo-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.teva-consejo-cta h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.teva-consejo-cta p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

@media (max-width: 780px) {
  .teva-consejos-grid {
    grid-template-columns: 1fr;
  }

  .teva-consejos-hero,
  .teva-consejo-hero,
  .teva-consejos-header {
    text-align: left;
  }

  .teva-consejos-hero p,
  .teva-consejo-intro,
  .teva-consejos-header {
    margin-left: 0;
    margin-right: 0;
  }

  .teva-consejo-body {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .teva-consejo-cta-inner {
    text-align: left;
  }

  .teva-consejo-cta p {
    margin-left: 0;
  }
}
/* =========================================================
   PÃ¡ginas institucionales y legales
   ========================================================= */

.teva-legal-page,
.teva-contact-page {
  background: var(--ivory);
}

.teva-legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 88% 24%, rgba(183,154,75,.22), transparent 29%),
    linear-gradient(135deg, #fffdf8 0%, #f3ead7 100%);
  border-bottom: 1px solid var(--line);
}

.teva-legal-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -70px;
  bottom: -120px;
  border: 1px solid rgba(183,154,75,.32);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(183,154,75,.05), 0 0 0 64px rgba(183,154,75,.035);
}

.teva-legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.teva-legal-hero h1 {
  margin: 6px 0 18px;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: .95;
}

.teva-legal-hero-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.75;
}

.teva-legal-date {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--forest);
  font-size: .78rem;
  font-weight: 800;
}

.teva-legal-content-section {
  padding: clamp(50px, 7vw, 92px) 0;
}

.teva-legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.teva-legal-index {
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream-2);
}

.teva-legal-index strong {
  margin-bottom: 8px;
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.teva-legal-index a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
}

.teva-legal-index a:hover {
  color: var(--gold);
}

.teva-legal-card {
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.teva-legal-card section {
  scroll-margin-top: 30px;
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.teva-legal-card section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.teva-legal-card h2,
.teva-deletion-note h2,
.teva-contact-card h2,
.teva-contact-help h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.teva-legal-card p,
.teva-legal-card li,
.teva-deletion-note p,
.teva-contact-card p,
.teva-contact-help li {
  color: #465148;
  font-size: 1rem;
  line-height: 1.85;
}

.teva-legal-card ul,
.teva-contact-help ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.teva-legal-card li + li,
.teva-contact-help li + li {
  margin-top: 8px;
}

.teva-legal-card a:not(.btn),
.teva-deletion-note a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.teva-legal-highlight {
  padding: 28px !important;
  border: 1px solid rgba(183,154,75,.32) !important;
  border-radius: 20px;
  background: var(--cream-2);
}

.teva-legal-email {
  display: inline-block;
  margin: 2px 0 16px;
  font-size: 1.05rem;
}

.teva-deletion-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1000px;
}

.teva-deletion-card {
  position: relative;
  padding: 36px;
}

.teva-step-number {
  margin-bottom: 22px;
  color: rgba(183,154,75,.52);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: .8;
}

.teva-deletion-card .btn {
  margin-top: 8px;
}

.teva-deletion-note {
  grid-column: 1 / -1;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 26px;
  background: var(--forest);
  color: #fff;
}

.teva-deletion-note h2,
.teva-deletion-note p,
.teva-deletion-note a {
  color: #fff;
}

.teva-contact-section {
  padding: clamp(50px, 7vw, 92px) 0;
}

.teva-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
}

.teva-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 360px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.teva-contact-card-featured {
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-dark) 100%);
}

.teva-contact-card-featured h2,
.teva-contact-card-featured p,
.teva-contact-card-featured small {
  color: #fff;
}

.teva-contact-card-featured p {
  color: rgba(255,255,255,.78);
}

.teva-contact-card .btn,
.teva-contact-card .teva-contact-link {
  margin-top: auto;
}

.teva-contact-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.teva-contact-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
}

.teva-contact-link {
  color: var(--gold);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.teva-contact-help {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: start;
  margin-top: 28px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 26px;
  background: var(--cream-2);
  border: 1px solid var(--line);
}

.teva-contact-help ul {
  margin: 0;
}

@media (max-width: 900px) {
  .teva-legal-layout {
    grid-template-columns: 1fr;
  }

  .teva-legal-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .teva-legal-index strong {
    grid-column: 1 / -1;
  }

  .teva-contact-grid {
    grid-template-columns: 1fr;
  }

  .teva-contact-card {
    min-height: 0;
  }

  .teva-contact-card .btn,
  .teva-contact-card .teva-contact-link {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .teva-legal-hero {
    padding: 54px 0;
  }

  .teva-legal-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .teva-legal-index,
  .teva-deletion-wrap,
  .teva-contact-help {
    grid-template-columns: 1fr;
  }

  .teva-legal-card,
  .teva-deletion-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .teva-contact-help {
    gap: 12px;
  }
}