:root {
  --blue-dark: #083164;
  --yellow: #ffc928;
  --yellow-soft: #ffe27a;
  --white: #ffffff;
  --pink: #ff8d8c;
  --pink-deep: #f36f72;
  --bg: #071e3f;
  --text: #f8fbff;
  --muted: #d7e7ff;
  --shadow: 0 18px 50px rgba(2, 19, 45, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(104, 201, 255, 0.25), transparent 22rem),
    radial-gradient(circle at 90% 0%, rgba(255, 201, 40, 0.17), transparent 18rem),
    linear-gradient(180deg, #0d4385 0%, #082c5a 45%, #051b39 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, .brand-texts strong, .btn, .section-kicker, .top-badge {
  font-family: "Baloo 2", cursive;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }

.ocean-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.15));
  box-shadow: inset 0 0 12px rgba(255,255,255,0.35);
  opacity: 0.22;
  animation: bubbleFloat 14s linear infinite;
}

.b1 { width: 90px; height: 90px; left: 4%; bottom: -80px; animation-delay: 0s; }
.b2 { width: 50px; height: 50px; right: 9%; bottom: -60px; animation-delay: 2s; }
.b3 { width: 70px; height: 70px; left: 78%; bottom: -70px; animation-delay: 6s; }
.b4 { width: 36px; height: 36px; left: 56%; bottom: -50px; animation-delay: 9s; }

@keyframes bubbleFloat {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-120vh) scale(1.2); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px clamp(16px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 35, 74, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

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

.brand-logo-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow);
  background: var(--white);
}

.brand-texts strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

.brand-texts small {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--yellow-soft);
  letter-spacing: 0.08em;
}

.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; }
.nav-links a { color: var(--muted); transition: 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }

.admin-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #503200 !important;
  box-shadow: 0 8px 24px rgba(255, 201, 40, 0.28);
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 1.2rem;
}

.section, .hero {
  padding-left: clamp(16px, 5vw, 64px);
  padding-right: clamp(16px, 5vw, 64px);
}

.hero {
  padding-top: clamp(34px, 7vw, 76px);
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.top-badge, .section-kicker, .mini-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--yellow-soft);
  font-size: 0.85rem;
}

.hero h1, .section-head h1, .section-head h2, .login-side h1, .dashboard-top h1 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.hero h1 span {
  color: var(--yellow);
  text-shadow: 0 4px 0 rgba(14, 47, 102, 0.8);
}

.hero-desc, .section-desc, .feature-card p, .product-card p, .testimonial-card p, .timeline-item p,
.login-side p, .card-note, .dashboard-top p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #4d3100;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  box-shadow: 0 10px 24px rgba(255, 201, 40, 0.35);
}

.btn-outline {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
}

.btn.full { width: 100%; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.point-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow);
}

.point-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  font-size: 1.2rem;
}

.point-card strong { display: block; font-size: 1rem; }
.point-card small { color: var(--muted); }

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.logo-showcase {
  width: min(100%, 420px);
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow);
}

.logo-showcase img {
  width: 100%;
  display: block;
  border-radius: 28px;
  background: #0b2f61;
}

.home-intro-text {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 0 6px;
  color: #f8fbff;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.08rem, 2.6vw, 1.75rem);
  line-height: 1.45;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0, 10, 25, 0.5);
}

.floating-info {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-dark);
  font-family: "Baloo 2", cursive;
  font-size: 1.05rem;
  box-shadow: var(--shadow);
}

.info-1 { top: 30px; right: 10px; }
.info-2 { bottom: 105px; left: 12px; }
.info-3 { bottom: 32px; right: 36px; }

.section { padding-top: 34px; padding-bottom: 46px; }

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head h1, .section-head h2 { font-size: clamp(2rem, 4vw, 3.3rem); }

.feature-grid, .product-grid, .testimonial-grid, .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-grid.compact { grid-template-columns: repeat(3, 1fr); }

.feature-card, .product-card, .testimonial-card, .timeline-item, .promo-panel,
.login-card, .login-side, .stat-card, .panel-box {
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20,84,158,0.95), rgba(9,53,108,0.98));
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.feature-card, .product-card, .testimonial-card, .stat-card, .panel-box { padding: 22px; }

.icon-wrap, .product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #4b3000;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(255, 201, 40, 0.28);
}

.feature-card h3, .product-card h3, .timeline-item h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-tabs button.active, .filter-tabs button:hover {
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #543500;
}


.product-search-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 14px;
  margin: 8px 0 22px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px;
  background: rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 18px 40px rgba(0,0,0,0.14);
  backdrop-filter: blur(12px);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 20px;
  background: rgba(7, 42, 86, 0.56);
  border: 1px solid rgba(255,255,255,0.13);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 700;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.66);
}

.category-filter {
  display: grid;
  gap: 6px;
}

