/* Canna HQ homepage commerce blocks - v6.1 refined */
.chq-home-block{
  max-width:1180px;
  margin:84px auto;
  padding:0 24px;
  --chq-gold:#d6b35a;
  --chq-green:#064B38;
  --chq-ink:#071f1a;
  --chq-card:#141414;
  --chq-soft:#fbf8f1;
}
.chq-home-head{
  text-align:center;
  margin:0 auto 34px;
  max-width:720px;
}
.chq-home-head span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(214,179,90,.10);
  color:var(--chq-gold);
  border:1px solid rgba(214,179,90,.18);
  padding:7px 14px;
  border-radius:999px;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.chq-home-head h2{
  margin:16px 0 10px!important;
  color:#fff;
  font-size:clamp(26px,2.6vw,30px)!important;
  line-height:1.12!important;
  font-weight:700!important;
  letter-spacing:-.035em!important;
}
.chq-home-head p{
  margin:0 auto;
  color:rgba(255,255,255,.68);
  font-size:15px;
  line-height:1.75;
  max-width:610px;
}
.chq-home-product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}
.chq-home-card{
  background:linear-gradient(180deg,#181818,#101010);
  border:1px solid rgba(214,179,90,.12);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 54px rgba(0,0,0,.24);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
  text-decoration:none!important;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.chq-home-card:hover{
  transform:translateY(-5px);
  border-color:rgba(214,179,90,.32);
  box-shadow:0 30px 70px rgba(0,0,0,.32);
}
.chq-home-card-image{
  display:flex;
  height:250px;
  background:radial-gradient(circle at 50% 20%,#fff 0,#fbf8f1 52%,#f2ecdc 100%);
  align-items:center;
  justify-content:center;
  padding:28px;
  margin:14px 14px 0;
  border-radius:20px;
}
.chq-home-card-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform:scale(.98);
  transition:transform .22s ease;
}
.chq-home-card:hover .chq-home-card-image img{transform:scale(1.035)}
.chq-home-card-body{
  padding:20px 22px 22px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.chq-home-card-cat{
  display:block;
  color:var(--chq-gold);
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:10px;
  min-height:13px;
}
.chq-home-card h3{
  margin:0 0 16px!important;
  font-size:16px!important;
  line-height:1.34!important;
  font-weight:700!important;
  min-height:43px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.chq-home-card h3 a{color:#fff!important;text-decoration:none!important}
.chq-home-card-price{
  color:var(--chq-gold);
  font-weight:800;
  font-size:20px;
  line-height:1;
  margin:auto 0 18px;
}
.chq-home-card-price del{opacity:.45;font-size:.76em;margin-right:6px}.chq-home-card-price ins{text-decoration:none}
.chq-home-card-button{
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#075d45,#043f31);
  color:#fff!important;
  border-radius:999px;
  padding:13px 18px;
  min-height:46px;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.04em;
  font-weight:800;
  text-decoration:none!important;
  box-shadow:0 14px 26px rgba(6,75,56,.24);
}
.chq-home-card-button:hover{filter:brightness(1.05)}
/* Categories */
.chq-home-category-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.chq-home-category{
  position:relative;
  min-height:190px;
  display:flex!important;
  align-items:flex-end;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(214,179,90,.14);
  background:linear-gradient(135deg,#123f33,#0b261f);
  color:#fff!important;
  text-decoration:none!important;
  box-shadow:0 20px 48px rgba(0,0,0,.24);
  transition:transform .22s ease,border-color .22s ease;
}
.chq-home-category:hover{transform:translateY(-4px);border-color:rgba(214,179,90,.34)}
.chq-home-category-img{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.chq-home-category.has-image .chq-home-category-img img{
  width:100%;height:100%;object-fit:cover;opacity:.65;filter:saturate(.85) contrast(1.05);transition:transform .28s ease;
}
.chq-home-category.has-image:hover .chq-home-category-img img{transform:scale(1.05)}
.chq-home-category.has-fallback .chq-home-category-img{
  background:radial-gradient(circle at 75% 15%,rgba(214,179,90,.22),transparent 34%),linear-gradient(135deg,#09372b,#061c17);
}
.chq-category-fallback-icon{
  width:82px;height:82px;border-radius:28px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(214,179,90,.22);
  color:var(--chq-gold);
  font-size:38px;
  font-weight:400;
}
.chq-home-category-copy{
  position:relative;
  z-index:2;
  width:100%;
  padding:22px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.66));
}
.chq-home-category strong{
  display:block;
  color:#fff;
  font-size:20px;
  line-height:1.15;
  font-weight:700;
  letter-spacing:-.02em;
  margin-bottom:6px;
}
.chq-home-category em{
  font-style:normal;
  color:var(--chq-gold);
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
@media(max-width:1024px){
  .chq-home-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .chq-home-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:560px){
  .chq-home-block{margin:52px auto;padding:0 16px}
  .chq-home-product-grid,.chq-home-category-grid{grid-template-columns:1fr}
  .chq-home-card-image{height:220px}
  .chq-home-head h2{font-size:28px!important}
}

/* v6.2 lifestyle category replacement + softer commerce typography */
.chq-home-block{max-width:1180px;margin:78px auto;}
.chq-home-head h2{
  font-size:clamp(25px,2.35vw,46px)!important;
  font-weight:650!important;
  letter-spacing:-.028em!important;
}
.chq-home-head p{font-size:14px;line-height:1.75;}
.chq-home-card h3{font-weight:650!important;}
.chq-home-card-price{font-size:19px;font-weight:750;}
.chq-home-card-button{font-size:11px;letter-spacing:.055em;}

.chq-lifestyle-categories{max-width:1220px;}
.chq-lifestyle-group{margin-top:34px;}
.chq-lifestyle-group h3{
  color:#fff!important;
  margin:0 0 22px!important;
  font-size:clamp(22px,2vw,30px)!important;
  font-weight:650!important;
  letter-spacing:-.025em!important;
  position:relative;
  display:inline-block;
}
.chq-lifestyle-group h3:after{
  content:"";
  display:block;
  width:48px;
  height:2px;
  border-radius:4px;
  background:#d6b35a;
  margin-top:12px;
}
.chq-lifestyle-grid{
  display:grid;
  gap:22px;
}
.chq-lifestyle-grid-main{grid-template-columns:repeat(4,minmax(0,1fr));}
.chq-lifestyle-grid-accessories{grid-template-columns:repeat(6,minmax(0,1fr));gap:18px;}
.chq-lifestyle-tile{
  position:relative;
  display:flex!important;
  align-items:flex-end;
  justify-content:center;
  min-height:210px;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none!important;
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 46px rgba(0,0,0,.28);
  isolation:isolate;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.chq-lifestyle-grid-accessories .chq-lifestyle-tile{min-height:160px;border-radius:16px;}
.chq-lifestyle-tile:hover{
  transform:translateY(-5px);
  box-shadow:0 28px 70px rgba(0,0,0,.36);
  border-color:rgba(214,179,90,.34);
}
.chq-lifestyle-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.01);
  transition:transform .3s ease,filter .3s ease;
  z-index:-2;
}
.chq-lifestyle-tile.has-fallback .chq-lifestyle-bg{
  background:radial-gradient(circle at 70% 20%,rgba(214,179,90,.24),transparent 35%),linear-gradient(135deg,#0b4d3d,#071c18);
}
.chq-lifestyle-tile:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.18) 45%,rgba(0,0,0,.50));
  z-index:-1;
}
.chq-lifestyle-tile:hover .chq-lifestyle-bg{transform:scale(1.07);filter:saturate(1.05) contrast(1.04);}
.chq-lifestyle-label{
  display:flex;
  align-items:center;
  justify-content:center;
  width:min(72%,180px);
  min-height:52px;
  margin:0 18px 18px;
  padding:12px 18px;
  border-radius:12px;
  background:rgba(255,255,255,.94);
  color:#102720;
  font-size:15px;
  line-height:1.1;
  font-weight:750;
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}
.chq-lifestyle-grid-accessories .chq-lifestyle-label{
  width:calc(100% - 26px);
  min-height:44px;
  margin:0 13px 13px;
  font-size:13px;
  border-radius:10px;
  padding:10px 12px;
}

@media(max-width:1024px){
  .chq-lifestyle-grid-main{grid-template-columns:repeat(2,minmax(0,1fr));}
  .chq-lifestyle-grid-accessories{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media(max-width:640px){
  .chq-lifestyle-grid-main,.chq-lifestyle-grid-accessories{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
  .chq-lifestyle-tile{min-height:150px;border-radius:15px;}
  .chq-lifestyle-grid-accessories .chq-lifestyle-tile{min-height:130px;}
  .chq-lifestyle-label{width:calc(100% - 24px);min-height:42px;margin:0 12px 12px;font-size:13px;padding:9px 12px;}
}

/* v6.3 Retail North style New Arrivals slider */
.chq-product-slider-section{
  max-width:1220px;
}
.chq-slider-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:26px;
}
.chq-slider-head span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(214,179,90,.10);
  color:#d6b35a;
  border:1px solid rgba(214,179,90,.18);
  padding:7px 14px;
  border-radius:999px;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.16em;
}
.chq-slider-head h2{
  margin:16px 0 8px!important;
  color:#fff;
  font-size:clamp(25px,2.35vw,36px)!important;
  line-height:1.12!important;
  font-weight:650!important;
  letter-spacing:-.028em!important;
}
.chq-slider-head p{
  margin:0;
  max-width:560px;
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.7;
}
.chq-slider-controls{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}
.chq-slider-controls button{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(214,179,90,.24);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.chq-slider-controls button:hover{
  background:#d6b35a;
  color:#06251f;
  transform:translateY(-2px);
}
.chq-product-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:4px 2px 18px;
  scrollbar-width:thin;
  scrollbar-color:#d6b35a rgba(255,255,255,.08);
}
.chq-product-slider::-webkit-scrollbar{height:8px;}
.chq-product-slider::-webkit-scrollbar-track{background:rgba(255,255,255,.06);border-radius:999px;}
.chq-product-slider::-webkit-scrollbar-thumb{background:#d6b35a;border-radius:999px;}
.chq-slider-card{
  flex:0 0 min(560px, calc(100vw - 44px));
  scroll-snap-align:start;
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  min-height:245px;
  border-radius:24px;
  background:linear-gradient(135deg,#181818,#101010);
  border:1px solid rgba(214,179,90,.13);
  box-shadow:0 22px 60px rgba(0,0,0,.25);
  overflow:hidden;
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.chq-slider-card:hover{
  transform:translateY(-5px);
  border-color:rgba(214,179,90,.34);
  box-shadow:0 32px 78px rgba(0,0,0,.34);
}
.chq-slider-card-image{
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at 50% 25%,#fff 0,#fbf8f1 50%,#f2ecdc 100%);
  padding:24px;
  min-height:245px;
}
.chq-slider-card-image img{
  width:100%;
  height:100%;
  max-height:190px;
  object-fit:contain;
  transition:transform .25s ease;
}
.chq-slider-card:hover .chq-slider-card-image img{transform:scale(1.045);}
.chq-slider-card-content{
  padding:26px 26px 24px;
  display:flex;
  flex-direction:column;
  min-width:0;
}
.chq-slider-card-cat{
  display:block;
  color:#d6b35a;
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.chq-slider-card h3{
  margin:0 0 10px!important;
  color:#fff;
  font-size:21px!important;
  line-height:1.18!important;
  font-weight:650!important;
  letter-spacing:-.02em!important;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.chq-slider-card h3 a{color:#fff!important;text-decoration:none!important;}
.chq-slider-card p{
  margin:0 0 20px;
  color:rgba(255,255,255,.66);
  font-size:13px;
  line-height:1.62;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.chq-slider-card-footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.chq-slider-card-footer strong{
  color:#d6b35a;
  font-size:22px;
  line-height:1;
  font-weight:750;
  white-space:nowrap;
}
.chq-slider-card-footer a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:12px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,#075d45,#043f31);
  color:#fff!important;
  text-decoration:none!important;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.055em;
  font-weight:800;
  box-shadow:0 14px 26px rgba(6,75,56,.24);
  white-space:nowrap;
}
@media(max-width:760px){
  .chq-slider-head{align-items:flex-start;flex-direction:column;}
  .chq-slider-card{grid-template-columns:1fr;flex-basis:82vw;}
  .chq-slider-card-image{min-height:210px;}
  .chq-slider-card-content{padding:22px;}
  .chq-slider-card h3{font-size:18px!important;}
  .chq-slider-card-footer{align-items:flex-start;flex-direction:column;gap:14px;}
  .chq-slider-card-footer a{width:100%;}
}


/* v6.4 Slider controls alignment and premium polish */
.chq-product-slider-section .chq-slider-head{
  align-items:center;
  margin-bottom:28px;
}
.chq-product-slider-section .chq-slider-controls{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  align-self:center;
  margin:0 0 6px;
}
.chq-product-slider-section .chq-slider-controls button{
  width:52px;
  height:52px;
  min-width:52px;
  min-height:52px;
  padding:0!important;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(214,179,90,.28);
  background:rgba(255,255,255,.045);
  color:#ffffff;
  font-size:0!important;
  line-height:1!important;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
  transition:background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.chq-product-slider-section .chq-slider-controls button:before{
  display:block;
  font-size:24px;
  line-height:1;
  font-weight:700;
  transform:translateY(-3px);
}
.chq-product-slider-section .chq-slider-controls .chq-slider-prev:before{content:'‹';}
.chq-product-slider-section .chq-slider-controls .chq-slider-next:before{content:'›';}
.chq-product-slider-section .chq-slider-controls button:hover{
  background:#d6b35a;
  color:#06251f;
  border-color:#d6b35a;
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(214,179,90,.16), 0 18px 44px rgba(0,0,0,.22);
}
.chq-product-slider-section .chq-product-slider{
  padding-top:6px;
}
@media(max-width:760px){
  .chq-product-slider-section .chq-slider-head{
    align-items:center;
    text-align:center;
  }
  .chq-product-slider-section .chq-slider-controls{
    width:100%;
    justify-content:center;
    margin-top:6px;
  }
  .chq-product-slider-section .chq-slider-controls button{
    width:48px;
    height:48px;
    min-width:48px;
    min-height:48px;
  }
}


.chq-brands-section{
  padding:80px 0;
}

.chq-brands-grid{
    max-width:1280px;
    margin:50px auto 0;

    display:grid;
    grid-template-columns:repeat(6,minmax(180px,1fr));
    gap:26px;
}

.chq-brand-logo{
    width:100%;
    height:110px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:24px;

    border:1px solid rgba(214,179,90,.15);
    border-radius:18px;

    background:rgba(255,255,255,.04);

    box-sizing:border-box;

    transition:.3s;
}

.chq-brand-logo img{
    width:100%;
    max-width:170px;
    max-height:78px;
    object-fit:contain;

    filter:brightness(0) invert(1);
    opacity:.78;

    transition:.3s ease;
}
.chq-brand-logo:hover img{
    filter:brightness(0) invert(1);
    opacity:.78;
    transform:scale(1.05);
}
.chq-brand-logo:hover{
  transform:translateY(-4px);
  border-color:rgba(214,179,90,.55);
  background:rgba(214,179,90,.08);
}



@media(max-width:1024px){
  .chq-brands-grid{
    grid-template-columns:repeat(4,1fr);
  }
}

@media(max-width:767px){
  .chq-brands-grid{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .chq-brand-logo{
    min-height:70px;
    padding:18px;
  }

  .chq-brand-logo img{
    max-width:120px;
    max-height:48px;
  }
}