.tfw-shop-page{
  background:#f7f2ec;
  padding-bottom:0;
}

.tfw-shop-banner{
  padding:120px 0 30px;
}

.tfw-shop-banner__inner{
  position:relative;
  overflow:visible;
  border-radius:28px;
  min-height:400px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:64px 360px 0 46px;
  background:
    linear-gradient(90deg, rgba(15,15,15,.16), rgba(15,15,15,.02)),
    url("../images/shop/bannerbkg.png") center/cover no-repeat;
  border:1px solid rgba(194,162,93,.18);
}

.tfw-shop-banner__content{
  position:relative;
  z-index:2;
  max-width:560px;
  color:#fff;
}

.tfw-shop-banner__eyebrow{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
}

.tfw-shop-banner__title{
  margin:0 0 14px;
  font-size:48px;
  line-height:1.06;
  font-family:ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight:650;
}

.tfw-shop-banner__text{
  margin:0;
  margin-bottom:34px;
  max-width:520px;
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.86);
}

.tfw-shop-banner__product{
  position:absolute;
  right:0;
  bottom:0;
  z-index:3;
  width:min(32vw, 420px);
}

.tfw-shop-banner__product img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  transform:translateY(0);
  border-bottom-right-radius:28px;
  transform-origin:bottom right;
}

.tfw-shop-main{
  padding:8px 0 56px;
}

.tfw-shop-layout{
  display:grid;
  grid-template-columns:290px 1fr;
  gap:28px;
  align-items:start;
}

.tfw-shop-sidebar{
  position:sticky;
  top:110px;
}

.tfw-shop-filters{
  background:#fffdfa;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:22px 18px;
  box-shadow:0 14px 30px rgba(0,0,0,.05);
}

.tfw-filter-group + .tfw-filter-group{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,.08);
}

.tfw-filter-title{
  margin-bottom:14px;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.7px;
  color:#151515;
}

.tfw-filter-list{
  display:grid;
  gap:10px;
}

.tfw-checkbox-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#2b2b2b;
  cursor:pointer;
}

.tfw-checkbox-row input{
  width:16px;
  height:16px;
}

.tfw-filter-empty{
  margin:0;
  font-size:13px;
  color:#7a7a7a;
}

.tfw-price-values{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
  font-size:14px;
  color:#151515;
}

.tfw-range-wrap{
  position:relative;
  height:28px;
}

.tfw-slider-track,
.tfw-slider-range{
  position:absolute;
  top:12px;
  height:4px;
  border-radius:999px;
}

.tfw-slider-track{
  left:0;
  right:0;
  background:rgba(0,0,0,.12);
}

.tfw-slider-range{
  background:#c2a25d;
}

.tfw-range-wrap input[type="range"]{
  position:absolute;
  left:0;
  top:4px;
  width:100%;
  pointer-events:none;
  -webkit-appearance:none;
  appearance:none;
  background:none;
  margin:0;
}

.tfw-range-wrap input[type="range"]::-webkit-slider-thumb{
  pointer-events:auto;
  -webkit-appearance:none;
  appearance:none;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  border:2px solid #151515;
  cursor:pointer;
}

.tfw-range-wrap input[type="range"]::-moz-range-thumb{
  pointer-events:auto;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#fff;
  border:2px solid #151515;
  cursor:pointer;
}

.tfw-filter-actions{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.tfw-filter-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  transition:.18s ease;
}

.tfw-filter-btn--ghost{
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#151515;
}

.tfw-filter-btn--ghost:hover{
  border-color:#c2a25d;
}

/* category strip */
.tfw-category-strip-wrap{
  margin-bottom:18px;
}

.tfw-category-strip-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}

.tfw-category-strip-title{
  font-size:13px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#6d6247;
}

.tfw-category-strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.tfw-category-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(194,162,93,.22);
  background:#fffdfa;
  color:#2b2b2b;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.18s ease;
  white-space:nowrap;
}

.tfw-category-chip:hover{
  border-color:rgba(194,162,93,.48);
  background:rgba(194,162,93,.10);
}

