:root{
  --bg: #f2efdf;
  --card: #f6f3e6;
  --text: #2a2622;
  --muted: #6a635b;
  --line: rgba(42,38,34,.14);
  --brand: #0f7a3b;
  --accent: #7d0f3d;
  --accent-2: #a0144f;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --radius: 14px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{color:inherit; text-decoration:none}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--line);
}
.skip-link:focus{left:12px; z-index:9999}

.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklab, var(--bg) 92%, white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header__inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 160px;
}
.brand__mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, #7fe3a4 0 35%, transparent 36%),
    radial-gradient(circle at 70% 65%, #b0f2c8 0 22%, transparent 23%),
    linear-gradient(135deg, var(--brand), #0e5f2f);
  box-shadow: 0 6px 14px rgba(15,122,59,.25);
}
.brand__text{
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 12px;
}

.nav{
  flex: 1;
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav__link{
  font-size: 13px;
  color: color-mix(in oklab, var(--text) 70%, var(--muted));
  padding: 8px 10px;
  border-radius: 10px;
}
.nav__link:hover{
  background: rgba(0,0,0,.05);
  color: var(--text);
}

.header__actions{
  display:flex;
  align-items:center;
  gap: 8px;
  min-width: 140px;
  justify-content:flex-end;
}

.icon-btn{
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
}
.icon-btn:hover{transform: translateY(-1px)}
.icon-btn:active{transform: translateY(0)}
a.icon-btn{
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge{
  position:absolute;
  top:-7px;
  right:-7px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display:grid;
  place-items:center;
  background: var(--accent);
  color: white;
  font-size: 12px;
  border-radius: 999px;
  border: 2px solid var(--bg);
}

.page{
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 18px 60px;
}

.product{
  padding-top: 6px;
}

.product__grid{
  display:grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items:start;
}

.product__media{margin:0}
.product__image{
  height: 330px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.06)),
    linear-gradient(135deg, #0a8b3a, #0f7a3b 45%, #0a6a31);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.product__image::before{
  content:"";
  position:absolute;
  inset:-40px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.26), transparent 62%);
  transform: rotate(15deg);
}
.product__imageBadge{
  position:absolute;
  left: 34px;
  top: 120px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: .08em;
  padding: 22px 28px;
  border-radius: 18px;
  color: #1f5c27;
  background: linear-gradient(180deg, #ffd98a, #f1bf4f);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.08);
}

.body--product{
  background: #f9f7f2;
}
.body--product .cart-badge{
  border-color: #f9f7f2;
}
.page--productDetail{
  padding-top: 28px;
  padding-bottom: 88px;
}
.product__image--combo{
  height: auto;
  aspect-ratio: 1;
  max-height: min(440px, 92vw);
}
.product__image--combo .product__imageBadge{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(20px, 3.6vw, 32px);
  padding: 18px 22px;
  text-align: center;
  max-width: 88%;
}
.product__eyebrow{
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #9e9e9e;
  text-transform: uppercase;
}
.product__title--detail{
  color: #6b1f2f;
  margin-bottom: 10px;
}
.product__priceLine{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #3e2723;
}
.product__priceLine strong{
  font-size: 18px;
  font-weight: 800;
}
.product__shipNote{
  margin: 0 0 20px;
  font-size: 12px;
  color: #757575;
  line-height: 1.45;
}
.product__pickup{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(62, 39, 35, 0.12);
}
.product__pickupIcon{
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #2e7d32;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}
.product__pickup p{
  margin: 0 0 4px;
  font-size: 13px;
  color: #3e2723;
  line-height: 1.45;
}
.product__pickupEta{
  font-size: 12px;
}
.product__storeLink{
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: underline;
}
.product__storeLink:hover{
  color: #1b5e20;
}

.info--product{
  margin-top: 40px;
}
.info__list--steps li{
  margin: 10px 0;
  line-height: 1.55;
  color: color-mix(in oklab, var(--text) 82%, var(--muted));
}
.info__hand{
  margin: 16px 0 8px;
  font-size: 13px;
  color: #5d4037;
  line-height: 1.5;
}
.info__tagline{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #4e342e;
}

.product__panel{
  padding-top: 6px;
}
.product__title{
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: 1.08;
}
.product__meta{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 14px;
}
.dot{opacity:.55}
.price{font-size: 14px; color: var(--muted)}
.price strong{color: var(--text); font-size: 18px}
.muted{color: var(--muted)}

.form{
  display:flex;
  flex-direction:column;
  gap: 12px;
  max-width: 420px;
}

.field{display:flex; flex-direction:column; gap: 6px}
.field__label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.select, .textarea, .qty__input{
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  box-shadow: 0 6px 16px rgba(0,0,0,.04);
}
.textarea{resize: vertical}
.select:focus, .textarea:focus, .qty__input:focus, .btn:focus, .icon-btn:focus{
  outline: 2px solid color-mix(in oklab, var(--accent) 55%, white);
  outline-offset: 2px;
}

.qty{
  display:flex;
  gap: 8px;
  align-items:center;
}
.qty__btn{
  width: 44px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.04);
  font-size: 18px;
}
.qty__btn:hover{transform: translateY(-1px)}
.qty__btn:active{transform: translateY(0)}
.qty__input{
  text-align:center;
  max-width: 120px;
}

.btn{
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 14px;
  cursor:pointer;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn--primary{
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(125,15,61,.22);
}
.btn--primary:hover{filter: brightness(1.03); transform: translateY(-1px)}
.btn--primary:active{transform: translateY(0)}
.btn--ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover{background: rgba(0,0,0,.05)}

.help{
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.divider{
  height: 1px;
  background: var(--line);
  margin: 18px 0 14px;
  max-width: 420px;
}

.info{
  margin-top: 34px;
  max-width: 760px;
}
.info__title{
  font-family: "Playfair Display", serif;
  margin: 0 0 10px;
  font-size: 22px;
}
.info__list{
  margin: 0 0 10px;
  padding-left: 18px;
  color: color-mix(in oklab, var(--text) 78%, var(--muted));
}
.info__list li{margin: 6px 0}
.info__note{margin: 0; font-size: 13px; color: var(--muted)}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(25, 22, 20, .92);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.toast--show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.cart{
  width: min(680px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  background: #fff;
}
.cart::backdrop{
  background: rgba(0,0,0,.35);
}
.cart__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--line);
}
.cart__title{margin: 0; font-size: 16px}
.cart__subtitle{margin: 2px 0 0; font-size: 12px}
.cart__body{padding: 12px 14px}
.cart__items{display:flex; flex-direction:column; gap: 10px}
.cart__item{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 10px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.cart__thumb{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f7a3b, #0a6a31);
  position: relative;
  flex: 0 0 auto;
}
.cart__thumb::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
}
.cart__itemMain{flex:1}
.cart__itemTitle{margin: 0 0 2px; font-weight: 800; font-size: 13px}
.cart__itemMeta{margin: 0; font-size: 12px; color: var(--muted)}
.cart__itemRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-top: 8px;
}
.cart__itemPrice{font-weight: 800; font-size: 13px}
.cart__itemActions{display:flex; gap: 8px; align-items:center}
.mini-btn{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}
.mini-btn:hover{background: rgba(0,0,0,.05)}

.cart__footer{
  border-top: 1px solid var(--line);
  padding: 12px 14px 14px;
}
.cart__totalRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 2px 10px;
}
.cart__footerActions{
  display:flex;
  gap: 10px;
}
.cart__footerActions .btn{flex:1}
.cart__fineprint{margin: 10px 0 0; font-size: 12px}