.category-filter label {
  color: var(--yellow-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-filter select {
  min-height: 56px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 0 14px;
  background: rgba(7, 42, 86, 0.72);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  outline: 0;
}

.empty-products {
  display: none;
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-weight: 800;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.product-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,0.22), transparent 12rem),
    rgba(2, 28, 63, 0.35);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.product-card .mini-badge {
  text-transform: capitalize;
}

.product-card h3 {
  margin: 8px 0 4px;
}

.product-card p {
  margin: 0;
}

.product-footer {
  margin-top: auto;
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.product-footer strong {
  color: var(--yellow-soft);
  font-size: 1.3rem;
}

.testimonial-card .stars {
  color: var(--yellow);
  letter-spacing: 0.1em;
}

.user-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.user-line span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--pink), var(--pink-deep));
  color: white;
  font-weight: 800;
}

.user-line small { color: var(--muted); }

.timeline {
  max-width: 850px;
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.timeline-item > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #543500;
  font-weight: 800;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
}

.promo-panel {
  margin: 8px clamp(16px, 5vw, 64px) 58px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.promo-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.admin-body { min-height: 100vh; padding: 24px; }

.login-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 20px;
}

.login-side, .login-card { padding: 26px; }

.login-logo {
  width: 160px;
  border-radius: 28px;
  background: white;
  display: block;
  box-shadow: var(--shadow);
}

.login-side h1 {
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.login-card h2 { margin: 0 0 8px; font-size: 2rem; }
.card-note { margin-top: 0; }

.login-card label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
}

input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 16px;
  padding: 0 14px;
  font: inherit;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  outline: none;
}

input::placeholder { color: rgba(255,255,255,0.65); }
input:focus { box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.28); }

.back-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: var(--yellow-soft);
  font-weight: 700;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: rgba(4, 31, 64, 0.94);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sidebar-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
  background: white;
}

.sidebar-brand strong {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
}

.sidebar-brand small { color: var(--yellow-soft); }

.side-nav {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.side-nav a, .logout-btn {
  border: 0;
  border-radius: 16px;
  padding: 13px 14px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
}

.side-nav a.active, .side-nav a:hover, .logout-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--yellow-soft);
}

.logout-btn {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #ffd5d5;
}

.dashboard-main { padding: 26px; }

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dashboard-top h1 { font-size: clamp(2.1rem, 4vw, 3.6rem); }

.stat-card span, .stat-card small, table td { color: var(--muted); }

.stat-card strong {
  display: block;
  margin: 8px 0;
  color: var(--yellow-soft);
  font-size: 2rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.panel-head h2 { margin: 0; font-size: 2rem; }

.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

th { color: var(--yellow-soft); }

.status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
}

.status.ready { background: #6df0b7; color: #0b4d33; }
.status.wait { background: #ffd86b; color: #6b4600; }

.footer {
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1060px) {
  .hero, .login-layout, .dashboard-body { grid-template-columns: 1fr; }

  .hero-points, .feature-grid, .product-grid, .product-grid.compact, .testimonial-grid, .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar {
    position: relative;
    height: auto;
  }

  .logout-btn {
    position: static;
    margin-top: 18px;
    width: 100%;
  }

  .dashboard-top, .promo-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(4, 31, 64, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.show { display: flex; }

  .hero, .section, .dashboard-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-visual { min-height: auto; }

  .hero-points, .feature-grid, .product-grid, .product-grid.compact, .testimonial-grid, .stat-grid {
    grid-template-columns: 1fr;
  }

  .floating-info { display: none; }

  .timeline-item { grid-template-columns: 1fr; }

  .brand-logo-img {
    width: 52px;
    height: 52px;
  }

  .brand-texts strong { font-size: 1.15rem; }
  .brand-texts small { font-size: 0.63rem; }

  .hero {
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .hero-visual {
    gap: 22px;
  }

  .logo-showcase {
    width: min(100%, 420px);
    padding: 16px;
  }

  .home-intro-text {
    font-size: clamp(1.05rem, 4.1vw, 1.35rem);
    line-height: 1.42;
    max-width: 95%;
  }
}

/* ============================= */
/* CARD KONTAK & ALAMAT INFORMASI */
/* Hanya menambahkan card kontak, desain utama tetap sama */
/* ============================= */
.info-card {
  width: min(100%, 860px);
  margin: 6px 0 26px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 84, 158, 0.92), rgba(9, 53, 108, 0.96));
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  line-height: 1.15;
}

.info-card h3 i {
  margin-right: 8px;
}

.info-card ul {
  margin: 0;
  padding-left: 28px;
}

.info-card li {
  margin: 7px 0;
  color: var(--white);
  font-size: clamp(1.04rem, 3.9vw, 1.45rem);
  line-height: 1.55;
}

.info-card strong {
  color: var(--white);
  font-weight: 800;
}

.info-card strong i {
  width: 24px;
  margin-right: 5px;
  text-align: center;
}

@media (max-width: 720px) {
  .info-card {
    border-radius: 24px;
    padding: 24px 24px;
    margin-bottom: 24px;
  }

  .info-card ul {
    padding-left: 24px;
  }
}


@media (max-width: 720px) {
  .product-search-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
}

/* ============================= */
/* TESTIMONI FOTO BUKTI TRANSAKSI */
/* ============================= */
.testimonial-proof-grid {
  grid-template-columns: 1fr;
}

.testimonial-proof-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
  padding: 26px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial-content .user-line {
  margin-top: auto;
  padding-top: 18px;
}

.proof-side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.proof-side > strong {
  display: none;
}

.proof-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(5, 32, 70, 0.46);
  box-shadow: 0 12px 28px rgba(0,0,0,0.23);
}

.proof-text {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--muted);
  line-height: 1.65;
}