.tfw-category-chip.is-active{
  background:#151515;
  border-color:#151515;
  color:#fff;
}

/* main content */
.tfw-shop-content{
  min-width:0;
}

.tfw-shop-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.tfw-shop-count{
  font-size:14px;
  color:#4b4b4b;
}

.tfw-sort-select{
  min-width:190px;
  min-height:44px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-size:14px;
}

.tfw-products-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.tfw-product-card{
  overflow:hidden;
  border-radius:22px;
  background:#fffdfa;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 20px rgba(0,0,0,.04);
}

.tfw-product-card__image{
  display:block;
  aspect-ratio:1 / 1.08;
  background:#efe5d4;
  overflow:hidden;
}

.tfw-product-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .24s ease;
}

.tfw-product-card:hover .tfw-product-card__image img{
  transform:scale(1.03);
}

.tfw-product-card__body{
  padding:16px 16px 18px;
}

.tfw-product-card__title{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.35;
  font-weight:700;
  text-transform:none;
}

.tfw-product-card__title a{
  color:#151515;
  text-decoration:none;
}

.tfw-product-card__price{
  margin-bottom:14px;
  font-size:15px;
  color:#7a6a38;
  font-weight:700;
}

.tfw-product-card__price .amount{
  color:#7a6a38;
}

.tfw-product-card__actions .button,
.tfw-product-card__actions .add_to_cart_button,
.tfw-product-card__actions .product_type_simple{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px !important;
  border-radius:12px !important;
  border:1px solid #151515 !important;
  background:#151515 !important;
  color:#fff !important;
  text-decoration:none !important;
  font-size:13px !important;
  font-weight:600 !important;
  box-shadow:none !important;
}

.tfw-pagination{
  margin-top:28px;
}

.tfw-pagination ul{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:0;
  margin:0;
  list-style:none;
}

.tfw-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#151515;
  text-decoration:none;
}

.tfw-pagination .current{
  background:#151515;
  color:#fff;
  border-color:#151515;
}

.tfw-no-products{
  padding:40px 24px;
  border-radius:22px;
  background:#fffdfa;
  border:1px solid rgba(0,0,0,.08);
}

.tfw-no-products h3{
  margin:0 0 10px;
}

.tfw-no-products p{
  margin:0;
  color:#666;
}

@media (max-width: 1180px){
  .tfw-products-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .tfw-shop-banner__inner{
    min-height:auto;
  }

  .tfw-shop-banner__product{
    width:min(30vw, 320px);
  }
}

@media (max-width: 980px){
  .tfw-shop-banner__product{
    display:none;
  }

  .tfw-shop-layout{
    grid-template-columns:1fr;
  }

  .tfw-shop-sidebar{
    position:static;
    order:2;
  }

  .tfw-shop-content{
    order:1;
  }

  .tfw-shop-banner{
    padding-top:48px;
  }

  .tfw-shop-banner__inner{
    padding:34px 28px;
    min-height:auto;
  }

  .tfw-shop-banner__title{
    font-size:38px;
  }

  .tfw-category-strip{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:4px;
    scrollbar-width:none;
  }

  .tfw-category-strip::-webkit-scrollbar{
    display:none;
  }

  .tfw-category-chip{
    flex:0 0 auto;
  }
}

@media (max-width: 640px){
  .tfw-shop-banner__product{
    display:none;
  }

  .tfw-products-grid{
    grid-template-columns:1fr;
  }

  .tfw-shop-toolbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .tfw-shop-banner{
    padding-top:36px;
  }

  .tfw-shop-banner__inner{
    padding:28px 22px;
    min-height:auto;
  }

  .tfw-shop-banner__title{
    font-size:30px;
  }

  .tfw-shop-banner__text{
    font-size:14px;
  }

  .tfw-category-strip-title{
    font-size:12px;
  }

  .tfw-category-chip{
    min-height:38px;
    padding:0 14px;
    font-size:13px;
  }
}