:root{
  --ac-navy:#12265f;
  --ac-orange:#ef6a21;
  --ac-cream:#f7f2ea;
  --ac-line:#e4e8ef;
  --ac-text:#25314f;
  --ac-muted:#6c758b;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--ac-cream);
  color:var(--ac-text);
}
.store-tour{
  max-width:1180px;
  margin:0 auto;
  padding:34px 18px 70px;
}
.store-tour__head{
  text-align:center;
  max-width:780px;
  margin:0 auto 26px;
}
.store-tour__eyebrow{
  display:inline-block;
  background:#fff2ea;
  color:#c75117;
  border:1px solid #ffd8c2;
  padding:7px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.8px;
  text-transform:uppercase;
  margin-bottom:12px;
}
.store-tour h1,
.store-tour h2{
  color:var(--ac-navy);
}
.store-tour h1{
  margin:0;
  font-size:clamp(28px,4vw,46px);
  line-height:1.06;
}
.store-tour__head p{
  color:var(--ac-muted);
  line-height:1.65;
  margin:13px auto 0;
}
.store-tour__notice{
  display:flex;
  gap:10px;
  align-items:flex-start;
  max-width:850px;
  margin:0 auto 24px;
  padding:13px 15px;
  border:1px solid #e5e8ef;
  border-radius:14px;
  background:#fff;
  color:#5f6880;
  font-size:13px;
  line-height:1.45;
}
.store-tour__notice strong{color:var(--ac-navy)}
.store-tour__tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}
.store-tour__tab{
  appearance:none;
  border:1px solid #dfe4ed;
  background:#fff;
  color:var(--ac-navy);
  border-radius:999px;
  padding:10px 15px;
  font-weight:800;
  cursor:pointer;
}
.store-tour__tab[aria-selected="true"]{
  background:var(--ac-navy);
  color:#fff;
  border-color:var(--ac-navy);
}
.store-tour__viewer{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#0d1530;
  box-shadow:0 18px 40px rgba(18,38,95,.15);
  min-height:330px;
  height:clamp(330px,46vw,590px);
  touch-action:pan-y;
  cursor:grab;
  user-select:none;
}
.store-tour__viewer.is-dragging{cursor:grabbing}
.store-tour__scene{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}
.store-tour__scene.is-active{
  opacity:1;
  pointer-events:auto;
}
.store-tour__scene img{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:auto;
  min-width:145%;
  max-width:none;
  object-fit:cover;
  object-position:center;
  transform:translate3d(0,0,0);
  will-change:transform;
  pointer-events:none;
  -webkit-user-drag:none;
}
.store-tour__gradient{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(3,9,25,.18),transparent 12%,transparent 88%,rgba(3,9,25,.18)),
    linear-gradient(0deg,rgba(3,9,25,.48),transparent 28%);
}
.store-tour__hint{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:5;
  background:rgba(255,255,255,.94);
  color:var(--ac-navy);
  border-radius:999px;
  padding:9px 14px;
  font-weight:800;
  font-size:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.15);
  pointer-events:none;
  white-space:nowrap;
}
.store-tour__arrows{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
  z-index:4;
  padding:0 12px;
}
.store-tour__arrow{
  pointer-events:auto;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--ac-navy);
  font-size:22px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.15);
}
.store-tour__footer{
  display:flex;
  justify-content:center;
  margin-top:22px;
}
.store-tour__back{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:11px;
  text-decoration:none;
  background:var(--ac-orange);
  color:#fff;
  font-weight:900;
}
.store-tour-card{
  max-width:1120px;
  margin:36px auto;
  padding:0 18px;
}
.store-tour-card__box{
  border-radius:22px;
  background:linear-gradient(135deg,var(--ac-navy),#203b80);
  color:#fff;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  box-shadow:0 14px 32px rgba(18,38,95,.15);
}
.store-tour-card h2{
  color:#fff;
  margin:0 0 7px;
  font-size:clamp(22px,3vw,32px);
}
.store-tour-card p{
  margin:0;
  opacity:.86;
  line-height:1.55;
}
.store-tour-card a{
  flex:0 0 auto;
  display:inline-block;
  background:var(--ac-orange);
  color:#fff;
  text-decoration:none;
  padding:12px 17px;
  border-radius:11px;
  font-weight:900;
}

@media(max-width:700px){
  .store-tour{padding-left:12px;padding-right:12px}
  .store-tour__viewer{
    height:430px;
    min-height:430px;
    border-radius:16px;
  }
  .store-tour__scene img{min-width:210%}
  .store-tour__arrow{width:38px;height:38px}
  .store-tour__hint{bottom:12px;font-size:11px}
  .store-tour-card__box{
    align-items:flex-start;
    flex-direction:column;
  }
}