/* ======================================================================
   STIHL "Try Before Buy" – styly pro podstránku Bova Vojkovice
   Vlož do: Shoptet → Vzhled a obsah → Editor vzhledu → Vlastní CSS
   (nebo do vlastního CSS souboru šablony).
   Vše je zapouzdřeno do .stihl-tbb, aby to nekolidovalo se šablonou.
   Font se DĚDÍ z webu (font-family:inherit).
   ====================================================================== */

.stihl-tbb{
  --stihl-orange:#EA5B0C;
  --stihl-orange-dark:#C94A05;
  --stihl-black:#1A1A1A;
  --stihl-grey:#4A4A4A;
  --stihl-light:#F4F4F4;
  --stihl-border:#E2E2E2;
  font-family:inherit;
  color:var(--stihl-black);
  line-height:1.6;
  max-width:1280px;
  width: 100%;
  margin:0 auto;
}
.stihl-tbb *{box-sizing:border-box;}
.stihl-tbb img{max-width:100%;height:auto;display:block;}

/* HERO */
.stihl-tbb__hero{
  position:relative;
  background:var(--stihl-black);
  border-radius:14px;
  overflow:hidden;
  color:#fff;
}
.stihl-tbb__hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
  opacity:.45;
}
.stihl-tbb__hero-inner{
  position:relative;
  padding:60px 40px;
}
.stihl-tbb__eyebrow{
  display:inline-block;
  background:var(--stihl-orange);
  color:#fff;
  font-weight:700;
  font-size:13px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:7px 16px;
  border-radius:4px;
  margin-bottom:18px;
}
.stihl-tbb__hero h1{
  font-size:clamp(28px,5vw,48px);
  line-height:1.1;
  margin:0 0 16px;
  font-weight:800;
  text-transform:uppercase;
}
.stihl-tbb__hero p{
  font-size:18px;
  max-width:620px;
  margin:0 0 28px;
  color:#EFEFEF;
}
.stihl-tbb__btn{
  display:inline-block;
  background:var(--stihl-orange);
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  padding:15px 34px;
  border-radius:6px;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:background .2s ease;
}
.stihl-tbb__btn:hover{background:var(--stihl-orange-dark);}

/* SECTIONS */
.stihl-tbb__section{margin-top:56px;}
.stihl-tbb__section h2{
  font-size:clamp(24px,3.5vw,34px);
  text-transform:uppercase;
  font-weight:800;
  margin:0 0 8px;
}
.stihl-tbb__section h2 span{color:var(--stihl-orange);}
.stihl-tbb__lead{
  font-size:17px;
  color:var(--stihl-grey);
  max-width:760px;
  margin:0 0 32px;
}

/* STEPS */
.stihl-tbb__steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.stihl-tbb__step{
  background:var(--stihl-light);
  border-radius:12px;
  padding:28px 22px;
  border-top:4px solid var(--stihl-orange);
}
.stihl-tbb__step-num{
  width:44px;height:44px;
  background:var(--stihl-orange);
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:20px;
  margin-bottom:14px;
}
.stihl-tbb__step h3{font-size:18px;margin:0 0 8px;font-weight:700;}
.stihl-tbb__step p{margin:0;font-size:15px;color:var(--stihl-grey);}

/* PRICE */
.stihl-tbb__price{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.stihl-tbb__price-card{
  border:2px solid var(--stihl-border);
  border-radius:12px;
  padding:30px;
  text-align:center;
}
.stihl-tbb__price-card--hl{
  border-color:var(--stihl-orange);
  background:linear-gradient(180deg,#FFF7F2 0%,#fff 100%);
}
.stihl-tbb__price-card .amount{
  font-size:40px;
  font-weight:800;
  color:var(--stihl-orange);
  margin:10px 0 4px;
}
.stihl-tbb__price-card h3{font-size:18px;margin:0;text-transform:uppercase;}
.stihl-tbb__price-card p{color:var(--stihl-grey);margin:8px 0 0;font-size:15px;}

/* MACHINES */
.stihl-tbb__machines{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.stihl-tbb__machine-block{
  border:1px solid var(--stihl-border);
  border-radius:12px;
  overflow:hidden;
}
.stihl-tbb__machine-head{
  background:var(--stihl-black);
  color:#fff;
  padding:18px 24px;
  display:flex;align-items:center;gap:12px;
}
.stihl-tbb__machine-head .tag{
  background:var(--stihl-orange);
  font-weight:800;
  font-size:13px;
  padding:4px 10px;
  border-radius:4px;
  letter-spacing:1px;
}
.stihl-tbb__machine-head h3{margin:0;font-size:17px;font-weight:600;}
.stihl-tbb__chips{
  display:flex;flex-wrap:wrap;gap:8px;
  padding:22px 24px;
}
.stihl-tbb__chips span{
  background:var(--stihl-light);
  border:1px solid var(--stihl-border);
  border-radius:20px;
  padding:7px 14px;
  font-size:14px;
  font-weight:600;
}

/* INFO STRIP */
.stihl-tbb__strip{
  background:var(--stihl-orange);
  color:#fff;
  border-radius:14px;
  padding:36px 40px;
  display:flex;flex-wrap:wrap;gap:30px;justify-content:space-around;text-align:center;
}
.stihl-tbb__strip .item .big{font-size:32px;font-weight:800;display:block;}
.stihl-tbb__strip .item .small{font-size:14px;text-transform:uppercase;letter-spacing:.5px;opacity:.95;}

/* CTA */
.stihl-tbb__cta{
  text-align:center;
  background:var(--stihl-light);
  border-radius:14px;
  padding:48px 30px;
}
.stihl-tbb__cta h2{margin-top:0;}
.stihl-tbb__cta p{color:var(--stihl-grey);max-width:560px;margin:0 auto 26px;font-size:17px;}

.stihl-tbb__note{
  font-size:13px;color:#888;margin-top:14px;text-align:center;
}

/* RESPONSIVE */
@media(max-width:860px){
  .stihl-tbb__steps{grid-template-columns:1fr 1fr;}
  .stihl-tbb__machines{grid-template-columns:1fr;}
}
@media(max-width:560px){
  .stihl-tbb__steps{grid-template-columns:1fr;}
  .stihl-tbb__price{grid-template-columns:1fr;}
  .stihl-tbb__hero-inner{padding:40px 24px;}
}
