/* Accessibility */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.5rem;
  z-index: 999;
}

/* Fieldset Accessibility */
fieldset {
    border: none;
    box-shadow: none;
    background: transparent;
    margin: 0;
    padding: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
}

/* visually-hidden helper */
.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Form Focus Styling */
input:focus,
button:focus,
a:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Checkbox Custom Styling (optional) */
.check-row input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

/* Focus Button Styling */
button:focus-visible {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Optional: Focus visible for form elements */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}


/* ------------- HERO SLIDER - WEB B ACCESSIBLE PREMIUM ----------------------- */
/*.hero,
.hero * {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}*/

.hero {
  width: 100%;
  min-height: 90vh;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #020208;
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-track {
  position: relative;
  width: 100%;
  min-height: 90vh;
}

.hero-slide {
  --accent: #ff4fd8;
  --accent-2: #a855ff;
  --accent-soft: rgba(255, 79, 216, 0.22);
  --accent-border: rgba(255, 120, 224, 0.95);

  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.8s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide-green {
  --accent: #d9b76a;
  --accent-2: #37e39b;
  --accent-soft: rgba(55, 227, 155, 0.20);
  --accent-border: rgba(217, 183, 106, 0.95);
}

.hero-slide-blue {
  --accent: #22dfff;
  --accent-2: #4f7dff;
  --accent-soft: rgba(34, 223, 255, 0.22);
  --accent-border: rgba(34, 223, 255, 0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 52%, var(--accent-soft) 0%, rgba(0, 0, 0, 0) 35%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.90) 24%,
      rgba(0, 0, 0, 0.66) 43%,
      rgba(0, 0, 0, 0.24) 66%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  color: #ffffff;
  padding: 34px 0;
}

.hero-subtitle {
  position: relative;
  display: inline-block;
  margin: 0 0 34px;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.65);
}

.hero-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 230px;
  max-width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), rgba(255, 255, 255, 0));
}

.hero-title {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -3px;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.78);
}

.hero-desc {
  max-width: 650px;
  margin: 0 0 18px;
  font-size: clamp(19px, 1.65vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72);
}

.hero-features {
  max-width: 680px;
  margin: 0 0 38px;
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.65;
  font-weight: 500;
  color: #f1f1f1;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.75);
}

.hero-features span {
  display: inline-block;
  margin: 0 10px;
  color: var(--accent);
  font-weight: 900;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 14px 34px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid var(--accent-border);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background: #ffffff;
  color: #080808;
  transform: translateY(-2px);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.60);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.50);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 4;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-dot.active {
  width: 34px;
  border-radius: 999px;
  background: #ffffff;
}

/* PRODUKTLISTE */
.store-slider-section {
  width: 100%;
  padding: 80px 0;
  background: #f5f5f5;
  margin-top: -38px;
  position: relative;
  z-index: 3;
  border-radius: 42px 42px 0 0;
}

.store-slider-container {
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}

.store-slider-header {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.store-slider-title h2 {
  font-size: 90px;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1;
}

.store-slider-text {
  max-width: 430px;
  text-align: right;
}

.store-slider-text h3 {
  font-size: 36px;
  line-height: 1.2;
  /*color: #646466;*/
  margin-bottom: 18px;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(90deg, #8e79ff 0%, #35c4ff 40%, #7a5cff 75%, #8e79ff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: dealsShine 6s linear infinite;
  position: relative;
}

.store-slider-text a {
  display: block;
  color: #06c;
  font-size: 16px;
  margin-bottom: 10px;
  text-decoration: none;
}

.store-slider-wrapper {
  position: relative;
  width: 100%;
}

.store-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
  width: 100%;  
}

.store-slider::-webkit-scrollbar {
  display: none;
}

.store-item {
  padding: 18px 18px 22px;
  flex: 0 0 auto;
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.store-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
}

.store-link:focus,
.store-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #06c;
}

