/* TiendaLista layout: garden-greenhouse */
:root {
  --primary: #14532d;
  --accent: #a3e635;
  --background: #f0fdf4;
  --surface: #ffffff;
  --text: #151718;
  --muted: #62676c;
  --line: rgba(21, 23, 24, .14);
  --danger: #a51d2d;
  --radius: 18px 18px 4px 4px;
  --shadow: 0 24px 70px rgba(20, 25, 30, .12);
  --body-font: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --heading-font: "Palatino Linotype", Palatino, Georgia, serif;
  --hero-columns: minmax(0, 1fr) minmax(300px, 1fr);
  --hero-align: center;
  --hero-min-height: 720px;
  --hero-padding: clamp(5rem, 9vw, 9rem) max(6vw, 1.25rem);
  --hero-heading-size: clamp(3.5rem, 8vw, 8rem);
  --hero-heading-max: 840px;
  --hero-heading-weight: 500;
  --hero-heading-tracking: -.055em;
  --hero-heading-transform: none;
  --hero-text-align: left;
  --section-columns: .8fr 1.2fr;
  --product-columns: repeat(4, minmax(0, 1fr));
  --product-gap: 1rem;
  --media-ratio: 1 / 1;
  --image-fit: contain;
  --card-border-width: 1px;
  --card-shadow: 0 12px 32px rgba(36, 73, 47, .08);
  --card-padding: 1.1rem;
  --catalog-background: #edf4e9;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--text); font-family: var(--body-font); line-height: 1.6; }
body.cart-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; left: 1rem; top: -6rem; z-index: 100; padding: .75rem 1rem; background: #fff; color: #000; }
.skip-link:focus { top: 1rem; }
.announcement { padding: .55rem 1rem; background: var(--primary); color: #fff; text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.site-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); align-items: center; gap: 1.5rem; min-height: 84px; padding: .8rem max(4vw, 1rem); background: color-mix(in srgb, var(--background) 90%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: .75rem; width: fit-content; color: var(--primary); font-weight: 850; text-decoration: none; letter-spacing: -.02em; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: calc(var(--radius) * .7); }
nav { display: flex; align-items: center; justify-content: center; gap: 1.35rem; }
nav a { padding: .35rem 0; color: var(--muted); font-size: .9rem; font-weight: 700; text-decoration: none; border-bottom: 2px solid transparent; }
nav a:hover, nav a[aria-current="page"] { color: var(--primary); border-color: var(--accent); }
.button, .cart-trigger { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .8rem 1.25rem; border: 1px solid var(--primary); border-radius: var(--radius); background: var(--primary); color: #fff; font-weight: 800; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.button:hover, .cart-trigger:hover { transform: translateY(-2px); box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 22%, transparent); }
.button-small { justify-self: end; min-height: 42px; padding: .6rem 1rem; }
.cart-trigger { justify-self: end; }
.cart-trigger b { display: grid; place-items: center; min-width: 24px; height: 24px; padding: 0 .35rem; border-radius: 999px; background: var(--accent); color: #111; font-size: .76rem; }
.hero { display: grid; grid-template-columns: var(--hero-columns); gap: clamp(2rem, 6vw, 7rem); align-items: var(--hero-align); min-height: var(--hero-min-height); padding: var(--hero-padding); background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 6%, var(--background)), var(--background) 55%, color-mix(in srgb, var(--accent) 22%, var(--background))); }
.hero-copy { text-align: var(--hero-text-align); }
.hero h1 { max-width: var(--hero-heading-max); margin: .2rem 0 1.4rem; color: var(--primary); font-family: var(--heading-font); font-size: var(--hero-heading-size); font-weight: var(--hero-heading-weight); line-height: .93; letter-spacing: var(--hero-heading-tracking); text-transform: var(--hero-heading-transform); }
.hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 0 0 2rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-copy { justify-self: stretch; }
.hero-copy .button { margin-inline: 0; }
.hero-copy > p:not(.eyebrow) { margin-inline: 0; }
.eyebrow { margin: 0 0 .7rem; color: var(--primary); font-size: .76rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.hero-card { padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid color-mix(in srgb, var(--primary) 25%, transparent); border-radius: var(--radius); background: color-mix(in srgb, #fff 82%, transparent); box-shadow: var(--shadow); }
.hero-card span { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-card strong { display: block; margin: .65rem 0; color: var(--primary); font-size: 1.55rem; line-height: 1.2; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); background: var(--surface); }
.trust-strip div { display: grid; gap: .1rem; padding: 1.4rem max(3vw, 1rem); }
.trust-strip div + div { border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--primary); }
.trust-strip span { color: var(--muted); font-size: .88rem; }
.catalog-section, .content-page { padding: clamp(4rem, 8vw, 8rem) max(6vw, 1.25rem); }
.catalog-section { background: var(--catalog-background); }
.section-heading { display: grid; grid-template-columns: var(--section-columns); gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2, .policy-callout h2, .content-page h1 { margin: 0; color: var(--primary); font-family: var(--heading-font); font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.045em; }
.section-heading > p { max-width: 620px; margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: var(--product-columns); gap: var(--product-gap); }
.product-card { overflow: hidden; border: var(--card-border-width) solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--card-shadow); }
.product-media { position: relative; aspect-ratio: var(--media-ratio); overflow: hidden; background: color-mix(in srgb, var(--accent) 12%, #fff); }
.product-media img { width: 100%; height: 100%; object-fit: var(--image-fit); transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.025); }
.product-category { position: absolute; left: 1rem; top: 1rem; padding: .35rem .65rem; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--primary); font-size: .7rem; font-weight: 800; }
.product-body { display: grid; gap: .8rem; padding: var(--card-padding); }
.product-body h3 { margin: 0; color: var(--primary); font-family: var(--heading-font); font-size: 1.25rem; line-height: 1.2; }
.product-description { min-height: 3.2rem; margin: 0; color: var(--muted); font-size: .9rem; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: .45rem; }
.price strong { color: var(--primary); font-size: 1.2rem; }
.price s { color: var(--muted); font-size: .82rem; }
.add-button { min-height: 42px; padding: .6rem .9rem; border: 1px solid var(--primary); border-radius: var(--radius); background: transparent; color: var(--primary); font-weight: 800; }
.add-button:hover { background: var(--primary); color: #fff; }
.add-button:disabled { cursor: not-allowed; opacity: .5; }
.policy-callout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: clamp(3rem, 7vw, 7rem) max(6vw, 1.25rem); background: var(--primary); color: #fff; }
.policy-callout .eyebrow, .policy-callout h2 { color: #fff; }
.policy-callout a { display: inline-flex; padding: .35rem .65rem; border-radius: var(--radius); background: #fff; color: #111; font-weight: 800; text-decoration: none; }
.content-page { min-height: 62vh; }
.content-page > header { max-width: 900px; margin-bottom: 3rem; }
.content-page > header p { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.content-card { padding: clamp(1.25rem, 3vw, 2.25rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.content-card h2 { margin-top: 0; color: var(--primary); line-height: 1.2; }
.content-card a { color: var(--primary); font-weight: 800; overflow-wrap: anywhere; }
.notice { padding: 1rem 1.2rem; border-left: 4px solid var(--accent); background: color-mix(in srgb, var(--accent) 13%, #fff); }
.site-footer { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; padding: 4rem max(6vw, 1.25rem) 2rem; background: #101820; color: #eef1f2; }
.site-footer > div { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.site-footer p { margin: 0; color: #aeb8bf; font-size: .85rem; }
.site-footer a, .site-footer span { color: #d8dfe3; font-size: .85rem; text-decoration: none; }
.site-footer small { grid-column: 1 / -1; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.13); color: #aeb8bf; }
.cart-backdrop { position: fixed; inset: 0; z-index: 40; background: rgba(5, 12, 18, .52); backdrop-filter: blur(3px); }
.cart-drawer { position: fixed; top: 0; right: 0; z-index: 50; display: grid; grid-template-rows: auto 1fr auto; width: min(480px, 100%); height: 100dvh; padding: 1.25rem; background: #fff; box-shadow: -20px 0 60px rgba(0,0,0,.18); transform: translateX(105%); transition: transform .24s ease; }
.cart-drawer[aria-hidden="false"] { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-head h2 { color: var(--primary); }
.cart-head button { width: 44px; height: 44px; border: 0; background: transparent; color: var(--primary); font-size: 2rem; }
.cart-lines { overflow: auto; padding: 1rem 0; }
.empty-cart { padding: 3rem 1rem; color: var(--muted); text-align: center; }
.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); }
.cart-line h3 { margin: 0 0 .15rem; color: var(--primary); font-size: .96rem; }
.cart-line p { margin: 0; color: var(--muted); font-size: .8rem; }
.quantity { display: inline-flex; align-items: center; margin-top: .6rem; border: 1px solid var(--line); }
.quantity button { width: 30px; height: 30px; border: 0; background: transparent; }
.quantity span { min-width: 28px; text-align: center; font-weight: 800; }
.remove-line { align-self: start; border: 0; background: transparent; color: var(--danger); font-size: .78rem; text-decoration: underline; }
.cart-summary { padding-top: 1rem; border-top: 1px solid var(--line); }
.cart-summary > div { display: flex; justify-content: space-between; color: var(--primary); font-size: 1.1rem; }
.cart-summary p, .cart-summary small { display: block; color: var(--muted); font-size: .78rem; }
.checkout-button { width: 100%; }
.checkout-button:disabled { cursor: wait; opacity: .6; }
.checkout-message { min-height: 1.2em; color: var(--danger) !important; }
.status-panel { max-width: 720px; margin: 6rem auto; padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-align: center; box-shadow: var(--shadow); }
.status-panel h1 { color: var(--primary); font-size: clamp(2rem, 6vw, 4rem); line-height: 1; }
.status-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto; border-radius: 999px; background: var(--accent); color: #111; font-size: 2rem; font-weight: 900; }
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; padding-bottom: .3rem; }
  .hero, .section-heading, .policy-callout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .announcement { font-size: .67rem; }
  .site-header { min-height: 72px; }
  .brand span { max-width: 145px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  nav { gap: 1rem; }
  .cart-trigger span { display: none; }
  .hero { padding-top: 4rem; }
  .hero h1 { font-size: clamp(2.7rem, 15vw, 5rem); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div + div { border-left: 0; border-top: 1px solid var(--line); }
  .product-grid, .content-grid, .site-footer { grid-template-columns: 1fr; }
  .site-footer small { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Layout treatment: garden-greenhouse */
body { background: #edf4e9; }
.site-header { background: rgba(245,249,241,.9); }
.hero { position: relative; border-bottom: 1px solid rgba(32,75,45,.35); background-image: linear-gradient(rgba(32,75,45,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(32,75,45,.09) 1px, transparent 1px); background-size: 54px 54px; }
.hero-card { min-height: 420px; border-radius: 210px 210px 18px 18px; background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(169,205,156,.64)); }
.product-grid { align-items: start; }
.product-card:nth-child(5n + 1) { grid-column: span 2; }
.product-card:nth-child(5n + 1) .product-media { aspect-ratio: 2 / 1; }
.product-media { background: linear-gradient(#fff, #e5efdf); }
.product-category { background: #eaf3e5; }
@media (max-width: 900px) { .product-card:nth-child(5n + 1) { grid-column: auto; } .product-card:nth-child(5n + 1) .product-media { aspect-ratio: 1; } }