@charset "UTF-8";
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#333333;
  background:#ffffff;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
a{color:#333;text-decoration:none}
a:hover{color:#757575}
img{max-width:100%;height:auto;display:block}

.container{max-width:1200px;margin-left:auto;margin-right:auto;padding:0 20px}

.navUser{
  background:#ffffff;
  border-bottom:1px solid #e5e5e5;
  padding:8px 0;
  position:sticky;
  top:0;
  z-index:998;
}
.navUser-inner{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:15px;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  padding:0 20px;
}
.navUser-action{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#050505;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.navUser-action:hover{color:#757575}
.navUser-or{
  font-size:11px;
  color:#757575;
  margin:0 2px;
}
.navUser-item--cart{position:relative}
.countPill{
  background:#333333;
  color:#fff;
  font-size:10px;
  font-family:'Montserrat',sans-serif;
  padding:1px 6px;
  border-radius:10px;
  margin-left:3px;
  display:none;
  vertical-align:middle;
}
.countPill.has_items{display:inline}

.header{
  background:#ffffff;
  text-align:center;
  padding:10px 0 0;
}
.header-logo{
  margin:2rem auto 1.5rem;
}
.header-logo a{display:inline-block}
.header-logo-text{
  font-family:'Oswald',sans-serif;
  font-size:30px;
  font-weight:300;
  color:#008000;
  letter-spacing:3px;
  text-transform:uppercase;
  line-height:1.2;
}
.header-logo-sub{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#757575;
  letter-spacing:1px;
  margin-top:2px;
}

.mobileMenu-toggle{
  display:none;
  cursor:pointer;
  padding:10px;
}
.mobileMenu-toggleIcon{
  display:block;
  width:22px;
  height:2px;
  background:#333;
  position:relative;
}
.mobileMenu-toggleIcon:before,
.mobileMenu-toggleIcon:after{
  content:'';
  display:block;
  width:22px;
  height:2px;
  background:#333;
  position:absolute;
  left:0;
}
.mobileMenu-toggleIcon:before{top:-7px}
.mobileMenu-toggleIcon:after{top:7px}

.navPages{
  border-top:1px solid #e5e5e5;
  border-bottom:2px solid #008000;
  padding:0;
}
.navPages-list{
  list-style:none;
  display:flex;
  justify-content:center;
  gap:0;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.navPages-action{
  display:block;
  padding:12px 20px;
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:400;
  color:#008000;
  text-transform:uppercase;
  letter-spacing:.8px;
  text-decoration:none;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.navPages-action:hover{color:#757575;background:rgba(0,0,0,.02)}

.heroCarousel{
  margin-left:auto;
  margin-right:auto;
  max-width:1200px;
  position:relative;
  overflow:hidden;
}
.heroCarousel-slide{
  position:relative;
  background-size:cover;
  background-position:center;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.heroCarousel-image{
  width:100%;
  height:auto;
  min-height:420px;
  object-fit:cover;
}
.heroCarousel-overlay{
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,0.35);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:45px 20px;
  text-align:center;
}
.heroCarousel-title{
  font-family:'Oswald',sans-serif;
  font-size:42px;
  font-weight:300;
  color:#ffffff;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:15px;
  line-height:1.2;
}
.heroCarousel-desc{
  font-family:'Karla',sans-serif;
  font-size:16px;
  color:rgba(255,255,255,.9);
  max-width:500px;
  margin-bottom:1.5em;
  line-height:1.6;
}
.heroCarousel-btn{
  display:inline-block;
  padding:12px 35px;
  background:#209f0c;
  color:#ffffff;
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:400;
  letter-spacing:1px;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.heroCarousel-btn:hover{background:#666666;color:#ffffff}

.heroCarousel-dots{
  text-align:center;
  padding:15px 0;
}
.heroCarousel-dot{
  display:inline-block;
  width:10px;height:10px;
  border-radius:50%;
  background:#FFFFFF;
  border:1px solid #908d8d;
  margin:0 4px;
  cursor:pointer;
}
.heroCarousel-dot.active_dot{background:#333333;border-color:#333333}

.default .section{
  padding-top:2rem;
  padding-bottom:2rem;
}

.page-heading{
  font-family:'Montserrat',sans-serif;
  font-size:25px;
  font-weight:400;
  color:#444444;
  text-align:center;
  line-height:1.2;
  margin-bottom:28px;
}
.page-heading--sub{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#757575;
  text-align:center;
  margin-top:-18px;
  margin-bottom:30px;
}

.productGrid{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.product{
  position:relative;
}
.card{
  background:#ffffff;
  border:1px solid #e5e5e5;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
  height:100%;
  display:flex;
  flex-direction:column;
  cursor:pointer;
}
.card:hover{box-shadow:0 4px 20px rgba(0,0,0,.08)}
.card-figure{
  position:relative;
  overflow:hidden;
}
.card-img-container{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f3f4f7;
}
.card-image{
  width:100%;
  height:100%;
  object-fit:cover;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.card:hover .card-image{transform:scale(1.04)}
.card-figcaption{
  position:absolute;
  bottom:0;left:0;right:0;
  background:rgba(255,255,255,.92);
  padding:10px;
  text-align:center;
  opacity:0;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
  transform:translateY(100%);
}
.card:hover .card-figcaption{
  opacity:1;
  transform:translateY(0);
}
.card-figcaption-button{
  display:inline-block;
  padding:8px 18px;
  font-family:'Montserrat',sans-serif;
  font-size:11px;
  font-weight:400;
  letter-spacing:1px;
  text-transform:uppercase;
  background:#ffffff;
  color:#008000;
  border:1px solid #008000;
  cursor:pointer;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.card-figcaption-button:hover{background:#008000;color:#ffffff}
.card-body{
  padding:14px 15px 18px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.card-text[data-test-info-type="brandName"]{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#757575;
  margin-bottom:4px;
}
.card-title{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:400;
  line-height:1.3;
  margin-bottom:5px;
}
.card-title a{color:#008000}
.card-title a:hover{color:#757575}
.card-text[data-test-info-type="price"]{margin-top:auto}
.price-section{display:flex;align-items:baseline;gap:8px}
.price--withoutTax{
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:400;
  color:#333;
}
.price--old{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  color:#757575;
  text-decoration:line-through;
}
.card-stock{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#008a06;
  margin-top:4px;
}
.card-stock.outOfStock{color:#cc4749}
.card-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#cc4749;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:10px;
  font-weight:400;
  padding:3px 10px;
  letter-spacing:1px;
  text-transform:uppercase;
  z-index:2;
}
.card-badge--green{background:#209f0c}
.card-cartBtn{
  margin-top:10px;
  width:100%;
  padding:9px 15px;
  background:transparent;
  color:#002fe1;
  border:1px solid #002fe1;
  font-family:'Montserrat',sans-serif;
  font-size:11px;
  font-weight:400;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.card-cartBtn:hover{color:#008000;border-color:#008000}

.catGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:900px;
  margin:0 auto;
}
.catGrid-item{
  text-align:center;
}
.catGrid-imgWrap{
  width:140px;
  height:140px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 10px;
  border:2px solid #e5e5e5;
}
.catGrid-imgWrap img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.catGrid-label{
  font-family:'Montserrat',sans-serif;
  font-size:11px;
  font-weight:400;
  color:#333;
  text-transform:uppercase;
  letter-spacing:1px;
  display:inline-block;
  padding:4px 12px;
  border:1px solid #e5e5e5;
  background:#f3f4f7;
  margin-top:5px;
}

.infoCards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  max-width:1000px;
  margin:0 auto;
}
.infoCard{
  text-align:center;
  padding:28px 20px 30px;
  border:1px solid #e5e5e5;
}
.infoCard-icon{
  font-size:38px;
  color:#008000;
  margin-bottom:14px;
  line-height:1;
}
.infoCard-title{
  font-family:'Montserrat',sans-serif;
  font-size:18px;
  font-weight:400;
  color:#444444;
  margin-bottom:10px;
  line-height:1.2;
}
.infoCard-text{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#666666;
  line-height:1.6;
  margin-bottom:1em;
}
.infoCard-btn{
  display:inline-block;
  padding:10px 25px;
  background:#209f0c;
  color:#ffffff;
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:1px;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.infoCard-btn:hover{background:#666666;color:#fff}

.textBlock{
  text-align:center;
  max-width:700px;
  margin:0 auto;
  padding:10px 20px;
}
.textBlock p{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#666666;
  line-height:1.7;
  margin-bottom:8px;
}
.textBlock a{color:#0000ff;text-decoration:underline}
.textBlock a:hover{color:#008000}

.linkList{
  text-align:center;
  padding:18px 0;
}
.linkList a{
  display:block;
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  color:#008000;
  text-decoration:underline;
  margin-bottom:8px;
  letter-spacing:.5px;
}
.linkList a:hover{color:#757575}

.reviewsWrap{
  background:#fafafa;
  padding:35px 0 40px;
  border-top:1px solid #e5e5e5;
  border-bottom:1px solid #e5e5e5;
}
.reviewsGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}
.reviewCard{
  background:#ffffff;
  padding:22px 25px;
  border:1px solid #e5e5e5;
}
.reviewCard-stars{
  color:#f5a623;
  font-size:14px;
  margin-bottom:8px;
  letter-spacing:2px;
}
.reviewCard-heading{
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  font-weight:400;
  color:#333;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:10px;
}
.reviewCard-text{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#666;
  line-height:1.7;
  margin-bottom:12px;
  font-style:italic;
}
.reviewCard-author{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#757575;
}

.ratingBadge{
  text-align:center;
  padding:15px 0 12px;
}
.ratingBadge-score{
  font-family:'Montserrat',sans-serif;
  font-size:18px;
  font-weight:400;
  color:#333;
}
.ratingBadge-stars{
  color:#f5a623;
  font-size:14px;
  letter-spacing:2px;
  margin:0 5px;
}
.ratingBadge-count{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#757575;
}

.form-fieldset{border:none;padding:0}
.form-row{
  display:flex;
  gap:15px;
  margin-bottom:0;
}
.form-row .form-field{flex:1}
.form-field{margin-bottom:14px}
.form-label{
  display:block;
  font-family:'Montserrat',sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#666666;
  margin-bottom:5px;
}
.form-label.is-srOnly{
  position:absolute;
  width:1px;height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}
.form-input{
  width:100%;
  border:1px solid #cccccc;
  padding:10px 12px;
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#666666;
  background:#ffffff;
  outline:none;
  -webkit-transition:border-color 0.3s ease;
  transition:border-color 0.3s ease;
}
.form-input:focus{border-color:#999999}
.form-input.has_error{border-color:#cc4749}
.form-textarea{
  width:100%;
  border:1px solid #cccccc;
  padding:10px 12px;
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#666666;
  background:#ffffff;
  outline:none;
  resize:vertical;
  -webkit-transition:border-color 0.3s ease;
  transition:border-color 0.3s ease;
}
.form-textarea:focus{border-color:#999999}
.form-error{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#cc4749;
  margin-top:3px;
  display:none;
}
.payBlock{
  margin:20px 0 22px;
  padding:20px;
  border:1px solid #e5e5e5;
  background:#fafafa;
}
.payBlock-title{
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#444;
  margin-bottom:15px;
}
.payOpt{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:8px;
  padding:10px 0;
  border-bottom:1px solid #e5e5e5;
  cursor:pointer;
}
.payOpt:last-child{border-bottom:none}
.payOpt input[type="radio"]{
  margin-top:3px;
  accent-color:#333;
}
.payOpt-name{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#333;
  flex:1;
  min-width:150px;
}
.payOpt-desc{
  width:100%;
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#757575;
  padding-left:22px;
  margin-top:-2px;
}

.summBox{
  border:1px solid #e5e5e5;
  padding:25px;
  background:#fafafa;
}
.summBox-title{
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#444;
  margin-bottom:15px;
  padding-bottom:10px;
  border-bottom:1px solid #e5e5e5;
}
.summBox-empty{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#999;
  padding:10px 0;
}
.summItem{
  display:flex;
  justify-content:space-between;
  padding:8px 0;
  border-bottom:1px solid #f0f0f0;
}
.summItem-name{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#444;
}
.summItem-total{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  color:#333;
}
.summBox-totalRow{
  display:flex;
  justify-content:space-between;
  padding:15px 0 5px;
  font-family:'Montserrat',sans-serif;
  font-size:15px;
  color:#333;
  letter-spacing:1px;
  text-transform:uppercase;
}
.summBox-note{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#999;
  margin-top:8px;
  line-height:1.5;
}

.button--primary{
  display:inline-block;
  padding:13px 30px;
  background:#209f0c;
  color:#ffffff;
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:1.5px;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
  text-align:center;
  width:100%;
}
.button--primary:hover{background:#666666;color:#ffffff}

.cartPanel-overlay{
  position:fixed;top:0;right:0;bottom:0;left:0;
  background:rgba(0,0,0,0.4);
  z-index:10001;
  display:none;
}
.cartPanel-overlay.open{display:block}
.cartPanel-box{
  position:absolute;
  right:0;top:0;bottom:0;
  width:380px;
  max-width:100vw;
  background:#fff;
  display:flex;flex-direction:column;
  box-shadow:-4px 0 20px rgba(0,0,0,.1);
}
.cartPanel-hdr{
  display:flex;justify-content:space-between;align-items:center;
  padding:20px 25px;
  border-bottom:1px solid #e5e5e5;
}
.cartPanel-title{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  letter-spacing:3px;
  text-transform:uppercase;
}
.cartPanel-close{
  font-size:24px;
  cursor:pointer;
  color:#333;
  line-height:1;
}
.cartPanel-items{
  flex:1;overflow-y:auto;
  padding:15px 25px;
}
.cartPanel-empty{
  font-family:'Karla',sans-serif;
  font-size:13px;color:#999;
  text-align:center;
  padding:40px 0;
}
.cartItem{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 0;
  border-bottom:1px solid #f0f0f0;
}
.cartItem-name{
  font-family:'Karla',sans-serif;
  font-size:13px;color:#333;
  margin-bottom:3px;
}
.cartItem-price{
  font-family:'Karla',sans-serif;
  font-size:12px;color:#757575;
}
.cartItem-controls{
  display:flex;align-items:center;gap:6px;
}
.cartItem-qtyBtn{
  width:26px;height:26px;
  border:1px solid #cccccc;background:transparent;
  cursor:pointer;font-size:14px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Montserrat',sans-serif;
  color:#333;
}
.cartItem-qtyBtn:hover{background:#f3f4f7}
.cartItem-qty{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  min-width:20px;text-align:center;
}
.cartItem-remove{
  border:none;background:transparent;cursor:pointer;
  color:#999;display:flex;align-items:center;
  margin-left:4px;font-size:18px;
}
.cartItem-remove:hover{color:#cc4749}
.cartPanel-footer{
  padding:20px 25px;
  border-top:1px solid #e5e5e5;
}
.cartPanel-totalRow{
  display:flex;justify-content:space-between;
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:15px;
}
.cartPanel-checkBtn{
  display:block;
  width:100%;
  text-align:center;
  padding:12px 30px;
  background:#209f0c;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.cartPanel-checkBtn:hover{background:#666666;color:#fff}

.cartNotif{
  position:fixed;
  bottom:-60px;
  left:50%;
  transform:translateX(-50%);
  background:#333;
  color:#fff;
  padding:12px 24px;
  font-family:'Karla',sans-serif;
  font-size:13px;
  display:flex;align-items:center;gap:8px;
  z-index:10002;
  -webkit-transition:bottom 0.3s ease;
  transition:bottom 0.3s ease;
  white-space:nowrap;
}
.cartNotif i{color:#008a06;font-size:18px}
.cartNotif.show{bottom:30px}

.prodModal-overlay{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.55);
  z-index:10000;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.prodModal-overlay.open{display:flex}
.prodModal-box{
  background:#fff;
  max-width:860px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
}
.prodModal-close{
  position:absolute;top:15px;right:20px;
  font-size:28px;cursor:pointer;color:#333;z-index:2;
}
.prodModal-content{display:flex;gap:0}
.prodModal-imgWrap{
  flex:1;
  position:relative;
  background:#f3f4f7;
  min-height:300px;
}
.prodModal-img{width:100%;height:100%;object-fit:cover}
.prodModal-imgWrap .card-badge{top:15px;left:15px}
.prodModal-info{
  flex:1;
  padding:35px 30px 30px;
  display:flex;flex-direction:column;
}
.prodModal-name{
  font-family:'Montserrat',sans-serif;
  font-size:20px;
  font-weight:400;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#444;
  margin-bottom:10px;
}
.prodModal-specs{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#757575;
  margin-bottom:12px;
  line-height:1.6;
}
.prodModal-desc{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#666;
  line-height:1.7;
  margin-bottom:12px;
}
.prodModal-stock{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#008a06;
  margin-bottom:15px;
}
.prodModal-stock.outOfStock{color:#cc4749}
.prodModal-priceRow{
  display:flex;align-items:baseline;gap:12px;
  margin-bottom:18px;
}
.prodModal-qtyRow{
  display:flex;align-items:center;gap:10px;
  margin-bottom:20px;
}
.prodModal-qtySel{
  width:70px;
  padding:6px 8px;
  border:1px solid #cccccc;
  font-family:'Karla',sans-serif;
  font-size:14px;
}
.prodModal-addBtn{
  width:100%;
  margin-top:auto;
  padding:12px 30px;
  background:#209f0c;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  -webkit-transition:all 0.3s ease;
  transition:all 0.3s ease;
}
.prodModal-addBtn:hover{background:#666666}

.ckBanner{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:99999;
  display:none;
}
.ckBanner-box{
  max-width:1100px;
  margin:0 auto;
  background:#222;
  color:#fff;
  padding:22px 30px;
  display:flex;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
  box-shadow:0 -2px 15px rgba(0,0,0,.15);
}
.ckBanner-text{
  flex:1;
  font-family:'Karla',sans-serif;
  font-size:12px;
  line-height:1.7;
  min-width:250px;
  color:#ccc;
}
.ckBanner-text a{color:#fff;text-decoration:underline}
.ckBanner-btns{display:flex;gap:10px;flex-wrap:wrap}
.ckBanner-btn{
  border:none;
  padding:10px 20px;
  font-family:'Montserrat',sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:1.5px;
  text-transform:uppercase;
  cursor:pointer;
  -webkit-transition:opacity 0.2s;
  transition:opacity 0.2s;
}
.ckBanner-btn:hover{opacity:.85}
.ckBtn--accept{background:#fff;color:#222}
.ckBtn--reject{background:transparent;color:#fff;border:1px solid #666}
.ckBtn--settings{background:transparent;color:#999;border:1px solid #555}

.ckSettings-overlay{
  position:fixed;top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.5);
  z-index:100000;
  display:none;
  align-items:center;justify-content:center;
  padding:20px;
}
.ckSettings-overlay.open{display:flex}
.ckSettings-box{
  background:#fff;
  max-width:480px;
  width:100%;
  max-height:90vh;
  overflow-y:auto;
}
.ckSettings-hdr{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 22px;
  border-bottom:1px solid #e5e5e5;
}
.ckSettings-title{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#333;
}
.ckSettings-close{
  font-size:22px;cursor:pointer;color:#333;line-height:1;
}
.ckSettings-body{padding:12px 22px}
.ckOpt-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:15px;
  padding:14px 0;
  border-bottom:1px solid #f0f0f0;
}
.ckOpt-row:last-child{border-bottom:none}
.ckOpt-name{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#333;
  margin-bottom:3px;
}
.ckOpt-desc{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#888;
  line-height:1.5;
}
.ckToggle{
  position:relative;
  display:inline-block;
  width:40px;height:22px;
  flex-shrink:0;
  margin-top:2px;
}
.ckToggle input{opacity:0;width:0;height:0}
.ckToggle-slider{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background:#ccc;
  cursor:pointer;
  -webkit-transition:background .2s;
  transition:background .2s;
  border-radius:0;
}
.ckToggle-slider:before{
  content:"";
  position:absolute;
  height:16px;width:16px;
  left:3px;bottom:3px;
  background:#fff;
  -webkit-transition:transform .2s;
  transition:transform .2s;
}
.ckToggle input:checked + .ckToggle-slider{background:#008000}
.ckToggle input:checked + .ckToggle-slider:before{transform:translateX(18px)}
.ckToggle-slider.locked{background:#4a7c59;cursor:not-allowed}
.ckToggle-slider.locked:before{transform:translateX(18px)}
.ckSettings-ftr{
  display:flex;gap:10px;
  padding:14px 22px 18px;
  border-top:1px solid #e5e5e5;
}
.ckSettings-ftr .ckBanner-btn{flex:1;text-align:center}

.orderWrap{
  padding:0;
  border-top:1px solid #e5e5e5;
  position:relative;
}
.orderWrap-header{
  background:#333;
  color:#fff;
  padding:35px 20px 30px;
  text-align:center;
}
.orderWrap-header .page-heading{color:#fff;margin-bottom:8px}
.orderWrap-header .page-heading--sub{color:rgba(255,255,255,.6);margin-top:0}
.orderWrap-body{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.orderWrap-layout{
  display:flex;
  gap:0;
  align-items:stretch;
  margin-top:-25px;
  position:relative;
  z-index:2;
}
.orderWrap-formSide{
  flex:3;
  min-width:0;
  background:#fff;
  border:1px solid #e5e5e5;
  border-right:none;
  padding:30px 28px 35px;
}
.orderWrap-summSide{
  flex:2;
  min-width:260px;
  background:#fafafa;
  border:1px solid #e5e5e5;
  padding:30px 25px 35px;
}
.orderWrap-formTitle{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#333;
  margin-bottom:22px;
  padding-bottom:12px;
  border-bottom:1px solid #e5e5e5;
}
.orderWrap-step{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.orderWrap-stepNum{
  width:28px;height:28px;
  background:#008000;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  display:flex;
  align-items:center;justify-content:center;
  flex-shrink:0;
}
.orderWrap-stepLabel{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#666;
}

.ftr-contact-line{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#444;
  line-height:1.7;
  cursor:default;
}

.footer{
  background:#c9d3cf;
  padding:0;
  margin-top:2rem;
}
.footer-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  flex-wrap:wrap;
  gap:10px;
}
.footer-topbar-brand{
  font-family:'Oswald',sans-serif;
  font-size:20px;
  font-weight:300;
  color:#333;
  letter-spacing:2px;
  text-transform:uppercase;
}
.footer-topbar-tagline{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#666;
  margin-left:15px;
}
.footer-topbar-right{
  display:flex;
  align-items:center;
}
.footer-info{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  padding:28px 0;
}
.footer-info-col{flex:1;min-width:200px}
.footer-info-heading{
  font-family:'Montserrat',sans-serif;
  font-size:15px;
  font-weight:400;
  color:#333;
  margin-bottom:12px;
  line-height:1.2;
}
.footer-info-list{
  list-style:none;
}
.footer-info-list li{
  margin-bottom:6px;
}
.footer-info-list a{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#444;
}
.footer-info-list a:hover{color:#008000}
.footer address{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#444;
  font-style:normal;
  line-height:1.7;
  margin-bottom:8px;
}
.footer strong{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#333;
  font-weight:400;
}
.footer-copyright{
  border-top:1px solid rgba(0,0,0,.1);
  padding:15px 0;
  text-align:center;
}
.footer-copyright .powered-by{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#666;
}
.footer-copyright a{color:#666}
.footer-copyright a:hover{color:#333}

.faq_wrap{padding:2rem 0 1.5rem}
.faq_inner{max-width:760px;margin:0 auto}
.faq_item{border-bottom:1px solid #e5e5e5}
.faq_q{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  cursor:pointer;
  gap:15px;
}
.faq_q span:first-child{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:400;
  color:#333;
}
.faq_arrow{
  font-size:20px;
  color:#999;
  -webkit-transition:transform .2s;
  transition:transform .2s;
  flex-shrink:0;
}
.faq_item.open .faq_arrow{transform:rotate(90deg)}
.faq_a{
  max-height:0;
  overflow:hidden;
  -webkit-transition:max-height .25s ease;
  transition:max-height .25s ease;
}
.faq_item.open .faq_a{max-height:300px}
.faq_a p{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#666;
  line-height:1.8;
  padding:0 0 16px;
}

.priceTable_wrap{
  margin:25px 0 10px;
  overflow-x:auto;
}
.priceTable_wrap table{
  width:100%;
  border-collapse:collapse;
  font-family:'Karla',sans-serif;
  font-size:13px;
}
.priceTable_wrap thead{
  background:#333;
  color:#fff;
}
.priceTable_wrap th{
  padding:12px 15px;
  text-align:left;
  font-family:'Montserrat',sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.priceTable_wrap td{
  padding:11px 15px;
  border-bottom:1px solid #e5e5e5;
  color:#444;
}
.priceTable_wrap tr:hover td{
  background:#fafafa;
}
.priceTable_price{
  font-family:'Montserrat',sans-serif;
  color:#333;
}
.priceTable_note{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#757575;
  margin-top:12px;
  line-height:1.6;
}

.matGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  max-width:1000px;
  margin:0 auto;
}
.matGrid-card{
  padding:20px 18px;
  border:1px solid #e5e5e5;
  text-align:center;
}
.matGrid-icon{
  font-size:32px;
  color:#008000;
  margin-bottom:10px;
}
.matGrid-name{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:400;
  color:#444;
  margin-bottom:6px;
}
.matGrid-desc{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#666;
  line-height:1.6;
}

.tipsList{
  max-width:760px;
  margin:0 auto;
  counter-reset:tipcount;
}
.tipsList-item{
  display:flex;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid #f0f0f0;
  align-items:flex-start;
}
.tipsList-item:last-child{border-bottom:none}
.tipsList-num{
  counter-increment:tipcount;
  font-family:'Montserrat',sans-serif;
  font-size:28px;
  color:#e5e5e5;
  line-height:1;
  min-width:32px;
  flex-shrink:0;
}
.tipsList-num:before{content:counter(tipcount)}
.tipsList-body{}
.tipsList-title{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:400;
  color:#333;
  margin-bottom:5px;
}
.tipsList-text{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#666;
  line-height:1.7;
}

@media(max-width:800px){
  .matGrid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:550px){
  .matGrid{grid-template-columns:1fr}
  .tipsList-item{gap:12px}
  .tipsList-num{font-size:22px;min-width:24px}
}

.separator{
  border:none;
  border-top:1px solid #e5e5e5;
  max-width:1200px;
  margin:0 auto;
}

@media(max-width:1024px){
  .productGrid{grid-template-columns:repeat(2,1fr);gap:20px}
  .infoCards{grid-template-columns:repeat(2,1fr)}
  .orderWrap-layout{flex-direction:column}
  .orderWrap-formSide{border-right:1px solid #e5e5e5;border-bottom:none}
  .orderWrap-summSide{min-width:0}
  .reviewsGrid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:800px){
  .mobileMenu-toggle{display:block}
  .navPages{
    display:none;
    position:fixed;
    top:0;right:0;bottom:0;left:0;
    background:rgba(0,0,0,.45);
    z-index:9999;
    border:none;
    padding:0;
  }
  .navPages.open{display:block}
  .navPages-list{
    position:absolute;
    right:0;top:0;bottom:0;
    width:280px;
    background:#fff;
    flex-direction:column;
    padding:60px 0 30px;
    gap:0;
    box-shadow:-4px 0 20px rgba(0,0,0,.1);
  }
  .navPages-action{
    padding:14px 25px;
    border-bottom:1px solid #e5e5e5;
    text-align:left;
  }
  .mobNav-close{
    position:absolute;top:15px;right:20px;
    font-size:28px;cursor:pointer;color:#333;
    z-index:10000;
    display:block;
  }
  .header-logo{margin:1rem auto}
  .heroCarousel-slide{min-height:300px}
  .heroCarousel-image{min-height:300px}
  .heroCarousel-title{font-size:28px;letter-spacing:2px}
  .heroCarousel-desc{font-size:14px}
  .catGrid{grid-template-columns:repeat(2,1fr)}
  .catGrid-imgWrap{width:110px;height:110px}
}
@media(max-width:550px){
  .productGrid{grid-template-columns:1fr;gap:15px}
  .infoCards{grid-template-columns:1fr}
  .reviewsGrid{grid-template-columns:1fr}
  .page-heading{font-size:20px}
  .cartPanel-box{width:100%}
  .form-row{flex-direction:column;gap:0}
  .heroCarousel-slide{min-height:250px}
  .heroCarousel-image{min-height:250px}
  .heroCarousel-title{font-size:22px}
  .catGrid{grid-template-columns:repeat(2,1fr)}
  .catGrid-imgWrap{width:90px;height:90px}
  .ckBanner-box{padding:18px 20px;gap:15px}
  .ckBanner-btns{width:100%}
  .ckBanner-btn{flex:1;text-align:center}
  .prodModal-content{flex-direction:column}
  .prodModal-imgWrap{min-height:220px;max-height:300px}
  .prodModal-info{padding:20px}
  .footer-info{flex-direction:column;gap:20px}
  .footer-topbar{flex-direction:column;text-align:center;gap:8px}
  .footer-topbar-tagline{margin-left:0;display:block;margin-top:2px}
  .footer-topbar-right{justify-content:center;flex-wrap:wrap}
  .orderWrap-layout{margin-top:-15px}
  .orderWrap-formSide{padding:22px 18px 28px}
  .orderWrap-summSide{padding:22px 18px 28px}
  .ckSettings-box{max-width:95%}
  .ckSettings-ftr{flex-wrap:wrap}
}
.sw-hero{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  overflow:hidden;
  max-height:320px;
}
.sw-hero-img{
  width:100%;
  height:320px;
  object-fit:cover;
}
.sw-hero-overlay{
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.4);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}
.sw-hero-title{
  font-family:'Oswald',sans-serif;
  font-size:36px;
  font-weight:300;
  color:#fff;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:10px;
}
.sw-hero-sub{
  font-family:'Karla',sans-serif;
  font-size:15px;
  color:rgba(255,255,255,.85);
}
.sw-stoffGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1050px;
  margin:25px auto 0;
}
.sw-stoffCard{
  border:1px solid #e5e5e5;
  padding:22px 20px 24px;
}
.sw-stoffCard-header{
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:400;
  color:#008000;
  margin-bottom:4px;
}
.sw-stoffCard-specs{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#888;
  margin-bottom:12px;
  line-height:1.4;
}
.sw-stoffCard-body{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#555;
  line-height:1.65;
}
.sw-imgRow{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:900px;
  margin:0 auto;
}
.sw-imgRow-item{overflow:hidden}
.sw-imgRow-item img{
  width:100%;
  height:280px;
  object-fit:cover;
}
.sw-imgRow-caption{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#888;
  margin-top:8px;
  line-height:1.5;
}
.sw-musterBox{
  max-width:700px;
  margin:0 auto;
  border:2px solid #008000;
  padding:28px 30px;
  display:flex;
  gap:20px;
  align-items:flex-start;
}
.sw-musterBox-icon{
  font-size:28px;
  color:#008000;
  flex-shrink:0;
  margin-top:2px;
}
.sw-musterBox-text p{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#444;
  line-height:1.7;
  margin-bottom:6px;
}

.ma-splitSection{
  display:flex;
  gap:35px;
  align-items:flex-start;
  max-width:1050px;
  margin:0 auto;
  padding:0 0 10px;
}
.ma-splitSection-img{
  flex:0 0 420px;
  overflow:hidden;
}
.ma-splitSection-img img{
  width:100%;
  height:340px;
  object-fit:cover;
}
.ma-splitSection-text{
  flex:1;
  padding-top:8px;
}
.ma-splitSection-text p{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#555;
  line-height:1.75;
}
.ma-stepsGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  max-width:950px;
  margin:0 auto;
}
.ma-step{
  display:flex;
  gap:15px;
  padding:20px;
  border:1px solid #e5e5e5;
  background:#fafafa;
  align-items:flex-start;
}
.ma-step-num{
  width:36px;height:36px;
  background:#008000;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:15px;
  display:flex;
  align-items:center;justify-content:center;
  flex-shrink:0;
}
.ma-step-title{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:400;
  color:#333;
  margin-bottom:6px;
}
.ma-step-text{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#666;
  line-height:1.65;
}
.ma-specTable{
  max-width:850px;
  margin:0 auto;
}
.ma-specRow{
  display:grid;
  grid-template-columns:180px 1fr 140px;
  border-bottom:1px solid #e5e5e5;
}
.ma-specRow--header{
  background:#333;
}
.ma-specRow--header .ma-specCell{
  font-family:'Montserrat',sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#fff;
  padding:12px 15px;
}
.ma-specCell{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#555;
  padding:11px 15px;
}
.ma-specCell--label{
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  color:#333;
}

.vs-topBanner{
  max-width:1200px;
  margin:0 auto;
  overflow:hidden;
}
.vs-topBanner-inner{
  position:relative;
  height:200px;
}
.vs-topBanner-img{
  width:100%;
  height:200px;
  object-fit:cover;
}
.vs-topBanner-overlay{
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
}
.vs-routeGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  max-width:1050px;
  margin:0 auto;
}
.vs-routeCard{
  border:1px solid #e5e5e5;
  padding:25px 22px 28px;
  text-align:center;
  position:relative;
}
.vs-routeCard--highlight{
  border-color:#008000;
  border-width:2px;
}
.vs-routeCard-icon{
  font-size:30px;
  color:#008000;
  margin-bottom:12px;
}
.vs-routeCard-title{
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:400;
  color:#333;
  margin-bottom:6px;
}
.vs-routeCard-price{
  font-family:'Montserrat',sans-serif;
  font-size:22px;
  color:#008000;
  margin-bottom:12px;
}
.vs-routeCard-text{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#666;
  line-height:1.65;
  margin-bottom:10px;
}
.vs-routeCard-note{
  font-family:'Karla',sans-serif;
  font-size:11px;
  color:#999;
  font-style:italic;
}
.vs-returnGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  max-width:1050px;
  margin:0 auto;
}
.vs-returnItem{
  text-align:center;
  padding:0 10px;
}
.vs-returnItem-icon{
  font-size:28px;
  color:#008000;
  margin-bottom:10px;
}
.vs-returnItem-title{
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  font-weight:400;
  color:#333;
  margin-bottom:8px;
}
.vs-returnItem-text{
  font-family:'Karla',sans-serif;
  font-size:13px;
  color:#666;
  line-height:1.65;
}

.kt-splitLayout{
  display:flex;
  gap:45px;
  align-items:flex-start;
  max-width:1050px;
  margin:0 auto;
  padding-bottom:10px;
}
.kt-infoSide{
  flex:0 0 340px;
}
.kt-infoBlock{
  margin-bottom:25px;
}
.kt-infoBlock-icon{
  font-size:20px;
  color:#008000;
  margin-bottom:6px;
}
.kt-infoBlock-title{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:400;
  color:#333;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:6px;
}
.kt-formSide{
  flex:1;
  border:1px solid #e5e5e5;
  min-width:0;
}
.kt-formSide-header{
  background:#333;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:16px 25px;
}
.kt-formSide form{
  padding:25px 25px 30px;
}

@media(max-width:1024px){
  .sw-stoffGrid{grid-template-columns:repeat(2,1fr)}
  .ma-splitSection{flex-direction:column}
  .ma-splitSection-img{flex:none;width:100%}
  .ma-stepsGrid{grid-template-columns:1fr}
  .vs-routeGrid{grid-template-columns:1fr;max-width:450px}
  .vs-returnGrid{grid-template-columns:1fr;max-width:500px}
  .kt-splitLayout{flex-direction:column}
  .kt-infoSide{flex:none;width:100%}
}
@media(max-width:800px){
  .sw-hero-title{font-size:26px;letter-spacing:2px}
  .ma-specRow{grid-template-columns:1fr;gap:0}
  .ma-specRow--header{display:none}
  .ma-specCell--label{
    font-size:10px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#888;
    padding-bottom:2px;
  }
  .ma-specCell{padding:6px 15px}
  .ma-specRow{padding:10px 0;border-bottom:1px solid #e5e5e5}
}
@media(max-width:550px){
  .sw-stoffGrid{grid-template-columns:1fr}
  .sw-imgRow{grid-template-columns:1fr}
  .sw-imgRow-item img{height:220px}
  .sw-musterBox{flex-direction:column;gap:12px;padding:22px 20px}
  .sw-hero{max-height:240px}
  .sw-hero-img{height:240px}
  .ma-splitSection-img img{height:240px}
  .vs-topBanner-inner{height:150px}
  .vs-topBanner-img{height:150px}
  .kt-formSide-header{padding:14px 18px}
  .kt-formSide form{padding:18px 18px 25px}
}
.lgl-wrap{
  max-width:740px;
  margin:0 auto;
  padding:35px 25px 50px;
}
.lgl-title{
  font-family:'Oswald',sans-serif;
  font-size:26px;
  font-weight:300;
  color:#333;
  letter-spacing:3px;
  text-transform:uppercase;
  margin-bottom:30px;
  padding-bottom:14px;
  border-bottom:2px solid #008000;
}
.lgl-section{
  margin-bottom:28px;
}
.lgl-heading{
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:400;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:#333;
  margin-bottom:8px;
}
.lgl-text{
  font-family:'Karla',sans-serif;
  font-size:14px;
  color:#555;
  line-height:1.8;
  margin-bottom:6px;
}
.lgl-text a{
  color:#008000;
  text-decoration:underline;
}
.lgl-text a:hover{color:#757575}
.lgl-cookieTable{
  margin:12px 0 8px;
  border:1px solid #e5e5e5;
}
.lgl-cookieRow{
  display:grid;
  grid-template-columns:140px 1fr 100px;
  border-bottom:1px solid #e5e5e5;
}
.lgl-cookieRow:last-child{border-bottom:none}
.lgl-cookieRow--head{
  background:#f5f5f5;
}
.lgl-cookieRow--head .lgl-cookieCell{
  font-family:'Montserrat',sans-serif;
  font-size:10px;
  font-weight:400;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#666;
}
.lgl-cookieCell{
  font-family:'Karla',sans-serif;
  font-size:12px;
  color:#555;
  padding:10px 12px;
  line-height:1.5;
}
.lgl-cookieCell--name{
  font-family:'Montserrat',sans-serif;
  font-size:12px;
  color:#333;
}
@media(max-width:550px){
  .lgl-wrap{padding:25px 15px 40px}
  .lgl-title{font-size:22px;letter-spacing:2px}
  .lgl-cookieRow{grid-template-columns:1fr;gap:0}
  .lgl-cookieRow--head{display:none}
  .lgl-cookieCell{padding:6px 12px}
  .lgl-cookieCell--name{padding-top:10px;text-transform:uppercase;font-size:10px;letter-spacing:1px;color:#888}
}