:root{
  --ch-bg: #ffffff;
  --ch-bg-soft: #f6f7f9;
  --ch-text: #141414;
  --ch-text-soft: #5d6673;
  --ch-border: #e8ebef;
  --ch-primary: #c91517;
  --ch-radius: 18px;
  --ch-shadow: 0 10px 30px rgba(0,0,0,.06);
  --ch-container: 1240px;
}

.champs-home{
  background: var(--ch-bg);
  color: var(--ch-text);
}

.ch-container{
  width: min(var(--ch-container), calc(100% - 32px));
  margin: 0 auto;
}

.ch-section{
  padding: 72px 0;
}

.ch-section--alt{
  background: var(--ch-bg-soft);
}

.ch-section__head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:28px;
}

.ch-section__head h2{
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height:1.05;
}

.ch-kicker,
.ch-eyebrow{
  display:inline-block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--ch-primary);
}

.ch-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
}

.ch-btn--primary{
  background: var(--ch-primary);
  color:#fff;
}

.ch-btn--outline{
  border:1px solid var(--ch-border);
  color:var(--ch-text);
  background:#fff;
}

.ch-btn:hover{
  transform: translateY(-1px);
}

/* HERO */
.ch-hero{
  padding: 56px 0 42px;
  background:
    linear-gradient(135deg, #fff 0%, #fafafa 55%, #f1f3f6 100%);
}

.ch-hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:center;
}

.ch-hero__content h1{
  margin:10px 0 14px;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height:1;
  letter-spacing:-.03em;
}

.ch-hero__content p{
  font-size:18px;
  line-height:1.65;
  max-width: 720px;
  color:var(--ch-text-soft);
}

.ch-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.ch-search-card{
  background:#fff;
  border:1px solid var(--ch-border);
  border-radius:var(--ch-radius);
  box-shadow:var(--ch-shadow);
  padding:24px;
}

.ch-search-card h2{
  margin:0 0 14px;
  font-size:24px;
}

.ch-search-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
}

.ch-search-form input{
  min-height:52px;
  border:1px solid var(--ch-border);
  border-radius:14px;
  padding:0 16px;
  font-size:16px;
  outline:none;
}

.ch-search-form button{
  min-height:52px;
  border:none;
  border-radius:14px;
  background:var(--ch-primary);
  color:#fff;
  padding:0 18px;
  font-weight:700;
  cursor:pointer;
}

.ch-search-results{
  margin-top:12px;
}

.ch-search-results__list{
  display:grid;
  gap:10px;
}

.ch-search-result{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:12px;
  align-items:center;
  padding:10px;
  border:1px solid var(--ch-border);
  border-radius:14px;
  text-decoration:none;
  color:inherit;
  background:#fff;
}

.ch-search-result img{
  width:56px;
  height:56px;
  object-fit:cover;
  border-radius:10px;
}

.ch-search-result__meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.ch-search-result__meta small{
  color:var(--ch-text-soft);
}

.ch-search-shortcuts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.ch-search-shortcuts a{
  text-decoration:none;
  color:var(--ch-text);
  background:var(--ch-bg-soft);
  border:1px solid var(--ch-border);
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
}

/* BENEFITS */
.ch-benefits{
  padding: 18px 0 20px;
}

.ch-benefits__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.ch-benefit-card{
  background:#fff;
  border:1px solid var(--ch-border);
  border-radius:16px;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.ch-benefit-card span{
  color:var(--ch-text-soft);
}

/* CATEGORIES */
.ch-categories-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.ch-category-card{
  border:1px solid var(--ch-border);
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background:#fff;
  box-shadow: var(--ch-shadow);
  transition:.2s ease;
}

.ch-category-card:hover{
  transform:translateY(-3px);
}

.ch-category-card__image{
  aspect-ratio: 1 / 1;
  background:#f1f3f6;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.ch-category-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ch-category-card__placeholder{
  width:100%;
  height:100%;
  background:linear-gradient(135deg,#f5f5f5,#eaecef);
}

.ch-category-card__content{
  padding:18px;
}

.ch-category-card__content h3{
  margin:0 0 8px;
  font-size:20px;
}

.ch-category-card__content span{
  color:var(--ch-text-soft);
}

/* PRODUCTS */
.ch-products-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.ch-product-card{
  background:#fff;
  border:1px solid var(--ch-border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--ch-shadow);
  display:flex;
  flex-direction:column;
}

.ch-product-card__image{
  display:block;
  position:relative;
  background:#fff;
  aspect-ratio: 1 / 1;
  padding:16px;
}

.ch-product-card__image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.ch-badge{
  position:absolute;
  top:14px;
  left:14px;
  background:var(--ch-primary);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
}

.ch-product-card__content{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}

.ch-product-card__title{
  margin:0;
  font-size:18px;
  line-height:1.35;
}

.ch-product-card__title a{
  color:inherit;
  text-decoration:none;
}

.ch-product-card__price{
  font-size:18px;
  font-weight:700;
}

.ch-product-card__price del{
  opacity:.55;
  margin-right:8px;
}

.ch-product-card__actions{
  display:grid;
  gap:10px;
  margin-top:auto;
}

.ch-product-card .added_to_cart,
.ch-product-card .button{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-height:46px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
}

.ch-product-card .button{
  background:var(--ch-primary);
  color:#fff;
}

/* SPLIT BANNER */
.ch-banner-split{
  padding:72px 0;
}

.ch-banner-split__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.ch-banner-split__content{
  background:#0f1115;
  color:#fff;
  border-radius:24px;
  padding:42px;
}

.ch-banner-split__content p{
  color:rgba(255,255,255,.78);
  line-height:1.7;
}

.ch-banner-split__media{
  border-radius:24px;
  min-height:360px;
  background:linear-gradient(135deg, #d8dce3, #f5f6f8);
}

/* FAQ */
.ch-faq{
  display:grid;
  gap:14px;
}

.ch-faq details{
  border:1px solid var(--ch-border);
  border-radius:16px;
  background:#fff;
  padding:18px 20px;
}

.ch-faq summary{
  cursor:pointer;
  font-weight:700;
}

.ch-faq details div{
  margin-top:10px;
  color:var(--ch-text-soft);
  line-height:1.65;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .ch-hero__grid,
  .ch-banner-split__grid{
    grid-template-columns:1fr;
  }

  .ch-categories-grid,
  .ch-products-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .ch-benefits__grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 768px){
  .ch-section{
    padding:56px 0;
  }

  .ch-categories-grid,
  .ch-products-grid,
  .ch-benefits__grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .ch-search-form{
    grid-template-columns:1fr;
  }

  .ch-section__head{
    align-items:start;
    flex-direction:column;
  }
}

@media (max-width: 560px){
  .ch-categories-grid,
  .ch-products-grid,
  .ch-benefits__grid{
    grid-template-columns:1fr;
  }

  .ch-hero__content h1{
    font-size:38px;
  }

  .ch-banner-split__content{
    padding:28px;
  }
}