/* ── FITENCASA360.COM — Global Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #16a34a;
  --green-lt: #22c55e;
  --green-bg: #f0fdf4;
  --navy:     #0f172a;
  --gray:     #64748b;
  --gray-lt:  #f1f5f9;
  --white:    #ffffff;
  --amazon:   #ff9900;
  --amazon-dk:#e68a00;
  --radius:   14px;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-hv:0 8px 40px rgba(0,0,0,.14);
  --tr:       .25s ease;
  --max-w:    1200px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--navy); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { font-weight: 800; font-size: 1.15rem; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: .4rem; }
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-size: .85rem; font-weight: 600; color: var(--gray); text-decoration: none; transition: color var(--tr); }
.nav-links a:hover { color: var(--green); }
.nav-badge { background: var(--green); color: #fff; font-size: .65rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; letter-spacing: .05em; }

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: var(--max-w); margin: 0 auto; padding: .8rem 1.5rem;
  font-size: .78rem; color: var(--gray);
}
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #064e3b 100%);
  color: #fff; padding: 80px 1.5rem 100px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(34,197,94,.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(59,130,246,.1) 0%, transparent 50%);
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: rgba(34,197,94,.2); border: 1px solid rgba(34,197,94,.4);
  color: #86efac; font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero h1 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.2rem; }
.hero h1 em { color: var(--green-lt); font-style: normal; }
.hero p { font-size: 1.05rem; color: #cbd5e1; max-width: 580px; margin: 0 auto 2rem; }
.hero-stats { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--green-lt); }
.hero-stat span { font-size: .78rem; color: #94a3b8; }

/* ── WAVE ── */
.wave { margin-top: -2px; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ── SECTION TITLE ── */
.section-title { text-align: center; padding: 60px 1.5rem 40px; max-width: 700px; margin: 0 auto; }
.section-title .tag {
  display: inline-block; background: var(--green-bg); color: var(--green);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 1rem; text-transform: uppercase;
}
.section-title h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: .8rem; }
.section-title p { color: var(--gray); font-size: .95rem; }

/* ── PRODUCT GRID ── */
.products {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem 80px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem;
}

/* ── CARD ── */
.card {
  background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform var(--tr), box-shadow var(--tr);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hv); }