@media (max-width: 920px){
  .header__inner{gap: 10px}
  .nav{display:none}
  .product__grid{grid-template-columns: 1fr; gap: 18px}
  .product__title{font-size: 34px}
  .product__image{height: 300px}
  .form{max-width: none}
  .divider{max-width: none}
}

/* —— Vista principal (inicio) —— */
.body--home{
  background: #fdf9ed;
}

.top-bar{
  background: #2e7d32;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  letter-spacing: .02em;
}

.header--site{
  background: #fdf9ed;
  border-bottom-color: rgba(62, 39, 35, .12);
}

.brand--office{
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 92px;
}
.brand__mark--hat{
  width: 42px;
  height: 38px;
  border-radius: 50% 50% 14px 14px;
  background: linear-gradient(165deg, #66bb6a, #2e7d32 55%, #1b5e20);
  box-shadow: 0 6px 14px rgba(46, 125, 50, .35);
  position: relative;
}
.brand__mark--hat::after{
  content: "";
  position: absolute;
  width: 8px;
  height: 22px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 2px;
  right: 8px;
  top: 10px;
  transform: rotate(12deg);
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.brand__text--office{
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #2e7d32;
}

.brand__text--split{
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}
.brand__word--menu{
  color: #2e7d32;
}
.brand__word--office{
  color: #f9a825;
}

.nav--site{
  gap: 14px;
}
.nav__link--brown{
  color: #4e342e;
  font-size: 13px;
  font-weight: 500;
}
.nav__link--brown:hover{
  color: #3e2723;
  background: rgba(62, 39, 35, .06);
}
.nav__caret{
  font-size: 10px;
  opacity: .75;
  margin-left: 2px;
}
.nav__item{
  position: relative;
}
.nav__item--dropdown .nav__menu{
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 160px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(62, 39, 35, .12);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
  flex-direction: column;
  gap: 4px;
  z-index: 40;
}
.nav__item--dropdown:hover .nav__menu,
.nav__item--dropdown:focus-within .nav__menu{
  display: flex;
}
.nav__menuLink{
  font-size: 13px;
  color: #4e342e;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav__menuLink:hover{
  background: rgba(46, 125, 50, .1);
  color: #1b5e20;
}

.page--home{
  max-width: none;
  margin: 0;
  padding: 0 0 72px;
}

.hero{
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 18px 0;
}
.hero__viewport{
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  border: 1px solid rgba(62, 39, 35, .1);
}
.hero__track{
  display: flex;
  width: 200%;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hero__slide{
  flex: 0 0 50%;
  min-height: 440px;
  position: relative;
  background-color: #5d4037;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}
.hero__slide--2{
  --hero-bg: url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=1400&q=80");
}
.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.28));
  pointer-events: none;
}
.hero__ctaBox{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: min(92%, 440px);
  text-align: center;
  padding: 28px 26px;
  background: rgba(253, 249, 237, 0.96);
  border: 2px solid #3e2723;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.hero__heading{
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 4.2vw, 32px);
  font-weight: 700;
  color: #3e2723;
  line-height: 1.15;
}
.hero__btn{
  display: inline-block;
  padding: 9px 32px;
  border: 2px solid #3e2723;
  border-radius: 999px;
  color: #3e2723;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  background: transparent;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.hero__btn:hover{
  background: #3e2723;
  color: #fdf9ed;
}

