:root {
  --bg: #ffffff;
  --bg-strong: #f9f9f9;
  --surface: #ffffff;
  --text: #000000;
  --muted: #555555;
  --accent: #222222;
  --accent-hover: #444444;
  --accent-2: #000000;
  --stroke: #e0e0e0;
  --radius: 18px;
  --shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --font-heading: "Jost", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 72px 0 0 0;
  overflow-x: hidden;
  width: 100%;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 1200px, #ffffff 0, transparent 45%),
    radial-gradient(circle at 10% 1800px, #fafafa 0, transparent 40%),
    var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.header-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  padding: 2px 8px;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-decoration: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--bg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-pulse {
  position: relative;
  background: linear-gradient(45deg, #a16d5d, #d4af37, #f9d976, #d4af37, #a16d5d);
  background-size: 300% 300%;
  color: #000 !important;
  font-weight: 600;
  z-index: 1;
  animation: shine 8s linear infinite;
}




@keyframes shine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.btn-pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: inherit;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.btn-pulse:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }

  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}



.btn-ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
}

.hero {
  position: relative;
  padding: clamp(96px, 12vw, 130px) 0 44px;
  overflow: hidden;
  margin-top: -64px;
  background: linear-gradient(to left, #f1f1f1 56%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.3) 100%), url('assets/hero.webp') left/contain no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg) 5%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

#mascara-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.hero-mobile-title {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 130%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 12px 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  animation: slide-down-fade 0.6s ease-out;
}

@media (min-width: 981px) and (max-width: 1300px) {
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-rating-badge {
    align-self: flex-end;
  }
}



.hero-rating-badge .rating-number {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1;
}

.hero-rating-badge .rating-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
}

.hero-rating-badge .rating-stars svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@keyframes slide-down-fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  font-family: var(--font-heading);
  font-weight: 400;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin: 16px 0;
}

.ideal-text {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-top: 4px;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.2rem);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.hero-media-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  perspective: 1000px;
}

.hero-card {
  display: block;
  text-decoration: none;
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
  animation:
    hero-card-entrance 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both,
    hero-card-float 6s ease-in-out infinite 1.2s;
}

.hero-price {
  animation: hero-price-entrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.4s;
}

@keyframes hero-card-entrance {
  from {
    opacity: 0;
    transform: translateX(40px) rotateY(-10deg) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
  }
}

@keyframes hero-price-entrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-card-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-action-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: #000;
  color: #fff;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: badge-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both 0.5s;
}