.testimonial-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.testimonial-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.28);
}







.custom-testimonial-card {
  margin-top: 20px;
}

@media (max-width: 920px) {
  .testimonial-proof-card {
    grid-template-columns: 1fr;
  }

  .proof-side {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .testimonial-proof-card {
    padding: 20px;
    border-radius: 24px;
  }

  .submit-testimonial {
    grid-template-columns: 1fr;
  }


  .proof-img {
    border-radius: 18px;
  }
}


/* Rapikan jarak nama customer dan jenis layanan */
.user-line small {
  display: block;
  margin-top: 3px;
}

/* Tampilan bukti transaksi: gambar PNG lalu text */
.proof-side .proof-img + .proof-text {
  margin-top: 0;
}


/* ============================= */
/* PRODUCT DETAIL PAGE */
/* ============================= */
.detail-page {
  padding-top: 30px;
}

.product-detail-card,
.detail-long-card,
.detail-info-card {
  margin-left: clamp(16px, 5vw, 64px);
  margin-right: clamp(16px, 5vw, 64px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(20,84,158,0.96), rgba(9,53,108,0.99));
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: clamp(18px, 4vw, 34px);
  align-items: center;
}

.detail-product-image {
  min-height: 360px;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 226, 122, 0.26), transparent 12rem),
    rgba(2, 28, 63, 0.35);
  border: 1px solid rgba(255,255,255,0.13);
}

.detail-product-image img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.25);
}

.detail-product-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-product-main h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 4.3rem);
  line-height: 0.98;
}

.detail-product-price {
  width: fit-content;
  padding: 10px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  color: var(--yellow-soft);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-family: "Baloo 2", cursive;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.detail-short-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.08rem;
}

.detail-buy-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.detail-buy-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.btn-telegram {
  background: linear-gradient(180deg, #4bb7ff, #1688d6);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(22, 136, 214, 0.28);
}

.detail-long-card {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.detail-long-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.detail-long-card > p,
.detail-note-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.detail-long-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.detail-long-grid article,
.detail-note-box {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.detail-long-grid h3,
.detail-note-box h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.detail-note-box {
  margin-top: 18px;
}

.detail-info-card {
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 226, 122, 0.12), transparent 16rem),
    radial-gradient(circle at 92% 8%, rgba(104, 201, 255, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(20,84,158,0.96), rgba(9,53,108,0.99));
  border-color: rgba(255,255,255,0.14);
}

.detail-info-card h2 {
  margin: 0 0 22px;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
}

.detail-info-box {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.075));
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 12px 28px rgba(0, 17, 43, 0.16);
}

.detail-info-box + .detail-info-box {
  margin-top: 16px;
}

.detail-info-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow-soft);
  font-weight: 900;
  letter-spacing: 1.4px;
  font-size: 0.92rem;
}

.detail-info-box strong,
.detail-info-box p {
  margin: 0;
  color: var(--white);
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.35rem, 3.8vw, 1.82rem);
  font-weight: 800;
  line-height: 1.35;
}

.detail-info-text p + p {
  margin-top: 16px;
}

.detail-guarantee-box p {
  line-height: 1.42;
}


.feature-list,
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #4d3100;
  font-weight: 900;
  font-size: 0.8rem;
}

.process-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.process-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--yellow-soft), var(--yellow));
  color: #4d3100;
  font-weight: 900;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1060px) {
  .product-detail-card,
  .detail-long-grid {
    grid-template-columns: 1fr;
  }

  .detail-product-image {
    min-height: 280px;
  }

  .detail-buy-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .detail-page {
    padding-top: 18px;
  }

  .product-detail-card,
  .detail-long-card,
  .detail-info-card {
    margin-left: 14px;
    margin-right: 14px;
    border-radius: 24px;
  }

  .product-detail-card {
    padding: 14px;
  }

  .detail-product-image {
    min-height: 230px;
    padding: 12px;
    border-radius: 22px;
  }

  .detail-product-image img {
    border-radius: 18px;
  }

  .detail-product-price {
    width: 100%;
    text-align: center;
  }

  .detail-long-card,
  .detail-info-card {
    padding: 18px;
  }

  .detail-info-box {
    padding: 16px;
    border-radius: 18px;
  }
}