.store-item:hover,
.store-item:focus-within {
 transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.store-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.store-item p {
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  text-align: center;
}

/* BUTTON */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 22px;
  color: #111;
  z-index: 10;
  transition: 0.3s ease;

}

.slider-btn:hover{
 background: #111;
  color: #fff;
}

.slider-btn.prev {
  left: -22px;
}

.slider-btn.next {
  right: -22px;
}


/* RESPONSIVE PRODUKTLISTE */
@media (max-width: 1024px) {
  .store-slider-section {
    padding: 55px 0;
  }

  .store-slider-header {
    width: 92%;
    margin-bottom: 35px;
    gap: 20px;
  }

  .store-slider-title h2 {
    font-size: 60px;
  }

  .store-slider-text h3 {
    font-size: 28px;
  }

  .store-slider {
    gap: 30px;
    padding: 0 55px;
  }

  .store-item {
    width: 180px;
  }

  .store-item img {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .store-slider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-slider-title h2 {
    font-size: 46px;
  }

  .store-slider-text {
    max-width: 100%;
    text-align: left;
  }

  .store-slider-text h3 {
    font-size: 24px;
  }

  .store-slider {
    gap: 24px;
    padding: 0 20px;
  }

  .store-item {
    width: 150px;
  }

  .store-item img {
    height: 120px;
    margin-bottom: 12px;
  }

  .store-item p {
    font-size: 14px;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-size: 18px;
    color: #111;
    z-index: 10;
    transition: 0.3s ease;
  }

  .slider-btn:hover{
  background: #111;
    color: #fff;
  }

  .slider-btn.prev {
    left: -22px;
  }

  .slider-btn.next {
    right: -22px;
  }
}

@media (max-width: 480px) {
  .store-slider-section {
    padding: 40px 0;
  }

  .store-slider-title h2 {
    font-size: 36px;
  }

  .store-slider-text h3 {
    font-size: 20px;
  }

  .store-slider-text a {
    font-size: 14px;
  }

  .store-item {
    width: 132px;
  }

  .store-item img {
    height: 104px;
  }
}

/* PROMOTION SECTION */
.promo-section {
  width: 100%;
  padding: 90px 0;
  background: #f5f5f7;
}

.promo-card {
  width: 85%;
  max-width: 1400px;
  min-height: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  isolation: isolate;
  background: #06040c;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease, filter 0.75s ease;
  z-index: 0;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(7, 3, 14, 0.78) 35%,
      rgba(12, 5, 22, 0.44) 60%,
      rgba(0, 0, 0, 0.20) 100%
    );
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.promo-glow {
  display: none;
}

.promo-content {
  position: relative;
  z-index: 4;
  min-height: 680px;
  width: min(620px, 92%);
  padding: 72px 0 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-align: left;
}

.promo-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #080808;
  background: #ffffff;
}

.promo-eyebrow {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

.promo-content h2 {
  margin: 0 0 22px;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: -2.4px;
  color: #ffffff;
}

.promo-content h2 span {
  display: block;
  color: #ffffff;
}

.promo-desc {
  max-width: 520px;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  color: #f2f2f2;
}

.promo-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 118px));
  gap: 14px;
  margin-bottom: 34px;
}