.card-rank {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: #fff;
  font-size: .75rem; font-weight: 700; width: 30px; height: 30px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2;
}
.card-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--gray-lt); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img-wrap img { transform: scale(1.05); }
.card-badge { position: absolute; top: 12px; right: 12px; font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.badge-hot  { background: #fef2f2; color: #dc2626; }
.badge-best { background: #fffbeb; color: #d97706; }
.badge-new  { background: var(--green-bg); color: var(--green); }
.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: .7rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.card-title { font-size: 1rem; font-weight: 700; line-height: 1.35; margin-bottom: .6rem; color: var(--navy); }
.card-desc { font-size: .85rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.55; flex: 1; }
.card-stars { display: flex; align-items: center; gap: .4rem; margin-bottom: .8rem; }
.stars { color: #f59e0b; letter-spacing: 1px; font-size: .85rem; }
.card-stars span { font-size: .78rem; color: var(--gray); }
.card-price-row { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1rem; }
.price { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.price-old { font-size: .9rem; color: #9ca3af; text-decoration: line-through; }
.discount { font-size: .75rem; font-weight: 700; background: #fef2f2; color: #dc2626; padding: 2px 7px; border-radius: 4px; }
.card-features { list-style: none; margin-bottom: 1.2rem; }
.card-features li { font-size: .8rem; color: var(--gray); padding: 2px 0; display: flex; align-items: flex-start; gap: .4rem; }
.card-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-amazon {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--amazon); color: var(--navy); font-weight: 700; font-size: .92rem;
  padding: .75rem 1.25rem; border-radius: 10px; text-decoration: none;
  transition: background var(--tr), transform var(--tr); border: none; cursor: pointer; width: 100%;
}
.btn-amazon:hover { background: var(--amazon-dk); transform: translateY(-1px); }
.btn-amazon svg { flex-shrink: 0; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; border: 2px solid var(--green); color: var(--green);
  font-weight: 600; font-size: .85rem; padding: .55rem 1rem; border-radius: 8px;
  text-decoration: none; transition: all var(--tr);
}
.btn-secondary:hover { background: var(--green); color: #fff; }

/* ── PRODUCT PAGE CONTENT ── */
.product-layout { max-width: var(--max-w); margin: 0 auto; padding: 2rem 1.5rem 4rem; display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.product-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.product-img-main img { width: 100%; height: 380px; object-fit: cover; }
.product-sidebar { position: sticky; top: 80px; }
.product-sidebar-card { background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.product-sidebar-card .price { font-size: 2rem; }
.product-sidebar-card .price-old { font-size: 1rem; }
.sidebar-features { list-style: none; margin: 1rem 0; }
.sidebar-features li { padding: .4rem 0; border-bottom: 1px solid #f1f5f9; font-size: .85rem; display: flex; gap: .5rem; }
.sidebar-features li:last-child { border-bottom: none; }
.sidebar-features li::before { content: '✓'; color: var(--green); font-weight: 700; }

.content-section { margin-bottom: 2.5rem; }
.content-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--navy); border-left: 4px solid var(--green); padding-left: .8rem; }
.content-section h3 { font-size: 1.1rem; font-weight: 700; margin: 1.2rem 0 .5rem; color: var(--navy); }
.content-section p { font-size: .95rem; color: #374151; line-height: 1.75; margin-bottom: .8rem; }
.content-section ul { list-style: none; margin: .5rem 0 1rem; }
.content-section ul li { font-size: .9rem; color: #374151; padding: .3rem 0; padding-left: 1.2rem; position: relative; }
.content-section ul li::before { content: '→'; color: var(--green); position: absolute; left: 0; }

/* ── PROS CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros, .cons { border-radius: 10px; padding: 1.2rem; }
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fef2f2; border: 1px solid #fecaca; }
.pros h4 { color: #16a34a; font-weight: 700; margin-bottom: .7rem; }
.cons h4 { color: #dc2626; font-weight: 700; margin-bottom: .7rem; }
.pros li, .cons li { font-size: .85rem; line-height: 1.5; margin-bottom: .3rem; padding-left: 0; }
.pros li::before { display: none; }
.cons li::before { display: none; }
.pros li::marker, .cons li::marker { display: none; }
.pros ul, .cons ul { list-style: none; }
.pros li { padding-left: 1.2rem; position: relative; }
.pros li::before { content: '✓'; color: #16a34a; position: absolute; left: 0; font-weight: 700; }
.cons li { padding-left: 1.2rem; position: relative; }
.cons li::before { content: '✗'; color: #dc2626; position: absolute; left: 0; font-weight: 700; }

/* ── FAQ ── */
.faq-list { margin-top: 1rem; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: .75rem; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1rem 1.25rem; text-align: left; font-weight: 600; font-size: .9rem;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center;
  transition: background var(--tr);
}
.faq-q:hover { background: var(--gray-lt); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--green); transition: transform var(--tr); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.25rem 1rem; font-size: .88rem; color: var(--gray); line-height: 1.65; }
.faq-item.open .faq-a { display: block; }

/* ── COMPARISON TABLE ── */
.comp-table-wrap { overflow-x: auto; margin: 1.5rem 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.comp-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comp-table th { background: var(--navy); color: #fff; padding: .9rem 1rem; text-align: left; font-size: .85rem; font-weight: 700; }
.comp-table td { padding: .8rem 1rem; border-bottom: 1px solid #e2e8f0; font-size: .85rem; color: #374151; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: #f8fafc; }
.comp-table .winner td { background: #f0fdf4 !important; font-weight: 600; }
.comp-table .winner td:first-child::after { content: ' 🏆'; }
.rating-bar { display: flex; align-items: center; gap: .5rem; }
.bar { height: 6px; border-radius: 3px; background: var(--green); }
.bar-bg { width: 80px; height: 6px; background: #e2e8f0; border-radius: 3px; position: relative; }
.check { color: var(--green); font-weight: 700; }
.cross { color: #dc2626; font-weight: 700; }

/* ── TIPS / INFO SECTION ── */
.tips-section { background: var(--navy); color: #fff; padding: 60px 1.5rem; }
.tips-inner { max-width: var(--max-w); margin: 0 auto; }
.tips-inner h2 { text-align: center; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; margin-bottom: 2.5rem; }
.tips-inner h2 span { color: var(--green-lt); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.tip-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 1.5rem; text-align: center; }
.tip-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.tip-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.tip-card p { font-size: .82rem; color: #94a3b8; line-height: 1.5; }

/* ── DISCLOSURE ── */
.disclosure {
  background: #fffbeb; border-left: 4px solid var(--amazon);
  padding: 1rem 1.5rem; border-radius: 0 8px 8px 0;
}
.disclosure p { font-size: .82rem; color: #78350f; line-height: 1.5; }
.disclosure-wrap { max-width: var(--max-w); margin: 2rem auto 0; padding: 0 1.5rem; }

/* ── FOOTER ── */
footer { background: var(--navy); color: #64748b; text-align: center; padding: 2.5rem 1.5rem; font-size: .8rem; line-height: 1.9; }
footer strong { color: #94a3b8; }
footer a { color: #64748b; }
footer a:hover { color: var(--green-lt); }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* ── SLIDER / OFERTAS DESTACADAS ── */
.slider-section {
  background: var(--green-bg);
  padding: 60px 1.5rem 50px;
  overflow: hidden;
}
.slider-inner { max-width: var(--max-w); margin: 0 auto; }
.slider-header { text-align: center; margin-bottom: 2rem; }
.slider-header .tag {
  display: inline-block; background: var(--green); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  padding: 4px 14px; border-radius: 20px; margin-bottom: .8rem; text-transform: uppercase;
}
.slider-header h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; color: var(--navy); }
.slider-track-wrap { position: relative; display: flex; align-items: center; gap: 1rem; }
.slider-track { flex: 1; overflow: hidden; border-radius: var(--radius); }
.slide {
  display: none; flex-direction: row; width: 100%;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-hv); overflow: hidden;
}
.slide.active { display: flex; animation: fadeSlide .4s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.slide-img { width: 380px; flex-shrink: 0; position: relative; overflow: hidden; background: var(--gray-lt); }
.slide-img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.slide-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--amazon); color: var(--navy);
  font-size: .72rem; font-weight: 800; padding: 4px 12px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .05em;
}
.slide-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.slide-category { font-size: .7rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.slide-title { font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: .75rem; }
.slide-desc { font-size: .88rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.1rem; }
.slide-stars { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem; font-size: .82rem; color: var(--gray); }
.slide-stars .stars { color: #f59e0b; }
.slide-price-row { display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1.5rem; }
.slide-price-row .price { font-size: 2rem; }
.slide-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid #e2e8f0;
  font-size: 1.6rem; color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--tr); box-shadow: var(--shadow);
}
.slider-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.slider-dots { display: flex; justify-content: center; gap: .6rem; margin-top: 1.5rem; }
.dot {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: #cbd5e1; cursor: pointer; transition: all var(--tr); padding: 0;
}
.dot.active { background: var(--green); width: 28px; border-radius: 5px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .slide.active { flex-direction: column; }
  .slide-img { width: 100%; height: 220px; }
  .slide-img img { min-height: 220px; }
  .slide-content { padding: 1.5rem; }
  .slider-btn { display: none; }
}
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .hero { padding: 50px 1rem 60px; }
  .hero-stats { gap: 1.2rem; }
  .products { grid-template-columns: 1fr; padding: 0 1rem 50px; }
  .section-title { padding: 40px 1rem 30px; }
}

/* ═══════════════════════════════════════════
   PÁGINAS DE PRODUCTO INTERIOR
   ═══════════════════════════════════════════ */

/* Hero de producto: dos columnas */
.hero:has(.hero-content) {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 60px clamp(1.5rem, 5vw, 4rem);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  z-index: 1;
}

.hero-image {
  flex: 0 0 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.badge-promo {
  display: inline-block;
  background: var(--amazon);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
  width: fit-content;
}

.rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.rating .stars { color: #f59e0b; font-size: 1rem; }

.price-block { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; }

.price-now { font-size: 2.2rem; font-weight: 800; color: #fff; }

.price-before { font-size: .95rem; color: rgba(255,255,255,.55); text-decoration: line-through; }

/* Contenido principal */
main.content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

main.content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 .8rem;
  border-left: 4px solid var(--green);
  padding-left: .75rem;
  line-height: 1.3;
}

main.content h2:first-child { margin-top: 0; }

main.content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.8rem 0 .5rem;
}

main.content p {
  font-size: .95rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: .9rem;
}

main.content ul {
  list-style: none;
  margin: .5rem 0 1.2rem;
  padding: 0;
}

main.content ul li {
  font-size: .9rem;
  color: #374151;
  padding: .4rem 0 .4rem 1.4rem;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid #f1f5f9;
}

main.content ul li:last-child { border-bottom: none; }

main.content ul li::before {
  content: '→';
  color: var(--green);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Tabla de especificaciones */
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
  font-size: .88rem;
}

.specs-table th {
  background: var(--navy);
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 700;
}

.specs-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  color: #374151;
}

.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: #f8fafc; }

/* CTA box */
.cta-box {
  background: var(--green-bg);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.cta-box p {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-box .btn-amazon { max-width: 320px; margin: 0 auto; }

/* FAQ accordion */
section.faq { margin-top: 2.5rem; }

section.faq details {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: .75rem;
  overflow: hidden;
}

section.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  padding: 1rem 1.25rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section.faq summary::-webkit-details-marker { display: none; }

section.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 1rem;
}

section.faq details[open] summary::after { content: '−'; }

section.faq details p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── Responsive producto ── */
@media (max-width: 860px) {
  .hero:has(.hero-content) {
    flex-direction: column;
    padding: 40px 1.25rem 50px;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
  }

  .hero-content { align-items: center; }

  .hero-image {
    flex: none;
    width: 100%;
    max-width: 480px;
  }

  .hero-image img { height: 240px; }

  .price-now { font-size: 1.8rem; }

  main.content { padding: 2rem 1.25rem 3rem; }

  main.content h2 { font-size: 1.25rem; }
}