@keyframes badge-pop {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

.hero-price {
  max-width: 100%;
  margin-bottom: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-price .price-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-price .price-value {
  font-size: 1.6rem;
}

.items-left-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
  animation: hero-price-entrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) both 0.5s;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--text);
  border-radius: 50%;
  animation: dot-pulse 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes dot-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.card-content {
  position: relative;
  z-index: 5;
  padding: 30px;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.card-content p {
  margin: 12px 0;
  font-weight: 700;
  opacity: 1;
  font-size: 1.75rem;
  text-align: center;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.hero-card:hover .card-photo {
  transform: scale(1.05);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.features article {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.features h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.features p {
  color: var(--muted);
}

/* ── Reviews ─────────────────────────────────────── */

.reviews-section {
  padding: 0 0 24px;
}

.reviews-section h2 {
  margin: 0 0 24px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.review-product {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  flex-grow: 1;
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}



.how-to-order-section {
  padding: 24px 0 0;
  text-align: center;
}

.how-to-order-section h2 {
  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 32px 24px 24px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 4px 12px rgba(34, 24, 56, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.order-section {
  padding: 0 0 70px;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  padding-top: 112px;
}

.order-media {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: var(--bg-strong);
  overflow: hidden;
  min-height: 380px;
  height: 100%;
}

.order-media .card-content {
  height: 100%;
}

.order-content {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 22px;
}

.order-content h2 {
  margin-top: 8px;
  margin-bottom: 16px;
  font-weight: 400;
  text-align: center;
}

.price-banner {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 4px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.price-item {
  flex: 1 1 50%;
  padding: 12px 16px;
  display: grid;
  gap: 4px;
  align-content: center;
}

.price-label {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.price-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.old-price {
  background: transparent;
}

.old-price .price-label,
.old-price .price-value {
  color: var(--text);
}

.old-price .price-value {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  text-decoration: line-through;
}

.new-price {
  background: rgba(0, 0, 0, 0.86);
}

.new-price .price-label,
.new-price .price-value {
  color: var(--bg);
}

.new-price .price-label {
  font-weight: 700;
}

.order-form {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.order-form label {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.order-form input {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  margin-bottom: 18px;
}

.order-form button {
  margin-top: 4px;
  width: 100%;
  border: none;
  border-radius: 48px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  padding: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.order-form button:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partners {
  background: transparent;
  position: relative;
  padding: 96px 0 40px;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/bg-d.webp') center/cover no-repeat;
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      var(--text) 28%,
      var(--text) 72%,
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      var(--text) 28%,
      var(--text) 4%,
      transparent 100%);
  pointer-events: none;
}

.partners .container {
  position: relative;
  z-index: 2;
}

.partners h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--bg);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.partners-subtitle {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 62ch;
  color: var(--bg);
  font-weight: 600;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.partners-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--stroke);
  backdrop-filter: blur(2px);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.partner-logo-box {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  background: var(--bg);
  border-radius: 16px;
  padding: 20px;
}

.partner-logo-box img {
  max-height: 100%;
  max-width: 140px;
  object-fit: contain;
}

.partner-card h3 {
  margin-bottom: 18px;
  font-size: 1.55rem;
  font-family: var(--font-heading);
}

.partner-card ul {
  list-style: none;
  text-align: left;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.partner-card ul li {
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.35;
}

.partner-card ul li::before {
  content: "\2713";
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  margin-top: 1px;
}

.novaposhta-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, var(--surface) 42%);
  color: var(--text);
}

.novaposhta-card h3 {
  color: #b40f15;
  text-shadow: none;
}

.novaposhta-card ul li {
  color: var(--text);
}

.novaposhta-card ul li::before {
  color: var(--bg);
  background: #b40f15;
  box-shadow: 0 4px 10px rgba(180, 15, 21, 0.3);
}

.novaposhta-card .btn {
  background-color: #b40f15;
  color: var(--bg);
  border-color: #b40f15;
}

.novaposhta-card .btn:hover {
  background-color: #8f0b10;
  color: var(--bg);
  border-color: #8f0b10;
}

.ukrposhta-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, var(--surface) 42%);
  color: var(--text);
}

.ukrposhta-card h3 {
  color: #ffb300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ukrposhta-card ul li {
  color: var(--text);
}

.ukrposhta-card ul li::before {
  color: var(--text);
  background: #ffcc00;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.ukrposhta-card .btn {
  background-color: #ffcc00;
  color: var(--text);
  border-color: #ffcc00;
  font-weight: 700;
}

.ukrposhta-card .btn:hover {
  background-color: #e6b800;
  color: var(--text);
  border-color: #e6b800;
}

.partner-cta {
  margin-top: 24px;
}

.partner-cta .btn {
  width: 100%;
}

.promotion-countdown {
  margin-top: 24px;
  text-align: center;
  background: var(--bg-strong);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--stroke);
}

.promotion-countdown p {
  margin: 0 0 12px;
  font-weight: 700;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.promotion-countdown--hero {
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 16px;
}

.promotion-countdown--hero .countdown-timer {
  justify-content: flex-start;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.time-block span:first-child {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.time-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  font-weight: 600;
}

.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: 34px 0;
}

.site-footer h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer p:last-child {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 16px;
}



.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.recovery-section {
  padding: 24px 0;
}

.recovery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.benefit-card .card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card .card-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

.recovery-media {
  position: relative;
}

#circle-mascara-canvas {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 140px;
  height: 140px;
  z-index: 10;
  pointer-events: none;
}

.recovery-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16 / 13;

}

.media-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 90%;
  margin: 24px auto 0;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 48px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.media-accent:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  background: var(--accent-hover);
}

.benefits-section {
  padding: 24px 0;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-strong) 15%, var(--bg-strong) 85%, transparent 100%);
  margin: 0;
}

.benefits-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.benefits-note {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.benefits-content h2 {
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefits-list li:hover {
  transform: translateX(5px);
  border-color: var(--accent);
}

.benefits-list .list-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefits-list .list-icon svg {
  width: 16px;
  height: 16px;
}

.benefits-list p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
}

.benefits-media {
  position: relative;
}

#wavy-mascara-canvas {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 180px;
  height: 140px;
  z-index: 10;
  pointer-events: none;
}

.benefits-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16 / 18;
}

.confidence-section {
  padding: 64px 0 0;
  background: radial-gradient(ellipse 100% 70% at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 85%);
}

.confidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.confidence-content h2 {
  margin-bottom: 24px;
}

.confidence-media {
  position: relative;
}

#bottom-wavy-mascara-canvas,
#helps-wavy-mascara-canvas {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: calc(100% - 40px);
  height: 80px;
  z-index: 10;
  pointer-events: none;
}

