﻿/* ============================================================
   1. CTA TLAČÍTKA
   ============================================================ */
.cta-button-red,
.cta-button-green,
.cta-button-black{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.01em;
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor:pointer;
  border:0;
  line-height:1;
}
.cta-button-red::after,
.cta-button-green::after,
.cta-button-black::after{
  content:"→";
  font-size:17px;
  transition:transform .3s ease;
}
.cta-button-red:hover::after,
.cta-button-green:hover::after,
.cta-button-black:hover::after{transform:translateX(4px)}


.cta-button-red{
  background:#a66842;
  color:#fff;
  box-shadow:0 4px 14px rgba(166,104,66,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.cta-button-red:hover{
  background:#8a5234;
  transform:translateY(-1px);
  box-shadow:0 8px 22px rgba(166,104,66,.36), inset 0 1px 0 rgba(255,255,255,.22);
}


.cta-button-green{
  background:#e0a57a;
  color:#3d2418;
  box-shadow:0 4px 14px rgba(224,165,122,.32), inset 0 1px 0 rgba(255,255,255,.4);
}
.cta-button-green:hover{
  background:#ecc1a1;
  color:#2d1f15;
  transform:translateY(-1px);
}


.cta-button-black{
  background:#2d1f15;
  color:#fff;
  box-shadow:0 4px 14px rgba(45,31,21,.22);
}
.cta-button-black:hover{
  background:#000;
  transform:translateY(-1px);
}




/* ============================================================
   2. MINI BUTTONS
   ============================================================ */
.mini-buttons{display:flex;flex-wrap:wrap;gap:10px}
.mini-button{
  display:inline-flex;
  align-items:center;
  font-size:13.5px;
  font-weight:600;
  padding:9px 16px;
  border-radius:999px;
  background:#f7efe5;
  color:#3d2e22;
  border:1px solid #ecdfcf;
  text-decoration:none;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.mini-button:hover{
  background:#a66842;
  color:#fff;
  border-color:#a66842;
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(166,104,66,.2);
}




/* ============================================================
   3. TEXT + OBRÁZEK
   ============================================================ */
.sp-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  margin:32px 0;
}
.sp-split--reverse .sp-split__text{order:2}
.sp-split--reverse .sp-split__media{order:1}
.sp-split__title{
  font-size:30px;
  color:#2d1f15;
  margin:0 0 16px;
  line-height:1.15;
}
.sp-split__text p{color:#3d2e22;margin:0 0 14px}
.sp-split__media{position:relative}
.sp-split__figure{
  margin:0;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 6px 16px rgba(45,31,21,.08), 0 24px 48px rgba(45,31,21,.06);
}
.sp-split__img{width:100%;height:auto;display:block;aspect-ratio:4/3;object-fit:cover}


@media (max-width:720px){
  .sp-split{grid-template-columns:1fr;gap:24px}
  .sp-split--reverse .sp-split__text{order:initial}
  .sp-split--reverse .sp-split__media{order:initial}
}




/* ============================================================
   4. TIP RÁMEČEK
   ============================================================ */
.tip-note{
  background:linear-gradient(135deg,#fdf2e6 0%,#f7efe5 100%);
  border:1px solid #ecdfcf;
  border-left:4px solid #a66842;
  border-radius:14px;
  padding:22px 26px;
  margin:24px 0;
  box-shadow:0 1px 2px rgba(45,31,21,.06), 0 4px 12px rgba(45,31,21,.04);
}
.tip-note__content{display:flex;gap:14px;align-items:flex-start;flex-wrap:wrap}
.tip-note__label{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#a66842;
  color:#fff;
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  padding:6px 12px;
  border-radius:999px;
  flex-shrink:0;
}
.tip-note__text{flex:1;min-width:200px;color:#3d2e22;font-size:15.5px;line-height:1.65}
.tip-note__link{
  color:#a66842;
  text-decoration:underline;
  text-decoration-color:#e0a57a;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
  transition:color .2s ease;
}
.tip-note__link:hover{color:#8a5234}




/* ============================================================
   5. FAQ
   ============================================================ */
.faq-sxo__container{max-width:820px;margin:0 auto}
.faq-sxo__title{
  font-size:28px;
  text-align:center;
  color:#2d1f15;
  margin:0 0 28px;
}
.faq-sxo__item{
  background:#fbf3e8;
  border:1px solid #ecdfcf;
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
  transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.faq-sxo__item[open]{
  background:#fff;
  border-color:#e0a57a;
  box-shadow:0 1px 2px rgba(45,31,21,.06), 0 4px 12px rgba(45,31,21,.04);
}
.faq-sxo__question{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 22px;
  cursor:pointer;
  font-weight:600;
  font-size:16px;
  color:#2d1f15;
  list-style:none;
  user-select:none;
}
.faq-sxo__question::-webkit-details-marker{display:none}
.faq-sxo__icon{
  width:30px;height:30px;
  flex-shrink:0;
  background:#f7efe5;
  border-radius:50%;
  position:relative;
  transition:background .25s ease;
}
.faq-sxo__icon::before,
.faq-sxo__icon::after{
  content:"";
  position:absolute;
  background:#a66842;
  border-radius:2px;
  top:50%;left:50%;
  transition:transform .3s ease;
}
.faq-sxo__icon::before{width:12px;height:2px;transform:translate(-50%,-50%)}
.faq-sxo__icon::after{width:2px;height:12px;transform:translate(-50%,-50%)}
.faq-sxo__item[open] .faq-sxo__icon{background:#a66842}
.faq-sxo__item[open] .faq-sxo__icon::before,
.faq-sxo__item[open] .faq-sxo__icon::after{background:#fff}
.faq-sxo__item[open] .faq-sxo__icon::after{transform:translate(-50%,-50%) rotate(90deg)}
.faq-sxo__answer{
  padding:0 22px 20px 66px;
  color:#3d2e22;
  font-size:15px;
  line-height:1.7;
}
.faq-sxo__answer p{margin:0}
.faq-sxo__answer a{color:#a66842;font-weight:600}




/* ============================================================
   6. SPECIFIKAČNÍ TABULKA
   ============================================================ */
.x-spec-grid{
  background:#fff;
  border:1px solid #ecdfcf;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 1px 2px rgba(45,31,21,.06), 0 4px 12px rgba(45,31,21,.04);
}
.x-spec-grid__row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border-bottom:1px solid #ecdfcf;
}
.x-spec-grid[data-cols="4"] .x-spec-grid__row{grid-template-columns:1.2fr 1fr 1fr 1fr}
.x-spec-grid__row:last-child{border-bottom:0}
.x-spec-grid__row--head{
  background:linear-gradient(180deg,#a66842 0%,#8a5234 100%);
  color:#fff;
}
.x-spec-grid__row--head .x-spec-grid__cell{
  font-weight:600;
  font-size:15px;
  letter-spacing:.02em;
  color:#fff;
}
.x-spec-grid__cell{
  padding:14px 18px;
  font-size:14.5px;
  border-right:1px solid #ecdfcf;
}
.x-spec-grid__row--head .x-spec-grid__cell{border-right-color:rgba(255,255,255,.18)}
.x-spec-grid__cell:last-child{border-right:0}
.x-spec-grid__row:not(.x-spec-grid__row--head):nth-child(even){background:#f7efe5}


@media (max-width:640px){
  .x-spec-grid[data-cols="4"]{
    background:transparent;
    border:none;
    box-shadow:none;
    border-radius:0;
    overflow:visible;
  }
  .x-spec-grid[data-cols="4"] .x-spec-grid__row--head{display:none}
  .x-spec-grid[data-cols="4"] .x-spec-grid__row:not(.x-spec-grid__row--head){
    display:block;
    background:#fff;
    border:1px solid #ecdfcf;
    border-radius:14px;
    padding:14px 18px;
    margin-bottom:10px;
    box-shadow:0 1px 2px rgba(45,31,21,.06), 0 4px 12px rgba(45,31,21,.04);
  }
  .x-spec-grid[data-cols="4"] .x-spec-grid__row:not(.x-spec-grid__row--head):nth-child(even){background:#fff}
  .x-spec-grid[data-cols="4"] .x-spec-grid__cell{
    border:none;
    padding:0;
  }
  .x-spec-grid[data-cols="4"] .x-spec-grid__cell:first-child{
    font-size:15px;
    font-weight:700;
    color:#2d1f15;
    padding-bottom:10px;
    margin-bottom:8px;
    border-bottom:1px solid #ecdfcf;
  }
  .x-spec-grid[data-cols="4"] .x-spec-grid__cell:not(:first-child){
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;
    padding:6px 0;
    font-size:13.5px;
    line-height:1.5;
  }
  .x-spec-grid[data-cols="4"] .x-spec-grid__cell:not(:first-child)::before{
    content:attr(data-label);
    color:#7a6552;
    font-weight:600;
    font-size:13px;
    flex-shrink:0;
    min-width:70px;
  }
}




/* ============================================================
   7. SROVNÁVACÍ TABULKA
   ============================================================ */
.pk-compare__table{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.pk-compare__col{
  background:#fff;
  border:1px solid #ecdfcf;
  border-radius:22px;
  padding:28px 26px;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease;
}
.pk-compare__col:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(45,31,21,.08), 0 24px 48px rgba(45,31,21,.06);
}
.pk-compare__col:first-child{
  border-color:#a66842;
  box-shadow:0 0 0 3px rgba(166,104,66,.12);
}
.pk-compare__head{
  padding-bottom:18px;
  margin-bottom:18px;
  border-bottom:1px dashed #ecdfcf;
  position:relative;
}
.pk-compare__title{
  font-size:20px;
  color:#2d1f15;
  margin:0 0 10px;
  line-height:1.25;
  padding-right:90px;
}
.pk-compare__tag{
  position:absolute;
  top:0;right:0;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:999px;
  background:#e0a57a;
  color:#3d2418;
}
.pk-compare__col:first-child .pk-compare__tag{background:#a66842;color:#fff}
.pk-compare__list{list-style:none;padding:0;margin:0 0 4px}
.pk-compare__item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:8px 0;
  font-size:14.5px;
  color:#3d2e22;
}
.pk-compare__icon{
  flex-shrink:0;
  width:22px;height:22px;
  border-radius:50%;
  position:relative;
  margin-top:1px;
}
.pk-compare__item--plus .pk-compare__icon{background:rgba(111,138,77,.15)}
.pk-compare__item--plus .pk-compare__icon::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(#6f8a4d,#6f8a4d) center/9px 2px no-repeat,
    linear-gradient(#6f8a4d,#6f8a4d) center/2px 9px no-repeat;
}
.pk-compare__item--minus .pk-compare__icon{background:rgba(184,92,60,.12)}
.pk-compare__item--minus .pk-compare__icon::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(#b85c3c,#b85c3c) center/9px 2px no-repeat;
}
.pk-compare__list:last-of-type{border-top:1px dashed #ecdfcf;padding-top:8px;margin-top:6px}


@media (max-width:720px){
  .pk-compare__table{grid-template-columns:1fr}
}




/* ============================================================
   8. ODRÁŽKY
   ============================================================ */
.pk-bullets-dot{list-style:none;padding:0;margin:16px 0}
.pk-bullets-dot__item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:7px 0;
  font-size:15.5px;
}
.pk-bullets-dot__icon{
  flex-shrink:0;
  width:22px;height:22px;
  margin-top:2px;
  border-radius:50%;
  background:#f7efe5;
  position:relative;
}
.pk-bullets-dot__icon::after{
  content:"";
  position:absolute;
  top:50%;left:50%;
  width:8px;height:8px;
  background:#a66842;
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.pk-bullets-dot__text{flex:1;color:#3d2e22;line-height:1.6}




/* ============================================================
   9. PRŮVODCE KROK ZA KROKEM
   ============================================================ */
.step-guide__card{
  background:linear-gradient(180deg,#f7efe5 0%,#fff 100%);
  border:1px solid #ecdfcf;
  border-radius:22px;
  padding:36px 32px;
  box-shadow:0 1px 2px rgba(45,31,21,.06), 0 4px 12px rgba(45,31,21,.04);
}
.step-guide__head{text-align:center;margin-bottom:32px}
.step-guide__title{
  font-size:30px;
  color:#2d1f15;
  margin:0 0 8px;
}
.step-guide__subtitle{color:#7a6552;max-width:640px;margin:0 auto;font-size:15px}
.step-guide__list{list-style:none;padding:0;margin:0}
.step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:20px;
  padding:18px 0;
  position:relative;
}
.step__index{position:relative;z-index:1}
.step__badge{
  width:46px;height:46px;
  border-radius:50%;
  background:#a66842;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:600;
  font-size:18px;
  box-shadow:0 4px 14px rgba(166,104,66,.3);
  border:3px solid #fff;
}
.step__body{padding-top:6px}
.step__topline{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:6px}
.step__heading{
  font-size:18px;
  color:#2d1f15;
  margin:0;
}
.step__tag{
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:3px 10px;
  border-radius:999px;
  background:#e0a57a;
  color:#3d2418;
}
.step__text{color:#3d2e22;font-size:15px;line-height:1.65;margin:0}




/* ============================================================
   10. INFO BLOKY (3 vedle sebe)
   ============================================================ */
.pk-tiles{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.pk-tile{
  background:#fff;
  border:1px solid #ecdfcf;
  border-radius:22px;
  padding:30px 26px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pk-tile:hover{
  transform:translateY(-4px);
  border-color:#e0a57a;
  box-shadow:0 6px 16px rgba(45,31,21,.08), 0 24px 48px rgba(45,31,21,.06);
}
.pk-tile__icon{
  display:inline-flex;
  align-items:center;justify-content:center;
  width:54px;height:54px;
  background:#f7efe5;
  border-radius:14px;
  font-size:26px;
  margin-bottom:16px;
}
.pk-tile__title{
  font-size:19px;
  color:#2d1f15;
  margin:0 0 8px;
}
.pk-tile__text{color:#3d2e22;font-size:14.5px;margin:0;line-height:1.6}


@media (max-width:720px){
  .pk-tiles{grid-template-columns:1fr}
}




/* ============================================================
   11. USP BLOKY
   ============================================================ */
.pk-usp{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  background:#f7efe5;
  padding:22px;
  border-radius:22px;
  border:1px solid #ecdfcf;
}
.pk-usp__item{
  background:#fff;
  border-radius:14px;
  padding:18px 16px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  transition:transform .2s ease, border-color .2s ease;
  border:1px solid transparent;
}
.pk-usp__item:hover{
  transform:translateY(-2px);
  border-color:#ecc1a1;
}
.pk-usp__icon{
  font-size:28px;
  width:48px;height:48px;
  display:grid;place-items:center;
  background:#f7efe5;
  border-radius:50%;
  margin-bottom:4px;
}
.pk-usp__title{
  font-weight:600;
  font-size:15px;
  color:#2d1f15;
}
.pk-usp__text{font-size:13px;color:#7a6552;line-height:1.4}


.pk-usp:has(> .pk-usp__item:nth-child(3):last-child){
  grid-template-columns:repeat(3,1fr);
}


@media (max-width:720px){
  .pk-usp,
  .pk-usp:has(> .pk-usp__item:nth-child(3):last-child){grid-template-columns:repeat(2,1fr)}
}




/* ============================================================
   12. PRODUKTOVÝ GRID
   ============================================================ */
.product-grid{display:grid;gap:22px}
.product-grid--3{grid-template-columns:repeat(3,1fr)}
.product-grid--4{grid-template-columns:repeat(4,1fr)}


.product-card{
  background:#fff;
  border:1px solid #ecdfcf;
  border-radius:22px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover{
  transform:translateY(-4px);
  border-color:#e0a57a;
  box-shadow:0 6px 16px rgba(45,31,21,.08), 0 24px 48px rgba(45,31,21,.06);
}
.product-card__image{
  display:block;
  background:#f7efe5;
  aspect-ratio:1/1;
  overflow:hidden;
}
.product-card__image img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.product-card:hover .product-card__image img{transform:scale(1.06)}
.product-card__content{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
  flex:1;
  gap:8px;
}
.product-card__title{
  font-size:17px;
  margin:0;
  line-height:1.3;
}
.product-card__title a{color:#2d1f15;text-decoration:none;transition:color .2s ease}
.product-card__title a:hover{color:#a66842}
.product-card__desc{
  color:#7a6552;
  font-size:13.5px;
  line-height:1.55;
  margin:0;
  flex:1;
}
.product-card__button{margin-top:12px}
.product-card__button .cta-button-red,
.product-card__button .cta-button-green,
.product-card__button .cta-button-black{
  width:100%;
  justify-content:center;
  font-size:14px;
  padding:11px 18px;
}


@media (max-width:900px){
  .product-grid--4{grid-template-columns:repeat(2,1fr)}
  .product-grid--3{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:520px){
  .product-grid--4,
  .product-grid--3{grid-template-columns:1fr}
}




/* ============================================================
   13. PRŮVODCE VÝBĚREM
   ============================================================ */
.pk-guide{
  background:#f7efe5;
  border:1px solid #ecdfcf;
  border-radius:22px;
  padding:30px 32px;
  margin:24px 0;
  box-sizing:border-box;
}
.pk-guide__title{
  margin:0 0 12px;
  font-size:24px;
  color:#2d1f15;
  line-height:1.3;
}
.pk-guide__intro{
  margin:0 0 22px;
  font-size:15.5px;
  line-height:1.75;
  color:#3d2e22;
}
.pk-guide details > summary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  list-style:none;
  user-select:none;
  background:#a66842;
  color:#fff;
  font-size:14px;
  font-weight:600;
  padding:11px 22px;
  border-radius:999px;
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow:0 4px 14px rgba(166,104,66,.25);
}
.pk-guide details > summary:hover{
  background:#8a5234;
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(166,104,66,.32);
}
.pk-guide details > summary::-webkit-details-marker{display:none}
.pk-guide details > summary::marker{display:none}
.pk-guide__chevron{
  width:16px;height:16px;
  flex-shrink:0;
  transition:transform .3s ease;
}
.pk-guide details[open] .pk-guide__chevron{transform:rotate(180deg)}
.pk-guide__btn-label--less{display:none}
.pk-guide details[open] .pk-guide__btn-label--more{display:none}
.pk-guide details[open] .pk-guide__btn-label--less{display:inline}
.pk-guide__content{
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid #ecdfcf;
}
.pk-steps{
  list-style:none;
  margin:0;
  padding:0;
  counter-reset:pk-step;
}
.pk-steps > li{
  counter-increment:pk-step;
  position:relative;
  padding:24px 0;
  border-bottom:1px solid #ecdfcf;
}
.pk-steps > li:first-child{padding-top:0}
.pk-steps > li:first-child::before{top:0}
.pk-steps > li:last-child{padding-bottom:0;border-bottom:none}
.pk-steps > li::before{
  content:counter(pk-step);
  position:absolute;
  left:0;
  top:24px;
  display:inline-flex;
  align-items:center;justify-content:center;
  width:40px;height:40px;
  border-radius:50%;
  background:#a66842;
  color:#fff;
  font-size:15px;
  font-weight:600;
  line-height:1;
  box-shadow:0 4px 12px rgba(166,104,66,.28);
  border:3px solid #fff;
}
.pk-guide__stepTitle{
  margin:0 0 14px;
  padding-left:54px;
  min-height:40px;
  display:flex;
  align-items:center;
  font-size:18px;
  color:#2d1f15;
  line-height:1.3;
}
.pk-guide__stepLead{margin:0 0 14px;font-size:15px;line-height:1.65;color:#3d2e22}
.pk-bullets--dot{
  list-style:none;
  margin:0 0 14px;
  padding:0;
}
.pk-bullets--dot li{
  position:relative;
  padding:7px 0 7px 22px;
  font-size:14.5px;
  line-height:1.6;
  color:#3d2e22;
}
.pk-bullets--dot li::before{
  content:"";
  position:absolute;
  left:0;top:16px;
  width:8px;height:8px;
  border-radius:50%;
  background:#a66842;
}
.pk-bullets--dot strong{color:#2d1f15;font-weight:600}
.pk-tip{
  display:flex;
  gap:12px;
  background:#fff;
  border:1px solid #ecdfcf;
  border-left:3px solid #a66842;
  padding:14px 18px;
  border-radius:0 10px 10px 0;
  margin:14px 0 0;
  font-size:14px;
  line-height:1.6;
  color:#3d2e22;
}
.pk-tip__icon{
  flex-shrink:0;
  font-size:18px;
  line-height:1.4;
}
.pk-tip__text strong{color:#2d1f15;font-weight:600}
.pk-guide .table-wrap{
  overflow-x:auto;
  margin:14px 0;
  border:1px solid #ecdfcf;
  border-radius:10px;
  background:#fff;
}
.pk-guide .ui-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.pk-guide .ui-table thead{
  background:linear-gradient(180deg,#a66842 0%,#8a5234 100%);
}
.pk-guide .ui-table th{
  text-align:left;
  padding:12px 16px;
  font-weight:600;
  color:#fff;
  border-bottom:0;
  white-space:nowrap;
  font-size:14px;
  letter-spacing:.01em;
}
.pk-guide .ui-table td{
  padding:12px 16px;
  color:#3d2e22;
  border-bottom:1px solid #ecdfcf;
  line-height:1.55;
  vertical-align:top;
}
.pk-guide .ui-table tbody tr:nth-child(even){background:#f7efe5}
.pk-guide .ui-table tbody tr:last-child td{border-bottom:none}


@media (max-width:760px){
  .pk-guide{padding:22px 20px}
  .pk-guide__title{font-size:20px}
  .pk-guide__intro{font-size:14.5px}
  .pk-steps > li::before{width:34px;height:34px;font-size:13px;top:24px;border-width:2px}
  .pk-guide__stepTitle{
    padding-left:46px;
    min-height:34px;
    font-size:17px;
  }
  .pk-guide__stepLead,.pk-bullets--dot li{font-size:14px}
}
@media (max-width:540px){
  .pk-guide .table-mobile-table .ui-table thead{display:none}
  .pk-guide .table-mobile-table .ui-table,
  .pk-guide .table-mobile-table .ui-table tbody,
  .pk-guide .table-mobile-table .ui-table tr,
  .pk-guide .table-mobile-table .ui-table td{
    display:block;
    width:100%;
  }
  .pk-guide .table-mobile-table .ui-table tr{
    padding:12px 14px;
    border-bottom:1px solid #ecdfcf;
  }
  .pk-guide .table-mobile-table .ui-table tr:nth-child(even){background:#f7efe5}
  .pk-guide .table-mobile-table .ui-table tr:last-child{border-bottom:none}
  .pk-guide .table-mobile-table .ui-table td{
    padding:4px 0;
    border:none;
  }
  .pk-guide .table-mobile-table .ui-table td:first-child{
    font-weight:700;
    color:#2d1f15;
    font-size:14px;
    margin-bottom:4px;
  }
}




/* ============================================================
   14. TRUST BOX
   ============================================================ */
.trust-box-wrap{
  background:linear-gradient(180deg,#f7efe5 0%,#fff 100%);
  border:1px solid #ecdfcf;
  border-radius:22px;
  padding:34px 32px;
  margin:32px 0;
}
.trust-box-text{
  margin:0 0 26px;
  font-size:15px;
  line-height:1.75;
  color:#3d2e22;
  max-width:920px;
}
.trust-box-text strong{color:#2d1f15;font-weight:600}
.trust-box-usps{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}
.trust-box-usp{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
  padding:18px 10px;
  background:#fff;
  border-radius:14px;
  border:1px solid #ecdfcf;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.trust-box-usp:hover{
  transform:translateY(-3px);
  border-color:#e0a57a;
  box-shadow:0 1px 2px rgba(45,31,21,.06), 0 4px 12px rgba(45,31,21,.04);
}
.trust-box-usp-icon{
  width:46px;height:46px;
  display:grid;
  place-items:center;
  font-size:22px;
  background:#f7efe5;
  border-radius:50%;
}
.trust-box-usp-label{
  font-size:12.5px;
  line-height:1.4;
  color:#2d1f15;
  font-weight:600;
}


@media (max-width:900px){
  .trust-box-usps{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:480px){
  .trust-box-usps{grid-template-columns:repeat(2,1fr)}
  .trust-box-wrap{padding:24px 20px}
}