.access-layout {
  width: min(100%, var(--container));
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  gap: 46px;
}

.access-card h1 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(3.8rem, 7vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.carousel {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.carousel-track {
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.carousel-btn:hover {
  background: var(--blue);
}

.carousel-btn.prev {
  left: 18px;
}

.carousel-btn.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 6;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.dot.active {
  width: 28px;
  background: var(--blue);
  border-radius: 999px;
}

@media (max-width: 1050px) {
  .access-layout {
    grid-template-columns: 1fr;
  }

  .carousel {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .access-layout {
    gap: 42px;
  }

  .access-card h1 {
    font-size: 3.4rem;
  }

  .carousel {
    min-height: 520px;
  }
}

@media (max-width: 480px) {
  .access-card h1 {
    font-size: 2.85rem;
  }

  .carousel {
    min-height: 420px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}
.shop-top-notice {
  width: 100%;
  padding: 10px 20px;
  background: rgba(0, 109, 255, 0.92);
  color: var(--white);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.shop-top-notice span {
  margin-right: 8px;
}

.shop-top-notice a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-top-notice a:hover {
  color: #dbeafe;
}

@media (max-width: 520px) {
  .shop-top-notice {
    display: grid;
    gap: 4px;
    padding: 12px 16px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .shop-top-notice span {
    margin-right: 0;
  }
}