.confidence-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 20 / 16;
}

.helps-section {
  padding: 64px 0;
  background: radial-gradient(ellipse 100% 70% at 50% 50%, var(--bg-strong) 15%, transparent 85%);
}

.helps-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.size-guide-section {
  padding: 24px 0;
  background: radial-gradient(ellipse 100% 70% at 50% 50%, var(--bg) 15%, transparent 85%);
}

.size-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.size-guide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.size-guide-content h2 {
  margin-bottom: 24px;
}

.size-table-wrapper {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--stroke);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.size-table th {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--stroke);
  width: 25%;
}

.size-table td {
  padding-top: 12px;
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
}

.size-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(76, 161, 187, 0.06);
  border-left: 4px solid var(--accent-2);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.05rem;
}

.detail-label {
  font-weight: 800;
  color: var(--text);
}

.detail-value {
  color: var(--text);
  font-weight: 500;
}

.size-guide-media {
  position: relative;
  display: flex;
  align-items: center;
}

#heart-mascara-canvas {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 140px;
  height: 140px;
  z-index: 10;
  pointer-events: none;
}

.size-guide-media img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16 / 12;
}

.be-ideal-section {
  text-align: left;
}

@media (max-width: 980px) {
  .be-ideal-section {
    margin-top: 40px;
  }
}

.be-ideal-section h2 {
  margin-bottom: 12px;
}

.be-ideal-section .benefits-actions {
  justify-content: center;
}

.be-ideal-actions {
  gap: 20px;
}

.promotion-countdown--inline {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promotion-countdown--inline p.inline-promo-text {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.promotion-countdown--inline .countdown-timer {
  gap: 8px;
}

.promotion-countdown--inline .time-block {
  width: 64px;
  height: 64px;
  box-shadow: none;
  background: var(--bg-strong);
}

.promotion-countdown--inline .hours,
.promotion-countdown--inline .minutes,
.promotion-countdown--inline .seconds {
  font-size: 1.25rem;
}

.promotion-countdown--inline .time-label {
  font-size: 0.6rem;
}

.be-ideal-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 12px 0 24px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  position: relative;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  opacity: 0.86;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .be-ideal-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 40px;
    margin: 0 -16px;
    padding-inline: 16px;
    scrollbar-width: none;
  }

  .be-ideal-gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

@media (max-width: 980px) {
  .hero-mobile-title {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 0 12px;
  }

  .hero-desktop-title {
    display: none;
  }

  .hero {
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.95) 30%, #e0e0e0 100%), url('assets/hero.webp') top center/contain no-repeat;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-media-wrap {
    order: 1;
  }

  .hero-copy {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .promotion-countdown--hero {
    text-align: center;
    margin-bottom: 32px;
  }

  .promotion-countdown--hero .countdown-timer {
    justify-content: center;
  }

  .hero-actions {
    order: -1;
    margin: 0 0 24px;
    width: 100%;
  }

  .hero-actions {
    justify-content: center;

  }

  .hero-card {
    margin: 0 auto;
    min-width: 480px;
  }

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

  .recovery-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .confidence-grid,
  .helps-grid,
  .size-guide-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .recovery-media {
    order: -1;
  }

  /* Removed media-accent absolute positioning overrides for mobile */

  .confidence-content {
    order: 1;
  }

  .confidence-media {
    order: 2;
    margin-top: 32px;
  }

  .benefits-actions {
    justify-content: center;
    text-align: center;
  }

  .benefits-actions .btn {
    width: 100%;
  }

  .order-grid {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .order-content {
    order: 1;
  }

  .order-media {
    order: 2;
  }

  .price-label {
    font-size: 0.875rem;
  }

  .price-value {
    font-size: 1.5rem;
  }
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 0;
  margin-top: 40px;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.8rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-heading);
}

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

  .partners-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 0 -16px;
    padding: 8px 16px 30px;
    overflow-x: auto;
  }

  .partner-card {
    width: 84%;
    max-width: 340px;
    padding: 24px;
    flex: 0 0 auto;
    border-radius: 20px;
    scroll-snap-align: start;
  }
}

@media (max-width: 680px) {
  .header-wrap {
    min-height: 64px;
  }

  .hero {
    padding-top: 130px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-photo {
    filter: brightness(0.6);
  }

  .hero-actions .btn-pulse {
    width: 100%;
  }

  .hero-card {
    min-height: 250px;
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  .benefit-cards {
    grid-template-columns: 1fr;
  }
}