.hero__controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 12px 8px;
}
.hero__arrow{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(62, 39, 35, .2);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #3e2723;
  display: grid;
  place-items: center;
}
.hero__arrow:hover{
  background: rgba(46, 125, 50, .08);
  border-color: rgba(46, 125, 50, .35);
}
.hero__counter{
  font-size: 13px;
  font-weight: 700;
  color: #5d4037;
  min-width: 36px;
  text-align: center;
}

.home-below{
  max-width: 1120px;
  margin: 32px auto 0;
  padding: 0 18px;
}
.home-below__grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.home-below__accent{
  border-radius: var(--radius);
  min-height: 220px;
  background: linear-gradient(160deg, #a5d6a7, #e8f5e9 45%, #c8e6c9);
  border: 1px solid rgba(46, 125, 50, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.home-card{
  background: #fdf9ed;
  border: 1px solid rgba(62, 39, 35, .16);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.home-card__title{
  margin: 0 0 14px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  color: #3e2723;
  line-height: 1.25;
}
.home-card__text{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #5d4037;
}
.home-card__link{
  font-weight: 800;
  font-size: 14px;
  color: #2e7d32;
}
.home-card__link:hover{
  text-decoration: underline;
}

.fab{
  position: fixed;
  z-index: 35;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #4caf50, #388e3c);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(56, 142, 60, .45);
  font-family: inherit;
}
.fab:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.fab:active{
  transform: translateY(0);
}
.fab--rewards{
  left: 16px;
}
.fab--chat{
  right: 16px;
  position: fixed;
  padding-right: 20px;
}
.fab__icon{
  font-size: 17px;
  line-height: 1;
}
.fab__badge{
  position: absolute;
  top: -8px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  background: #c62828;
  color: #fff;
  border-radius: 999px;
  border: 2px solid #fdf9ed;
}

@media (max-width: 920px){
  .hero__slide{ min-height: 320px; }
  .home-below__grid{
    grid-template-columns: 1fr;
  }
  .home-below__accent{
    min-height: 140px;
    order: 2;
  }
  .home-card{ order: 1; }
}

/* —— Catálogo COMBOS —— */
.body--catalog{
  background: #fdfbf0;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav__link--current{
  color: #2e7d32;
  font-weight: 700;
}

.page--catalog{
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 18px 88px;
}

.catalog-head{
  margin-bottom: 22px;
}
.catalog-head__title{
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: #6b1f2f;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.catalog-toolbar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  padding: 12px 0 22px;
  border-bottom: 1px solid rgba(62, 39, 35, 0.12);
  margin-bottom: 26px;
}
.catalog-toolbar__left,
.catalog-toolbar__right{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.catalog-toolbar__label{
  font-size: 13px;
  font-weight: 600;
  color: #4e342e;
}
.catalog-select{
  min-width: 150px;
  padding: 8px 32px 8px 12px;
  font: inherit;
  font-size: 13px;
  color: #3e2723;
  background: #fff;
  border: 1px solid rgba(62, 39, 35, 0.22);
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234e342e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.catalog-select:focus{
  outline: 2px solid rgba(107, 31, 47, 0.35);
  outline-offset: 2px;
}
.catalog-count{
  font-size: 13px;
  font-weight: 600;
  color: #6d635b;
  white-space: nowrap;
}

.combo-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 20px;
}

.combo-card{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.combo-card:hover{
  transform: translateY(-3px);
}
.combo-card:focus-visible{
  outline: 2px solid #2e7d32;
  outline-offset: 4px;
}
.combo-card__media{
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(145deg, #0d8f3c, #1b5e20 55%, #0a3d16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.combo-card__badge{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 18px);
  letter-spacing: 0.06em;
  color: #1b5e20;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffe082, #f0c14b);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 88%;
  line-height: 1.15;
}
.combo-card__title{
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3e2723;
  line-height: 1.35;
}
.combo-card__price{
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #5d4037;
}

@media (max-width: 1024px){
  .combo-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px){
  .combo-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-toolbar__left,
  .catalog-toolbar__right{
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 420px){
  .combo-grid{
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

.catalog-empty{
  margin: 36px 0 0;
  text-align: center;
  font-size: 14px;
  color: #6d635b;
}

/* —— Página carrito + pie —— */
.body--cartPage{
  background: #f5f5dc;
}
.body--cartPage .cart-badge{
  border-color: #f5f5dc;
}
.page--cart{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 48px;
}
.cart-page__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cart-page__title{
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #3e2723;
}
.cart-page__continue{
  font-size: 14px;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: underline;
}
.cart-page__continue:hover{
  color: #1b5e20;
}
.cart-page__empty{
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(62, 39, 35, 0.1);
}
.cart-page__empty p{
  margin: 0 0 16px;
  color: #5d4037;
}
.cart-page__layout{
  display: grid;
  grid-template-columns: 1fr min(300px, 100%);
  gap: 32px;
  align-items: start;
}
.cart-page__table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(62, 39, 35, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.cart-page__th{
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9e9e9e;
  padding: 12px 16px;
  background: #fafaf8;
  border-bottom: 1px solid rgba(62, 39, 35, 0.1);
}
.cart-page__th--qty{
  text-align: center;
  width: 200px;
}
.cart-page__th--total{
  text-align: right;
  width: 120px;
}
.cart-page__line td{
  vertical-align: middle;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(62, 39, 35, 0.08);
}
.cart-page__line:last-child td{
  border-bottom: none;
}
.cart-page__cell--product{
  min-width: 200px;
}
.cart-page__productInner{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-page__thumb{
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0d8f3c, #1b5e20);
  display: grid;
  place-items: center;
}
.cart-page__thumbBadge{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #1b5e20;
  text-align: center;
  padding: 8px 6px;
  line-height: 1.15;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffe082, #f0c14b);
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 82%;
}
.cart-page__name{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #3e2723;
}
.cart-page__unitPrice{
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #4e342e;
}
.cart-page__meta{
  margin: 0;
  font-size: 12px;
  color: #6d635b;
  line-height: 1.45;
  max-width: 400px;
}
.cart-page__qtyWrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cart-page__qtyVal{
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.cart-page__qtyBtn{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(62, 39, 35, 0.18);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.cart-page__qtyBtn:hover{
  background: #f5f5f0;
}
.cart-page__remove{
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  padding: 6px;
  opacity: 0.65;
}
.cart-page__remove:hover{
  opacity: 1;
}
.cart-page__lineTotal{
  text-align: right;
  font-size: 15px;
  font-weight: 800;
  color: #3e2723;
}
.cart-page__notesLabel{
  display: block;
  margin: 24px 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4e342e;
}
.cart-page__notes{
  width: 100%;
  min-height: 100px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(62, 39, 35, 0.18);
  background: #fff;
  font: inherit;
  resize: vertical;
}
.cart-page__notes:focus{
  outline: 2px solid rgba(107, 31, 47, 0.3);
  outline-offset: 2px;
}
.cart-page__aside{
  position: sticky;
  top: 92px;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(62, 39, 35, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.cart-page__estTotal{
  margin: 0 0 10px;
  font-size: 15px;
  color: #3e2723;
}
.cart-page__estTotal strong{
  font-size: 17px;
}
.cart-page__estNote{
  margin: 0 0 18px;
  font-size: 12px;
  color: #757575;
  line-height: 1.4;
}
.btn--pay{
  width: 100%;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 999px;
}
@media (max-width: 860px){
  .cart-page__layout{
    grid-template-columns: 1fr;
  }
  .cart-page__aside{
    position: static;
  }
  .cart-page__table{
    display: block;
    overflow-x: auto;
  }
}

.site-footer{
  margin-top: 48px;
  background: #2e7d32;
  color: #fff;
  padding: 40px 18px 20px;
}
.site-footer__inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 28px 32px;
}
.site-footer__heading{
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.site-footer__col p{
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.95;
}
.site-footer__links{
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links li{
  margin: 8px 0;
}
.site-footer__links a{
  color: #fff;
  font-size: 13px;
  text-decoration: underline;
  opacity: 0.92;
}
.site-footer__links a:hover{
  opacity: 1;
}
.site-footer__mapWrap{
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.25);
  height: 220px;
}
.site-footer__map{
  width: 100%;
  height: 220px;
  border: 0;
}
.site-footer__copy{
  text-align: center;
  margin: 28px 0 0;
  font-size: 12px;
  opacity: 0.75;
}
@media (max-width: 920px){
  .site-footer__inner{
    grid-template-columns: 1fr;
  }
  .site-footer__col--map .site-footer__mapWrap{
    height: 200px;
  }
  .site-footer__map{
    height: 200px;
  }
}

.fab--chat--invert{
  background: #fff !important;
  color: #388e3c !important;
  border: 2px solid #c8e6c9;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12) !important;
}
.fab--chat--invert:hover{
  filter: none !important;
  background: #f1f8e9 !important;
}
.fab--chat--invert .fab__badge{
  border-color: #fff;
}

/* —— Confirmación de pedido —— */
.body--confirm{
  margin: 0;
  background: #f0f0f0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #202223;
}
.cfm-page{
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}
.cfm-noOrder{
  text-align: center;
  padding: 48px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
}
.cfm-noOrder p{
  margin: 0 0 16px;
  color: #6d7175;
}
.cfm-grid{
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px 32px;
  align-items: start;
}
.cfm-main{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cfm-hero{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
}
.cfm-hero__icon{
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #2c6ecb;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.cfm-hero__ref{
  margin: 0 0 6px;
  font-size: 14px;
  color: #6d7175;
}
.cfm-hero__thanks{
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #202223;
}
.cfm-card{
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
  padding: 18px 20px 20px;
}
.cfm-mapWrap{
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e1e3e5;
}
.cfm-map{
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}
.cfm-mapHint{
  margin: 10px 0 0;
  font-size: 12px;
  color: #6d7175;
}
.cfm-subtitle{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}
.cfm-lead{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: #202223;
}
.cfm-bank{
  font-size: 13px;
  line-height: 1.55;
  padding: 14px 16px;
  background: #f6f6f7;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
}
.cfm-bank p{
  margin: 0 0 6px;
}
.cfm-bank__note{
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  color: #202223;
}
.cfm-details__title{
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
}
.cfm-details__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.cfm-details__label{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6d7175;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cfm-details__value{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #202223;
}
.cfm-details__value--muted{
  font-size: 13px;
  color: #6d7175;
  margin-top: 6px;
}
.cfm-footerRow{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 4px 0;
}
.cfm-help{
  margin: 0;
  font-size: 14px;
  color: #202223;
}
.cfm-help a{
  color: #2c6ecb;
  font-weight: 500;
  text-decoration: none;
}
.cfm-help a:hover{
  text-decoration: underline;
}
.cfm-btnShop{
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #2c6ecb;
  border-radius: 8px;
  text-decoration: none;
}
.cfm-btnShop:hover{
  background: #1f5199;
}
.cfm-aside{
  position: sticky;
  top: 16px;
}
.cfm-asideInner{
  background: #e8e8e8;
  border: 1px solid #d2d4d7;
  border-radius: 8px;
  padding: 18px;
}
.cfm-totals{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #c9ccd0;
}
.cfm-totalRow{
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-size: 14px;
}
.cfm-totalRow--grand{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #c9ccd0;
  font-size: 15px;
}
.cfm-totalRow--grand strong{
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 900px){
  .cfm-grid{
    grid-template-columns: 1fr;
  }
  .cfm-aside{
    position: static;
    order: -1;
  }
  .cfm-details__grid{
    grid-template-columns: 1fr;
  }
}

/* —— Checkout (Shopify-style) —— */
.body--checkout{
  margin: 0;
  background: #fafafa;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #202223;
}
.co-brandHeader{
  background: #fff;
  border-bottom: 1px solid #e1e3e5;
  padding: 18px 20px;
  text-align: center;
}
.co-brandHeader__link{
  font-size: 18px;
  font-weight: 700;
  color: #202223;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.co-brandHeader__link:hover{
  color: #000;
}
.co-page{
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 18px 48px;
}
.co-grid{
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px 36px;
  align-items: start;
}
.co-main{
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
  padding: 22px 24px 28px;
}
.co-back{
  margin: 0 0 18px;
  font-size: 13px;
}
.co-back a,
.co-linkBtn{
  color: #2c6ecb;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.co-back a:hover,
.co-linkBtn:hover{
  text-decoration: underline;
}
.co-step{
  animation: coFade 0.2s ease;
}
@keyframes coFade{
  from { opacity: 0.6; }
  to { opacity: 1; }
}
.co-section{
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e1e3e5;
}
.co-section:last-of-type{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.co-section__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.co-section__title{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: #202223;
}
.co-section__title--solo{
  margin-bottom: 12px;
}
.co-section__link{
  font-size: 13px;
  color: #2c6ecb;
  text-decoration: none;
}
.co-section__link:hover{
  text-decoration: underline;
}
.co-muted{
  margin: 0 0 16px;
  font-size: 13px;
  color: #6d7175;
  line-height: 1.45;
}
.co-label{
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
  color: #202223;
}
.co-input,
.co-select{
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  font: inherit;
  font-size: 14px;
  border: 1px solid #babfc3;
  border-radius: 8px;
  background: #fff;
  color: #202223;
  box-sizing: border-box;
}
.co-input:focus,
.co-select:focus{
  outline: 2px solid #2c6ecb;
  outline-offset: 1px;
  border-color: #2c6ecb;
}
.co-input--narrow{
  width: auto;
  min-width: 72px;
  margin-bottom: 0;
}
.co-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 0;
  font-size: 13px;
  color: #202223;
  cursor: pointer;
}
.co-check input{
  margin-top: 3px;
}
.co-togglePair{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.co-toggle{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #babfc3;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: #202223;
}
.co-toggle.is-active{
  border-color: #202223;
  box-shadow: inset 0 0 0 1px #202223;
}
.co-toggle__icon{
  font-size: 16px;
}
.co-row2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.co-row3{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.co-phoneRow{
  display: flex;
  align-items: center;
  gap: 8px;
}
.co-phoneRow .co-input{
  margin-bottom: 0;
  flex: 1;
}
.co-info{
  font-size: 14px;
  color: #6d7175;
  cursor: help;
}
.co-shipBox{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #babfc3;
  border-radius: 8px;
  background: #fafbfb;
}
.co-shipBox.is-selected{
  border-color: #2c6ecb;
  background: #f0f5ff;
  box-shadow: inset 0 0 0 1px #2c6ecb;
}
.co-shipBox__sub{
  margin: 4px 0 0;
  font-size: 12px;
  color: #6d7175;
}
.co-shipBox__price{
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.co-btnNext{
  width: 100%;
  margin-top: 8px;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #2c6ecb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.co-btnNext:hover{
  background: #1f5199;
}
.co-shipRecap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 22px;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  background: #fafbfb;
}
.co-shipRecap__sub{
  margin: 4px 0 0;
  font-size: 12px;
  color: #6d7175;
}
.co-shipRecap__price{
  font-weight: 600;
  font-size: 14px;
}
.co-payOptions{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.co-payRow{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #e1e3e5;
}
.co-payRow:last-of-type{
  border-bottom: none;
}
.co-payDetail{
  margin: 0 0 12px 28px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  background: #f6f6f7;
  border-radius: 8px;
  border: 1px solid #e1e3e5;
}
.co-payDetail p{
  margin: 0 0 6px;
}
.co-tipBtns{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}
.co-tipChip{
  display: inline-flex;
  cursor: pointer;
}
.co-tipChip input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.co-tipChip span{
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #babfc3;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
}
.co-tipChip input:checked + span{
  border-color: #2c6ecb;
  background: #f0f5ff;
  box-shadow: inset 0 0 0 1px #2c6ecb;
}
.co-tipChip small{
  display: block;
  font-weight: 400;
  color: #6d7175;
  margin-top: 2px;
}
.co-tipCustom{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.co-qtyMini{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #babfc3;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
}
.co-btnGhost{
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #babfc3;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.co-btnGhost:hover{
  background: #f6f6f7;
}
.co-btnFinalize{
  width: 100%;
  margin-top: 12px;
  padding: 16px 18px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #2c6ecb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.co-btnFinalize:hover{
  background: #1f5199;
}

.co-aside{
  position: sticky;
  top: 16px;
}
.co-asideInner{
  background: #f5f5f5;
  border: 1px solid #e1e3e5;
  border-radius: 8px;
  padding: 18px 18px 20px;
}
.co-sumCard{
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e1e3e5;
}
.co-sumCard:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.co-sumCard__top{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.co-sumCard__thumb{
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: linear-gradient(145deg, #0d8f3c, #1b5e20);
  display: grid;
  place-items: center;
}
.co-sumCard__badge{
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #1b5e20;
  text-align: center;
  padding: 6px 4px;
  line-height: 1.15;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffe082, #f0c14b);
  max-width: 90%;
}
.co-sumCard__body{
  flex: 1;
  min-width: 0;
}
.co-sumCard__titleRow{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}
.co-sumCard__name{
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #202223;
  line-height: 1.3;
}
.co-sumCard__price{
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.co-sumCard__line{
  margin: 0 0 4px;
  font-size: 12px;
  color: #6d7175;
  line-height: 1.4;
}
.co-sumDetailBtn{
  margin-top: 6px;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 12px;
  color: #2c6ecb;
  cursor: pointer;
  text-decoration: underline;
}
.co-sumDetails{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #e1e3e5;
}
.co-sumMini{
  font-size: 12px;
  color: #202223;
  margin: 6px 0;
  display: flex;
  gap: 6px;
  align-items: baseline;
}
.co-sumMini__qty{
  font-weight: 600;
  color: #6d7175;
}

.co-discount{
  display: flex;
  gap: 8px;
  margin: 18px 0 16px;
}
.co-discount .co-input{
  margin-bottom: 0;
  flex: 1;
}
.co-btnApply{
  padding: 10px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #babfc3;
  background: #e4e5e7;
  color: #202223;
  cursor: pointer;
  white-space: nowrap;
}
.co-btnApply:hover{
  background: #d2d4d7;
}
.co-totals{
  border-top: 1px solid #e1e3e5;
  padding-top: 14px;
}
.co-totalRow{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
  font-size: 14px;
  color: #202223;
}
.co-totalRow--grand{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e1e3e5;
  font-size: 15px;
}
.co-totalRow--grand strong{
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 900px){
  .co-grid{
    grid-template-columns: 1fr;
  }
  .co-aside{
    position: static;
    order: -1;
  }
  .co-row3{
    grid-template-columns: 1fr;
  }
}
