/* =========================================================
   HERO
========================================================= */
.ls-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.ls-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ls-hero-image,
.ls-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ls-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.ls-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.ls-hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px;
}

.ls-hero-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 0 36px;
  opacity: 0.9;
}

.ls-hero-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.ls-hero-link {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid #fff;
  transition: 0.25s ease;
}

.ls-hero-link:hover {
  opacity: 0.7;
}

.hero-video-btn{
  position:absolute;
  right:20px;
  bottom:20px;
  z-index:4;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}

.hero-video-btn:hover{
  background:rgba(0,0,0,.65);
  transform:translateY(-1px);
}

.hero-video-btn svg{
  width:18px;
  height:18px;
  fill:#fff;
}

.hero-video-btn .icon-play{ display:none; }
.hero-video-btn.paused .icon-play{ display:block; }
.hero-video-btn.paused .icon-pause{ display:none; }

/* =========================================================
   TOKOGI FRONT PAGE
========================================================= */
.tk-home{
  background:#fff;
}

.tk-global-switcher-wrap,
.tk-section-intro,
.tk-product-viewport,
.tk-showcase-foot{
  width:min(1800px, 98vw);
  margin-left:auto;
  margin-right:auto;
}

.tk-showcase{
  background:#fff;
  padding:42px 0 52px;
}

.tk-global-switcher-wrap{
  margin-top:28px;
  margin-bottom:12px;
  display:flex;
  justify-content:center;
}

.tk-section-intro{
  margin-bottom:14px;
  text-align:center;
}

.tk-showcase-foot{
  margin-top:26px;
  display:flex;
  justify-content:center;
}

.tk-section-title{
  margin:0;
  color:#111;
  font-size:20px;
  font-weight:500;
  line-height:1.2;
  letter-spacing:.4em;
  text-transform:uppercase;
}

/* switcher */
.tk-switcher{
  display:inline-flex;
  gap:0;
  background:#fff;
  border:1px solid #d9d9d9;
}