.promo-highlights div {
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.promo-highlights strong {
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
  line-height: 1;
  font-weight: 850;
  color: #ffffff;
}

.promo-highlights small {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}

.promo-btn {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid #ffffff;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.promo-btn:hover,
.promo-btn:focus-visible {
  background: #ffffff;
  color: #080808;
  transform: translateY(-3px);
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.30);
}

.promo-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

/* PRODUKTDETAIL - PREMIUM DEAL SECTION */
.product-section {
  width: 100%;
  padding: 96px 0 110px;
  background: linear-gradient(180deg, #f7f7fa 0%, #f1f2f6 100%);
  position: relative;
  overflow: hidden;
}

.product-container {
  width: 85%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 54px;
}

.section-title h2 {
  display: inline-block;
  margin: 0 0 22px;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -2px;
  color: #101014;
  background: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
}

.section-title > span {
  display: inline-block;
  width: 110px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: #005fcc;
}

.offer-timer {
  width: fit-content;
  margin: 0 auto;
  padding: 18px 28px 20px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #d9dde7;
  box-shadow: 0 18px 45px rgba(18, 24, 40, 0.08);
}

.offer-timer-label {
  margin: 0 0 14px;
  font-size: 15px;
  color: #4d5563;
  font-weight: 800;
}

.offer-timer-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.time-box {
  min-width: 68px;
  padding: 10px 12px;
  text-align: center;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #d9dde7;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.time-box small {
  display: block;
  margin-bottom: 7px;
  font-size: 11px;
  color: #4d5563;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.time-label {
  display: block;
  font-size: 24px;
  font-weight: 750;
  color: #101014;
  line-height: 1;
}

.time-separator {
  font-size: 22px;
  font-weight: 850;
  color: #005fcc;
  transform: translateY(9px);
}

.product-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.product-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding: 16px 4px 28px;
  scroll-snap-type: x mandatory;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  flex: 0 0 286px;
  display: block;
  background: #ffffff;
  border: 1px solid #d9dde7;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  scroll-snap-align: start;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card::before {
  content: "-20%";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  color: #ffffff;
  background: #005fcc;
}

.product-card:nth-child(2)::before {
  content: "Hot Deal";
}

.product-card:nth-child(3)::before {
  content: "-15%";
}

.product-card:nth-child(4)::before {
  content: "Neu";
}

.product-card:nth-child(5)::before {
  content: "Premium";
  background: #111111;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-10px);
  border-color: #005fcc;
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.13);
}

.product-image {
  height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 10px;
  background: #ffffff;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img,
.product-card:focus-visible .product-image img {
  transform: scale(1.07) translateY(-4px);
}
/* INFO */
.product-info {
  padding: 22px 22px 24px;
  background: #ffffff;
}

.product-info h3 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px; 
  color: #111116;
  letter-spacing: -0.4px;
}

.product-info p {
  min-height: 44px;
  font-size: 15px;
  line-height: 1.45;
  color: #4d5563;
  margin: 0 0 14px;
}

.price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.price::after {
  content: "Deal";
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #003b80;
  background: #e8f1ff;
}

.product-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid #d9dde7;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  font-size: 22px;
  color: #101014;
  z-index: 10;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.product-slider-btn:hover,
.product-slider-btn:focus-visible {
  background: #101014;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.product-slider-btn.prev {
  left: -26px;
}

.product-slider-btn.next {
  right: -26px;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .store-slider-container,
  .product-container {
    width: 90%;
  }

  .store-grid {
    gap: 18px;
  }

  .store-item {
    min-height: 290px;
    padding: 16px 16px 18px;
  }

  .store-item img {
    height: 210px;
  }
}

