:root{
  --art-black:#111;
  --art-muted:#6d6d6d;
  --art-border:#e8e8e8;
  --art-gold:#b18a45;
  --art-white:#fff;
}
.art-premium-wrapper{
  width:100%;
  max-width:100%;
  margin:0 auto;
  color:var(--art-black);
}
.art-main-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin:0 0 28px;
}
.art-eyebrow,.art-category-kicker{
  display:block;
  font-size:10px;
  letter-spacing:2.4px;
  font-weight:700;
  color:var(--art-gold);
  margin-bottom:7px;
}
.art-main-heading h2{
  margin:0;
  font-size:clamp(26px,3vw,42px);
  line-height:1.08;
  font-weight:700;
  letter-spacing:-.5px;
}
.art-main-heading p{
  margin:8px 0 0;
  color:var(--art-muted);
  font-size:14px;
}
.art-category-section{
  position:relative;
  margin:0 0 48px;
}
.art-category-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:16px;
}
.art-category-title{
  margin:0;
  font-size:clamp(20px,2.2vw,30px);
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.25px;
}
.art-view-all{
  flex:0 0 auto;
  color:var(--art-black);
  text-decoration:none;
  border-bottom:1px solid var(--art-black);
  padding-bottom:3px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.7px;
  text-transform:uppercase;
  transition:.25s ease;
}
.art-view-all:hover{
  color:var(--art-gold);
  border-color:var(--art-gold);
}
.art-carousel{position:relative;}
.art-track{
  display:grid;
  grid-template-columns:repeat(var(--art-cols),minmax(0,1fr));
  gap:var(--art-gap);
  overflow:hidden;
  scroll-behavior:smooth;
}
.art-product-card{
  min-width:0;
  background:#fff;
  border:1px solid var(--art-border);
  border-radius:4px;
  overflow:hidden;
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
}
.art-product-card:hover{
  transform:translateY(-4px);
  border-color:#d7d0c3;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.art-product-image{
  display:block;
  background:#fafafa;
  aspect-ratio:1/1;
  overflow:hidden;
}
.art-product-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .4s ease;
}
.art-product-card:hover .art-product-image img{transform:scale(1.035);}
.art-product-content{
  padding:13px 14px 15px;
}
.art-product-title{
  margin:0;
  font-size:14px;
  line-height:1.4;
  font-weight:600;
  min-height:39px;
}
.art-product-title a{
  color:var(--art-black);
  text-decoration:none;
}
.art-product-title a:hover{color:var(--art-gold);}
.art-product-price{
  margin-top:8px;
  font-size:13px;
  font-weight:700;
  color:#444;
}
.art-product-price del{
  color:#999;
  margin-right:5px;
  font-weight:400;
}
.art-product-price ins{text-decoration:none;color:#444;}
.art-slide-button{
  display:inline-block;
  margin-top:11px;
  padding:8px 13px;
  background:#111;
  color:#fff!important;
  text-decoration:none!important;
  border-radius:2px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
}
.art-arrow{
  position:absolute;
  z-index:3;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:1px solid #ddd;
  border-radius:50%;
  background:#fff;
  color:#111;
  box-shadow:0 5px 18px rgba(0,0,0,.12);
  cursor:pointer;
  font-size:26px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s ease;
}
.art-arrow:hover{background:#111;color:#fff;border-color:#111;}
.art-prev{left:-19px;}
.art-next{right:-19px;}
.art-progress{
  height:2px;
  background:#eee;
  margin:16px auto 0;
  max-width:180px;
  overflow:hidden;
  display:none;
}
.art-progress span{
  display:block;
  height:100%;
  width:35%;
  background:#111;
  transition:transform .25s ease;
}
.art-slider-notice{
  padding:18px;
  border:1px solid #eee;
  background:#fafafa;
}
@media (max-width:1100px){
  .art-track{grid-template-columns:repeat(var(--art-tablet),minmax(0,1fr));}
  .art-prev{left:5px}.art-next{right:5px}
}
@media (max-width:700px){
  .art-category-section{margin-bottom:36px;}
  .art-category-header{align-items:center;}
  .art-category-title{font-size:21px;}
  .art-view-all{font-size:10px;}
  .art-track{
    grid-template-columns:repeat(var(--art-mobile),minmax(0,1fr));
    overflow-x:auto;
    scrollbar-width:none;
    scroll-snap-type:x mandatory;
  }
  .art-track::-webkit-scrollbar{display:none;}
  .art-product-card{scroll-snap-align:start;}
  .art-product-content{padding:10px 10px 12px;}
  .art-product-title{font-size:12px;min-height:34px;}
  .art-product-price{font-size:12px;}
  .art-arrow{width:32px;height:32px;font-size:22px;}
  .art-prev{left:2px}.art-next{right:2px}
  .art-progress{display:block;}
}