.tk-switch{
  min-width:110px;
  height:44px;
  padding:0 18px;
  border:0;
  background:#fff;
  color:#111;
  cursor:pointer;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.tk-switch + .tk-switch{
  border-left:1px solid #d9d9d9;
}

.tk-switch.is-active{
  background:#111;
  color:#fff;
}

/* grid */
.tk-product-track{
  display:none;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:0;
  border-top:1px solid #ececec;
  border-bottom:1px solid #ececec;
}

.tk-product-track.is-active{
  display:grid;
}

.tk-prod-card{
  position:relative;
  background:#fff;
  border-right:1px solid #ececec;
}

.tk-prod-card:last-child{
  border-right:0;
}

.tk-prod-media{
  position:relative;
}

.tk-prod-image-link{
  display:block;
  background:#f5f5f5;
  aspect-ratio:4 / 6;
  overflow:hidden;
}

.tk-prod-img,
.tk-prod-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.tk-prod-meta{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 12px 16px;
}

.tk-prod-details{
  min-width:0;
}

.tk-prod-title{
  margin:0;
  font-size:14px;
  line-height:1.4;
  font-weight:500;
}

.tk-prod-title a{
  color:#111;
  text-decoration:none;
}

.tk-prod-price{
  color:#111;
  font-size:14px;
  line-height:1.4;
  margin-top:3px;
}

.tk-prod-stock{
  margin-top:3px;
  font-size:13px;
  color:#666;
}

.tk-prod-plus{
  border:0;
  background:transparent;
  color:#111;
  cursor:pointer;
  font-size:38px;
  line-height:1;
  padding:0;
  flex:0 0 auto;
}

/* quick panel */
.tk-quick-panel{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:#fff;
  border-top:1px solid #ececec;
  padding:16px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(10px);
  transition:all .24s ease;
  z-index:5;
}

.tk-prod-card.is-open .tk-quick-panel{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.tk-quick-close{
  position:absolute;
  top:12px;
  right:12px;
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  color:#111;
  cursor:pointer;
  font-size:28px;
  line-height:1;
}

.tk-quick-form{
  display:grid;
  gap:7px;
  padding-top:10px;
}

.tk-option-block{
  display:grid;
  gap:8px;
}

.tk-option-label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#111;
  font-weight:600;
}

.tk-option-values{
  display:flex;
  flex-wrap:wrap;
  gap:3px;
}

.tk-option-chip{
  min-width:44px;
  height:40px;
  padding:0 14px;
  border:1px solid #d9d9d9;
  background:#fff;
  color:#111;
  cursor:pointer;
  font-size:12px;
  transition:all .2s ease;
}

.tk-option-chip.is-active{
  background:#111;
  color:#fff;
  border-color:#111;
}

.tk-option-chip.is-disabled{
  position:relative;
  opacity:.35;
  pointer-events:none;
  cursor:not-allowed;
}

.tk-option-chip.is-disabled::after{
  content:"";
  position:absolute;
  left:10%;
  right:10%;
  top:50%;
  height:1.5px;
  background:currentColor;
  transform:rotate(-12deg);
}

.tk-hidden-select{
  display:none !important;
}

.tk-add-to-cart-btn{
  width:100%;
  height:48px;
  border:0;
  background:#111;
  color:#fff;
  cursor:pointer;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.tk-add-to-cart-btn:disabled{
  opacity:.4;
  cursor:not-allowed;
}

.tk-quickadd-msg{
  min-height:18px;
  font-size:12px;
  color:#444;
}

/* buttons */
.tk-more-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  height:44px;
  padding:0 18px;
  border:1px solid #111;
  background:#111;
  color:#fff;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.tk-more-btn:hover{
  background:#222;
}

/* banner */
.tk-campaign-banner{
  padding:0;
  background:#fff;
}

.tk-campaign-link{
  display:block;
  width:100%;
}

.tk-campaign-banner .tk-banner-panel{
  display:none;
}

.tk-campaign-banner .tk-banner-panel.is-active{
  display:block;
}

.tk-campaign-banner img{
  display:block;
  width:100%;
  height:min(68vw, 760px);
  object-fit:cover;
}

.tk-empty{
  grid-column:1 / -1;
  padding:44px 20px;
  color:#555;
  text-align:center;
  font-size:14px;
}

/* responsive */
@media (max-width:1280px){
  .tk-product-track{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:840px){
  .tk-showcase{
    padding:30px 0 38px;
  }

  .tk-product-track{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .tk-prod-meta{
    padding:11px 10px 13px;
  }
}

@media (max-width:560px){
  .tk-global-switcher-wrap{
    margin-top:20px;
    margin-bottom:10px;
  }

  .tk-section-title{
    font-size:15px;
    letter-spacing:.4em;
  }

  .tk-showcase{
    padding:24px 0 32px;
  }

  .tk-switch{
    min-width:84px;
    height:34px;
    padding:0 10px;
    font-size:10px;
    letter-spacing:.12em;
  }

  .tk-product-track{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .tk-prod-meta{
    padding:9px 8px 11px;
  }

  .tk-prod-title,
  .tk-prod-price,
  .tk-prod-stock{
    font-size:12px;
  }

  .tk-prod-plus{
    font-size:30px;
  }

  .tk-quick-panel{
    padding:12px;
  }

  .tk-option-chip{
    min-width:32px;
    height:26px;
    padding:0 12px;
    font-size:11px;
  }

  .tk-add-to-cart-btn{
    height:34px;
    font-size:11px;
  }

  .tk-campaign-banner img{
    height:58vw;
  }
}

@media (max-width:390px){
  .tk-switch{
    min-width:74px;
    height:32px;
    padding:0 8px;
    font-size:9px;
  }

  .tk-prod-title,
  .tk-prod-price,
  .tk-prod-stock{
    font-size:11px;
  }

  .tk-quick-panel{
    padding:10px;
  }
}