@media (max-width: 1024px) {
  .hero,
  .hero-track {
    min-height: 72vh;
  }

  .hero-slide {
    padding: 0 9%;
    background-position: 62% center;
  }

  .hero-title {
    font-size: clamp(40px, 6vw, 66px);
    letter-spacing: -2px;
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .store-slider-section {
    padding: 72px 0 60px;
  }

  .store-slider-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .store-slider-text {
    justify-self: start;
    text-align: left;
  }

  .store-kicker::after {
    margin-left: 0;
    margin-right: 0;
  }

  .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .promo-section {
    padding: 72px 0;
  }

  .promo-card {
    width: 90%;
    min-height: 600px;
    border-radius: 28px;
  }

  .promo-content {
    min-height: 600px;
    padding: 56px 0 56px 52px;
  }

  .product-card {
    flex-basis: 260px;
  }

  .product-image {
    height: 255px;
  }

  .product-image img {
    height: 215px;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-track {
    min-height: 68vh;
  }

  .hero-slide {
    padding: 92px 7% 76px;
    align-items: flex-end;
    background-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.30) 35%,
        rgba(0, 0, 0, 0.92) 100%
      );
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -1.3px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-features {
    font-size: 13.5px;
    margin-bottom: 24px;
  }

  .hero-btn {
    min-height: 46px;
    padding: 11px 23px;
    font-size: 14px;
  }

  .hero-nav {
    display: none;
  }

  .hero-dots {
    bottom: 18px;
  }

  .store-slider-section {
    padding: 56px 0 48px;
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .store-item {
    min-height: 250px;
    border-radius: 20px;
    padding: 14px;
  }

  .store-item img {
    height: 160px;
  }

  .promo-section {
    padding: 60px 0;
  }

  .promo-card {
    width: 92%;
    min-height: 620px;
    border-radius: 24px;
  }

  .promo-card img {
    object-position: 68% center;
  }

  .promo-card::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.56) 42%,
        rgba(0, 0, 0, 0.94) 100%
      );
  }

  .promo-content {
    width: 100%;
    min-height: 620px;
    padding: 300px 26px 42px;
    justify-content: flex-end;
  }

  .promo-content h2 {
    font-size: 38px;
    line-height: 1.04;
    letter-spacing: -1.2px;
  }

  .promo-desc {
    font-size: 14px;
  }

  .promo-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .product-section {
    padding: 64px 0 76px;
  }

  .section-title h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .offer-timer {
    width: 100%;
    max-width: 420px;
    padding: 16px;
  }
    .offer-timer-countdown {
    gap: 7px;
  }
  .time-box {
    min-width: 60px;
    padding: 9px 8px;
  }
    .time-label {
    font-size: 21px;
  }
    .time-separator {
    font-size: 18px;
  }

  .product-slider {
    gap: 18px;
  }

  .product-card {
    flex-basis: 235px;
    border-radius: 22px;
  }

  .product-image {
    height: 220px;
  }

  .product-image img {
    height: 185px;
  }

  .product-slider-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero,
  .hero-track {
    min-height: 62vh;
  }

  .hero-slide {
    padding: 88px 6% 66px;
    background-position: 73% center;
  }

  .hero-title {
    font-size: 31px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .store-slider-container,
  .product-container {
    width: 92%;
  }

  .store-grid {
    gap: 12px;
  }

  .store-slider-text h3 {
    font-size: 24px;
  }

  .store-item {
    min-height: 220px;
    padding: 12px;
    border-radius: 18px;
  }

  .store-item img {
    height: 132px;
  }

  .promo-card {
    min-height: 560px;
  }

  .promo-content {
    min-height: 560px;
    padding: 245px 20px 34px;
  }

  .promo-content h2 {
    font-size: 31px;
  }

  .promo-highlights strong {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .offer-timer-countdown {
    flex-wrap: wrap;
  }
  .time-box {
  min-width: 66px;
  }

  .product-card {
    flex-basis: 215px;
  }

  .product-image {
    height: 205px;
  }

  .product-image img {
    height: 170px;
  }

}

/* WCAG / Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero-slide,
  .hero-btn,
  .hero-nav,
  .hero-dot,
  .store-item,
  .store-item img,
  .promo-card,
  .promo-card img,
  .promo-btn,
  .product-card,
  .product-image img,
  .product-slider-btn {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Benefits */
.benefits-section {
  width: 100%;
  padding: 0 0 90px;
  background: #f5f5f5;
}

.benefits-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  padding: 18px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

.benefit-card {
  padding: 40px 38px 40px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  display: block;
}

.benefit-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #f1f3f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #2f80ed;
}

.benefit-card h3,
.benefit-heading {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.benefit-card p {
  font-size: 14px;
  color: #1f1f1f;
  margin-bottom: 22px;
}

.benefit-link {
  margin: auto;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.benefit-link:hover,
.benefit-link:focus-visible {
  color: #2f80ed;
  outline: 1px solid #2f80ed;
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 56px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .benefit-icon-wrap {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }

  .benefit-card p,
  .benefit-link {
    font-size: 16px;
  }
}




