:root {
  --ink: #081a3a;
  --muted: #395887;
  --bg: #f2f7ff;
  --surface: #ffffff;
  --line: #c9d9f3;
  --accent: #ff4f8b;
  --accent-2: #00d5c9;
  --accent-3: #ffe45e;
  --glow1: rgba(255, 79, 139, 0.24);
  --glow2: rgba(0, 213, 201, 0.22);
  --glow3: rgba(94, 137, 255, 0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, var(--glow1), transparent 38%),
    radial-gradient(circle at 86% 16%, var(--glow2), transparent 35%),
    radial-gradient(circle at 28% 100%, var(--glow3), transparent 42%),
    var(--bg);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #cfdbef;
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  padding: 0.72rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
}

.brand-logo {
  height: 74px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  flex: 0 0 auto;
  overflow-x: visible;
  padding-bottom: 0.1rem;
  scrollbar-width: thin;
}

.nav-links a {
  color: #445b80;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.44rem 0.65rem;
  border-radius: 999px;
}
.nav-links a:hover {
  color: #163662;
  background: #eaf2ff;
}

.nav-right {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

.cart-pill {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  padding: 0.22rem;
  border: 1px solid #c9d7ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.lang-link {
  text-decoration: none;
  color: #576b8a;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang-link.active {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #ff7f4f);
}

.pref-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #f05b57;
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  cursor: pointer;
}

.pref-btn-icon {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 0.68rem;
}

.pref-globe {
  width: 0.82rem;
  height: 0.82rem;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pref-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 19, 44, 0.45);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.pref-modal.is-open {
  display: flex;
}

.pref-modal-card {
  width: min(540px, 100%);
  background: #fff;
  border-radius: 18px;
  border: 1px solid #dbe5f6;
  box-shadow: 0 24px 50px rgba(10, 30, 66, 0.25);
  overflow: hidden;
}

.pref-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #ebeff7;
}

.pref-modal-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.pref-close {
  border: 0;
  background: transparent;
  color: #9aa8bf;
  font-size: 1.2rem;
  cursor: pointer;
}

.pref-form {
  padding: 1rem 1.2rem 1.2rem;
}

.pref-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: #ffe8df;
  color: #a64025;
  font-size: 0.74rem;
  font-weight: 800;
}

.account-menu {
  position: relative;
}

.account-menu summary {
  list-style: none;
  cursor: pointer;
}

.account-menu summary::-webkit-details-marker {
  display: none;
}

.account-avatar-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border-radius: 999px;
  border: 1px solid #d6e2f5;
  background: #fff;
}

.account-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #172b4f, #344f7f);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.account-avatar-img {
  object-fit: cover;
  background: #fff;
}

.account-menu-list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  min-width: 260px;
  display: grid;
  background: #fff;
  border: 1px solid #d3e0f5;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(16, 35, 68, 0.16);
  overflow: hidden;
  padding: 0.4rem 0;
}

.account-menu-list a {
  padding: 0.56rem 0.92rem;
  text-decoration: none;
  color: #1f355a;
  font-weight: 500;
}

.account-menu-list a:hover {
  background: #f1f6ff;
}

.account-menu-list-rich {
  gap: 0;
}

.account-menu-head {
  padding: 0.52rem 0.92rem 0.62rem;
  border-bottom: 1px solid #e9eff8;
  margin-bottom: 0.25rem;
}

.account-email {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1c3359;
}

.account-sub {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: #7c8ca6;
}

.account-menu-sep {
  height: 1px;
  background: #e9eff8;
  margin: 0.25rem 0;
}

.account-menu-action {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.56rem 0.92rem;
  color: #1f355a;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
}

.account-menu-action:hover {
  background: #f1f6ff;
}

.hero {
  margin: 2rem 0;
  padding: 2.1rem 1.8rem;
  background: linear-gradient(145deg, #081939, #133771 56%, #1a5ab1 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(16, 33, 62, 0.24);
}

.hero h1 {
  margin-top: 0;
  line-height: 1.08;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero p { color: #cfddff; max-width: 68ch; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  padding: 0.62rem 1rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #ff4f8b, #ff7f4f);
  box-shadow: 0 8px 18px rgba(255, 79, 139, 0.35);
}

.btn-secondary {
  color: #0d2f55;
  background: linear-gradient(120deg, #fff18a, #ffe45e);
  box-shadow: 0 8px 16px rgba(255, 228, 94, 0.35);
}

h2 { margin-bottom: 0.7rem; }

h1, h2, h3 {
  letter-spacing: -0.01em;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid #ccdaf0;
  border-radius: 18px;
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(29, 58, 100, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 49, 90, 0.12);
}

.card h3 { margin-top: 0; }

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0.5rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.js-cycle-price-main {
  color: #0d2f55;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.js-cycle-card:has(.cycle-input[value="yearly"]:checked) .js-cycle-price-main,
.js-cycle-card:has(.cycle-input[value="monthly"]:checked) .js-cycle-price-main {
  color: #082a5a;
  transform: translateY(-1px);
}

.js-cycle-price-alt {
  opacity: 0.7;
  font-size: 1.05rem;
}

.list { padding-left: 1rem; color: #314764; }

.list li { margin: 0.35rem 0; }

.button-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cycle-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f0f5ff;
  border: 1px solid #c7d7f2;
  border-radius: 999px;
  padding: 0.2rem;
}

.cycle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cycle-pill {
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #516989;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.cycle-input:checked + .cycle-pill {
  color: #fff;
  background: linear-gradient(120deg, #ff4f8b, #ff7f4f);
  box-shadow: 0 6px 14px rgba(255, 79, 139, 0.26);
}

button.btn {
  cursor: pointer;
}

.section { margin-bottom: 2.2rem; }

.flash {
  margin-top: 1rem;
  border-radius: 12px;
  padding: 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
}

.flash.success {
  border-color: #9ce5d3;
  background: #ecfff8;
}

.flash.error {
  border-color: #ffb5a0;
  background: #fff1ee;
}

.form {
  max-width: 430px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
}

label { display: block; margin-bottom: 0.3rem; font-weight: 700; }

input {
  width: 100%;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
}

select,
textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
  font-family: inherit;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.table th,
.table td {
  border-bottom: 1px solid #ecf1fa;
  padding: 0.65rem;
  text-align: left;
}

.footer {
  margin-top: 2rem;
  color: #465e80;
  text-align: center;
  padding-bottom: 1.5rem;
}

.btn-danger {
  color: #fff;
  background: #d74431;
}

.btn-link {
  color: #173362;
  background: #edf3ff;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #334c71;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.price.small {
  font-size: 1rem;
  margin-top: 0;
}

.search-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-row input,
.search-row select {
  width: auto;
  min-width: 180px;
  margin-bottom: 0;
}

.coupon-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.coupon-row input {
  max-width: 260px;
  margin-bottom: 0;
}

.totals p {
  margin: 0.25rem 0;
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.form-inline input[type="checkbox"] {
  width: auto;
  margin: 0 0.3rem 0 0;
}

.seller-hero {
  background: linear-gradient(140deg, #091b40 0%, #17418b 62%, #1372d8 100%);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.seller-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 225, 148, 0.16);
  right: -80px;
  top: -80px;
}

.seller-hero-inner {
  position: relative;
  z-index: 1;
  padding: 2rem 1.8rem;
}

.seller-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.seller-hero h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.08;
}

.seller-hero p {
  color: #d6e2ff;
  max-width: 64ch;
}

.seller-cta {
  color: #fff;
  background: linear-gradient(120deg, #ff4f8b, #ff7f4f);
  margin-top: 0.8rem;
  box-shadow: 0 10px 22px rgba(255, 79, 139, 0.35);
}

.seller-cta-small {
  margin-top: 0.6rem;
}

.seller-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 0.4rem;
}

.seller-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  background: rgba(15, 26, 51, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e8efff;
  font-size: 0.78rem;
  font-weight: 700;
}

.seller-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.seller-step-item {
  border: 1px solid #d8e3f5;
  background: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 0.55rem 0.6rem;
  font-weight: 700;
  color: #506587;
}

.seller-step-item.active {
  color: #102645;
  border-color: #b8c8e8;
  background: linear-gradient(120deg, #f8fcff, #edf4ff);
}

.seller-join-card {
  max-width: 820px;
  margin: 0 auto;
}

.seller-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.seller-feature-list {
  display: grid;
  gap: 0.8rem;
}

.seller-feature-card {
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #f6f9ff);
}

.seller-spotlight {
  background: linear-gradient(160deg, #fffdf5, #fff7dc);
}

.seller-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #e3d7aa;
  padding: 0.5rem 0;
}

.seller-stat strong {
  color: #233d63;
}

.seller-process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.seller-process-step {
  border: 1px solid #d8e3f5;
  border-radius: 14px;
  padding: 0.9rem;
  background: #fff;
}

.seller-process-step span {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: #eff4ff;
  color: #24406a;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.seller-join-shell {
  margin-bottom: 1.2rem;
}

.seller-join-head {
  margin-bottom: 0.8rem;
}

.seller-join-head h1 {
  margin-bottom: 0.4rem;
}

.seller-side-card {
  position: sticky;
  top: 90px;
}

.seller-side-badge {
  margin-top: 0.8rem;
  border-radius: 10px;
  background: #eef5ff;
  border: 1px solid #cddbf5;
  padding: 0.65rem;
  font-weight: 700;
  color: #29456f;
}

.seller-review-card {
  margin-bottom: 0.8rem;
}

.seller-done-card {
  text-align: center;
}

.kyc-shell {
  max-width: 980px;
  margin: 0 auto;
}

.kyc-head {
  text-align: center;
}

.kyc-status {
  color: #2ea45b;
  font-weight: 800;
  margin: 0 0 0.25rem;
}

.kyc-step-text {
  color: #4f627f;
  font-size: 0.92rem;
}

.kyc-progress {
  margin-top: 0.75rem;
}

.kyc-progress-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kyc-card {
  max-width: 980px;
  border-top: 3px solid #37b45d;
  box-shadow: 0 12px 28px rgba(16, 35, 68, 0.08);
}

.kyc-title {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0.2rem 0 0.6rem;
}

.kyc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
}

.kyc-form-grid label {
  font-weight: 700;
  color: #1b355d;
  margin-top: 0.1rem;
}

.kyc-form-grid input,
.kyc-form-grid select,
.kyc-form-grid textarea {
  margin: 0;
}

.kyc-separator {
  grid-column: 1 / -1;
  border-top: 1px solid #e3e9f4;
  margin: 0.35rem 0 0.1rem;
  height: 0;
}

.phone-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.55rem;
}

.kyc-actions {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}

.kyc-actions-single {
  justify-content: flex-end;
}

.kyc-identity-form {
  display: grid;
  gap: 0.95rem;
}

.kyc-identity-title-wrap {
  text-align: center;
}

.kyc-identity-intro {
  margin: 0.15rem auto 0;
  max-width: 760px;
  color: #1c365f;
  font-weight: 600;
}

.kyc-identity-illustration {
  border: 2px dashed #6aa5ff;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fcff 0%, #edf5ff 100%);
  padding: 1.2rem;
  max-width: 380px;
  margin: 0 auto;
}

.kyc-id-board {
  width: 100%;
  aspect-ratio: 5 / 3.2;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #d7e3f5;
  display: grid;
  place-items: center;
  position: relative;
}

.kyc-id-stamp {
  position: absolute;
  top: 0.6rem;
  left: 0.65rem;
  font-weight: 900;
  color: #1f3f73;
}

.kyc-id-card {
  width: 128px;
  height: 84px;
  border-radius: 12px;
  background: linear-gradient(145deg, #5e91ff, #2b66dc);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(45, 91, 182, 0.3);
}

.kyc-id-card span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: block;
  margin-top: 0.3rem;
}

.kyc-id-card p {
  margin: 0 0 0.45rem;
}

.kyc-identity-list {
  margin: 0;
  padding: 0 1.1rem;
  color: #3c5072;
}

.kyc-upload-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.kyc-upload-row input[type=file] {
  position: absolute;
  left: -9999px;
}

.kyc-upload-btn {
  cursor: pointer;
  margin: 0;
}

.kyc-upload-name {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid #d6e2f5;
  background: #fff;
  border-radius: 999px;
  padding: 0 0.9rem;
  color: #5f708b;
}

.kyc-identity-select-row {
  display: grid;
  gap: 0.4rem;
  max-width: 360px;
}

.kyc-identity-select-row label {
  font-weight: 700;
  color: #1b355d;
}

.kyc-upload-note {
  margin: -0.2rem 0 0;
  font-size: 0.86rem;
  color: #6b7b95;
}

.kyc-upload-why {
  margin: 0;
  font-size: 0.87rem;
  color: #f05e6b;
}

.seller-auth-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
  min-height: 68vh;
}

.seller-auth-hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.seller-auth-hero h2 {
  margin: 0;
  font-size: clamp(1.9rem, 5.4vw, 4.2rem);
  line-height: 1.03;
}

.seller-auth-card {
  border: 1px solid #dce5f4;
  background: #fff;
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(16, 35, 68, 0.1);
}

.seller-auth-card h3 {
  margin-top: 0;
  text-align: center;
  font-size: 1.9rem;
}

.seller-social-row {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin: 0.8rem 0;
}

.seller-social-btn {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 10px;
  border: 1px solid #dce5f4;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  color: #172e55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.seller-social-btn--icon svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.seller-social-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(16, 35, 68, 0.12);
}

.seller-auth-sep {
  text-align: center;
  color: #516583;
  margin: 0.7rem 0 0.8rem;
}

.seller-auth-continue {
  width: 100%;
  margin-top: 0.35rem;
}

.seller-auth-form label {
  font-weight: 700;
}

.seller-auth-form input {
  margin-bottom: 0.62rem;
}

.seller-auth-terms {
  text-align: center;
  color: #5e6f89;
  font-size: 0.88rem;
  margin-top: 0.8rem;
}

.seller-auth-switch {
  text-align: center;
  margin: 0.4rem 0 0;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.product-icon {
  display: inline-grid;
  place-items: center;
  min-width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.45rem;
  font-size: 0.68rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(140deg, #5b77a6, #3b5f97);
  padding: 0 0.35rem;
}

.product-icon-fallback {
  display: none;
}

.product-logo-img {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 1px solid #d7e3f6;
  background: #fff;
  padding: 0.12rem;
}

.icon-spotify { background: linear-gradient(140deg, #1db954, #169245); }
.icon-chatgpt { background: linear-gradient(140deg, #4ea484, #3d8d70); }
.icon-youtube { background: linear-gradient(140deg, #ff2121, #e10f0f); }
.icon-deezer { background: linear-gradient(140deg, #5f5bff, #3ac1ff); }
.icon-disney { background: linear-gradient(140deg, #3552d8, #272c9e); }
.icon-vpn { background: linear-gradient(140deg, #3f7dff, #335fd8); }
.icon-crunchyroll { background: linear-gradient(140deg, #ff8e24, #ff6d00); }
.icon-hbo { background: linear-gradient(140deg, #22252f, #070809); }
.icon-netflix { background: linear-gradient(140deg, #e20f21, #b30715); }
.icon-capcut { background: linear-gradient(140deg, #22252f, #070809); }
.icon-xbox { background: linear-gradient(140deg, #1ba34a, #12803a); }
.icon-playstation { background: linear-gradient(140deg, #2f6fff, #204fbc); }

.tri-strip {
  margin: 0.6rem 0 1rem;
  background: #ef5350;
  border-radius: 0;
  padding: 0.45rem 0.4rem;
  overflow-x: auto;
  display: flex;
  align-items: center;
}

.tri-list {
  display: flex;
  gap: 0.4rem;
  min-width: max-content;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.tri-item {
  text-decoration: none;
  color: #fff;
  border-radius: 12px;
  min-width: 92px;
  padding: 0.55rem 0.55rem;
  text-align: center;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  line-height: 1.05;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
}

.tri-icon {
  display: inline-grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  margin: 0 auto 0.28rem;
}

.tri-svg {
  width: 1.62rem;
  height: 1.62rem;
  stroke: #fff;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tri-svg-fill rect {
  fill: #fff;
  stroke: none;
}

.tri-item small {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.96;
}

.tri-item.active {
  color: #e84f4f;
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}

.tri-item.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -7px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 900px) {
  .brand-logo { height: 62px; }
  .nav { flex-wrap: wrap; gap: 0.7rem; }
  .offers-grid { grid-template-columns: 1fr; }
  .seller-grid-2 { grid-template-columns: 1fr; }
  .seller-auth-layout { grid-template-columns: 1fr; min-height: auto; }
  .kyc-form-grid { grid-template-columns: 1fr; }
  .kyc-upload-row { flex-direction: column; align-items: stretch; }
  .kyc-upload-name { border-radius: 12px; }
  .phone-row { grid-template-columns: 1fr; }
  .seller-process-row { grid-template-columns: 1fr; }
  .seller-side-card { position: static; }
  .seller-steps { grid-template-columns: 1fr; }
  .nav-links { order: 3; width: 100%; }
  .nav-right { margin-left: auto; }
  .account-menu-list { right: 0; left: auto; }
  .tri-list { margin: 0; }
}

/* === 2026 Refresh Theme === */
:root {
  --ink: #0d1b3f;
  --ink-soft: #47608f;
  --surface: #ffffff;
  --line: #d3dcf1;
  --brand-1: #ff4d6d;
  --brand-2: #ff7b3d;
  --brand-3: #ffd166;
  --deep-1: #112f72;
  --deep-2: #1f58bb;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 77, 109, 0.2), transparent 35%),
    radial-gradient(circle at 88% 10%, rgba(31, 88, 187, 0.18), transparent 32%),
    linear-gradient(140deg, #f5f7ff 0%, #d8f3f6 58%, #f2f8ff 100%);
}

.section {
  margin-block: 2rem;
}

.header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #dbe4f8;
  box-shadow: 0 8px 20px rgba(17, 47, 114, 0.06);
}

.nav {
  min-height: 84px;
  gap: 1rem;
}

.brand-logo {
  height: 82px;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 700;
  padding: 0.55rem 0.82rem;
}

.nav-links a:hover {
  color: var(--ink);
  background: #eff4ff;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(17, 47, 114, 0.12);
}

.btn-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(120deg, var(--brand-1), var(--brand-2));
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.btn-secondary,
.btn-link {
  color: var(--ink);
  border: 1px solid #dbe4f8;
  background: #f2f6ff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 2.5vw, 2.1rem);
  border-radius: 28px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(118deg, #0c2a68 0%, #1d4ea8 58%, #3f7bd8 100%);
  box-shadow: 0 22px 40px rgba(13, 27, 63, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -82px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero h1 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.hero p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
}

.hero .actions {
  gap: 0.8rem;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(13, 27, 63, 0.08);
}

.promo-card {
  border: 1px solid #ffd6b8;
  background: linear-gradient(130deg, #fff4e9 0%, #ffe7d7 100%);
}

.promo-card h3 {
  margin: 0 0 0.45rem;
}

.promo-card p {
  margin: 0;
}

.offers-grid {
  gap: 1.1rem;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 0.66rem;
}

.product-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #d7e1f3;
  background: #fff;
}

.meta-row {
  color: var(--ink-soft);
}

.price {
  color: #082865;
  font-weight: 900;
}

.price.small {
  color: #495c7f;
  font-weight: 800;
}

.tri-strip {
  border-radius: 18px;
  border: 0;
  background: linear-gradient(115deg, #f04e4e 0%, #f65276 72%);
  box-shadow: 0 14px 32px rgba(240, 78, 78, 0.28);
}

.tri-list {
  padding: 0.75rem;
}

.tri-item {
  min-width: 94px;
  min-height: 74px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
}

.tri-item.active {
  background: #fff;
  color: #f04e4e;
  box-shadow: 0 12px 22px rgba(11, 25, 66, 0.18);
}

.search-row input,
.search-row select,
input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid #b9caea;
  background: #f9fbff;
}

.search-row input:focus,
.search-row select:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #5f83d8;
  box-shadow: 0 0 0 3px rgba(95, 131, 216, 0.2);
}

.flash {
  border-radius: 14px;
  font-weight: 700;
}

.account-avatar {
  background: linear-gradient(130deg, #5d6f87, #8da0b7);
  color: #fff;
}

.account-menu-list {
  border-radius: 14px;
  border: 1px solid #d9e3f4;
  box-shadow: 0 20px 34px rgba(13, 27, 63, 0.16);
}

.pref-btn {
  background: linear-gradient(120deg, #f05b57, #f36a4b);
  box-shadow: 0 10px 18px rgba(240, 91, 87, 0.28);
}

footer,
.footer {
  color: #35527f;
}

@media (max-width: 1024px) {
  .brand-logo {
    height: 72px;
  }

  .nav {
    flex-wrap: wrap;
    row-gap: 0.65rem;
    padding-bottom: 0.8rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.3rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1120px, 95%);
  }

  .hero {
    border-radius: 20px;
    padding: 1.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .tri-item {
    min-width: 84px;
  }
}

/* === Alt Colorway: Sunset Neon === */
:root {
  --ink: #1b1138;
  --ink-soft: #5d4c8a;
  --surface: #ffffff;
  --line: #e5d8ff;
  --brand-1: #ff3366;
  --brand-2: #ff7a18;
  --brand-3: #22d3ee;
  --deep-1: #35155d;
  --deep-2: #5b21b6;
}

body {
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 122, 24, 0.23), transparent 34%),
    radial-gradient(circle at 100% 14%, rgba(34, 211, 238, 0.2), transparent 35%),
    linear-gradient(145deg, #fff7fb 0%, #f5efff 45%, #eefcff 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eddfff;
  box-shadow: 0 10px 26px rgba(91, 33, 182, 0.08);
}

.nav-links a {
  color: #6d4ea2;
}

.nav-links a:hover {
  color: #31124f;
  background: #f5ebff;
}

.cart-count {
  background: #ffe3d6;
  color: #b53722;
}

.btn-primary {
  background: linear-gradient(120deg, #ff3366, #ff7a18);
  box-shadow: 0 12px 24px rgba(255, 61, 104, 0.3);
}

.btn-secondary,
.btn-link {
  background: #f8f2ff;
  border-color: #e7d8ff;
  color: #3e1f6a;
}

.hero {
  background: linear-gradient(118deg, #34115f 0%, #5d2abf 48%, #2ea5d5 100%);
  box-shadow: 0 24px 44px rgba(53, 21, 93, 0.28);
}

.hero::before {
  background: rgba(255, 255, 255, 0.2);
}

.card {
  border: 1px solid #eadcff;
  box-shadow: 0 16px 30px rgba(63, 26, 120, 0.08);
}

.promo-card {
  border: 1px solid #ffd1c3;
  background: linear-gradient(130deg, #fff0ea 0%, #ffe2d2 100%);
}

.tri-strip {
  background: linear-gradient(110deg, #7f1dff 0%, #ff3366 55%, #ff7a18 100%);
  box-shadow: 0 16px 34px rgba(127, 29, 255, 0.28);
}

.tri-item {
  border-color: rgba(255, 255, 255, 0.35);
}

.tri-item.active {
  color: #7f1dff;
}

.price {
  color: #2f1560;
}

.price.small {
  color: #6f58a7;
}

.search-row input,
.search-row select,
input,
select,
textarea {
  border: 1px solid #d9c7ff;
  background: #fffaff;
}

.search-row input:focus,
.search-row select:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: #9f67ff;
  box-shadow: 0 0 0 3px rgba(159, 103, 255, 0.22);
}

.pref-btn {
  background: linear-gradient(120deg, #ff3366, #ff7a18);
  box-shadow: 0 10px 18px rgba(255, 61, 104, 0.3);
}

.account-menu-list {
  border: 1px solid #eadcff;
}

.account-menu-list a:hover,
.account-menu-action:hover {
  background: #f8f0ff;
  color: #2f1456;
}

/* === Menu & Footer Redesign === */
.header {
  border-bottom: 0;
  box-shadow: 0 12px 30px rgba(53, 21, 93, 0.1);
}

.nav {
  min-height: 92px;
  gap: 1.1rem;
}

.brand-logo {
  height: 68px;
}

.nav-links {
  margin-inline: auto;
  padding: 0.36rem;
  border: 1px solid #ecdfff;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f1ff 100%);
  box-shadow: inset 0 1px 0 #fff;
}

.nav-links a {
  border-radius: 999px;
  padding: 0.52rem 0.88rem;
  font-weight: 800;
}

.nav-links a:hover {
  background: #efe3ff;
}

.nav-right {
  gap: 0.65rem;
}

.nav-right .btn {
  padding-inline: 1.15rem;
}

.account-avatar-trigger {
  width: 44px;
  height: 44px;
  border: 1px solid #ddd0f4;
  box-shadow: 0 6px 14px rgba(53, 21, 93, 0.14);
}

.account-avatar {
  width: 36px;
  height: 36px;
}

.pref-btn {
  padding: 0.58rem 1rem;
  font-weight: 800;
}

.footer {
  margin-top: auto;
  padding: 1.2rem 0 2.2rem;
  border-top: 1px solid #eadcff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(247, 239, 255, 0.94) 100%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand strong {
  font-size: 1.02rem;
  color: #34155f;
}

.footer-brand span {
  color: #6d5a9f;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links a {
  text-decoration: none;
  color: #4b2f82;
  font-weight: 700;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #ddd0f4;
  background: #ffffff;
}

.footer-links a:hover {
  background: #f3e8ff;
}

.footer-copy {
  margin: 0;
  color: #7a66aa;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .nav {
    min-height: 84px;
  }

  .brand-logo {
    height: 62px;
  }

  .nav-links {
    width: 100%;
    order: 3;
    overflow-x: auto;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

/* === Full Redesign: Editorial Mono Pop === */
:root {
  --ink: #101218;
  --ink-soft: #4e5566;
  --surface: #ffffff;
  --line: #d9deea;
  --brand-1: #111827;
  --brand-2: #2f3a55;
  --brand-3: #14b8a6;
  --deep-1: #0f172a;
  --deep-2: #1e293b;
}

body {
  color: #101218;
  background:
    linear-gradient(0deg, rgba(16, 18, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 18, 24, 0.03) 1px, transparent 1px),
    #f6f7fb;
  background-size: 24px 24px, 24px 24px, auto;
}

.header {
  background: #111827;
  border-bottom: 1px solid #2b3447;
  box-shadow: none;
}

.nav {
  min-height: 86px;
}

.brand {
  background: transparent;
}

.brand-logo {
  height: 60px;
  filter: contrast(1.06);
}

.nav-links {
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links a {
  color: #e6eaf4;
  border-radius: 8px;
  font-weight: 700;
  padding: 0.55rem 0.72rem;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  background: #222b3f;
  color: #fff;
}

.nav-right .btn {
  box-shadow: none;
}

.btn {
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.btn-primary {
  border: 1px solid #0d121f;
  background: #111827;
  color: #fff;
}

.btn-primary:hover {
  background: #1b2436;
  transform: none;
  filter: none;
}

.btn-secondary,
.btn-link {
  background: #ffffff;
  border: 1px solid #2b3447;
  color: #111827;
}

.cart-count {
  background: #14b8a6;
  color: #052824;
  font-weight: 900;
}

.pref-btn {
  background: #ffffff;
  border: 1px solid #2b3447;
  color: #111827;
  box-shadow: none;
}

.pref-btn-icon {
  border-color: #2b3447;
}

.pref-globe {
  stroke: #111827;
}

.account-avatar-trigger {
  border: 1px solid #2b3447;
  box-shadow: none;
}

.account-avatar {
  background: #6b7280;
}

.hero {
  color: #101218;
  border: 2px solid #101218;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f5fc 100%);
  box-shadow: 8px 8px 0 #101218;
}

.hero::before {
  display: none;
}

.hero h1 {
  color: #111827;
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.hero p {
  color: #394150;
}

.card {
  border: 1px solid #cfd5e3;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.promo-card {
  border: 1px solid #b6e7e0;
  background: #ecfffc;
}

.product-logo-img {
  border-radius: 8px;
  border: 1px solid #d1d7e5;
}

.price {
  color: #0f172a;
}

.price.small {
  color: #55627a;
}

.tri-strip {
  border-radius: 14px;
  border: 2px solid #101218;
  background: #ffffff;
  box-shadow: none;
}

.tri-item {
  border: 1px solid #cfd5e3;
  border-radius: 10px;
  color: #273043;
  background: #f8faff;
}

.tri-item .tri-svg {
  stroke: #273043;
}

.tri-svg-fill rect {
  fill: #273043;
}

.tri-item.active {
  color: #ffffff;
  border-color: #111827;
  background: #111827;
  box-shadow: none;
}

.tri-item.active .tri-svg {
  stroke: #ffffff;
}

.tri-item.active .tri-svg-fill rect {
  fill: #ffffff;
}

.search-row input,
.search-row select,
input,
select,
textarea {
  border: 1px solid #cfd5e3;
  border-radius: 10px;
  background: #fff;
}

.search-row input:focus,
.search-row select:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}

.flash {
  border-radius: 10px;
  border-width: 1px;
}

.account-menu-list {
  border: 1px solid #cfd5e3;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(16, 18, 24, 0.12);
}

.account-menu-list a:hover,
.account-menu-action:hover {
  background: #f2f5fc;
  color: #0f172a;
}

.footer {
  border-top: 1px solid #d7dce8;
  background: #eef2f8;
}

.footer-brand strong {
  color: #111827;
}

.footer-brand span {
  color: #49546a;
}

.footer-links a {
  border: 1px solid #cfd5e3;
  border-radius: 8px;
  background: #fff;
  color: #273043;
}

.footer-links a:hover {
  background: #f6f8fd;
}

.footer-copy {
  color: #637089;
}

@media (max-width: 980px) {
  .header {
    background: #0f172a;
  }

  .nav-links {
    width: 100%;
    padding-top: 0.3rem;
  }
}

/* === Final Theme: K-pop Premium === */
:root {
  --ink: #1f1a24;
  --ink-soft: #6f637a;
  --surface: #ffffff;
  --line: #f0d9e6;
  --brand-1: #ff4f88;
  --brand-2: #ff7a59;
  --brand-3: #ffcf6f;
  --deep-1: #2f1c3f;
  --deep-2: #5b2f7b;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 79, 136, 0.12), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(255, 122, 89, 0.14), transparent 34%),
    linear-gradient(145deg, #fff7fb 0%, #fef8f2 48%, #f6fbff 100%);
}

.header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #f3dfe9;
  box-shadow: 0 10px 28px rgba(87, 35, 80, 0.08);
}

.brand-logo {
  height: 64px;
}

.nav-links {
  margin-inline: auto;
  padding: 0.3rem;
  border: 1px solid #f0d9e6;
  border-radius: 999px;
  background: #fff;
}

.nav-links a {
  color: #5f4a70;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.52rem 0.82rem;
}

.nav-links a:hover {
  color: #2f1c3f;
  background: #fff1f6;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 79, 136, 0.18);
}

.btn-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(120deg, var(--brand-1), var(--brand-2));
}

.btn-secondary,
.btn-link {
  color: #38244a;
  background: #fff;
  border: 1px solid #ecd7e4;
  box-shadow: none;
}

.cart-count {
  background: #ffe6d9;
  color: #ae3f1f;
}

.pref-btn {
  color: #fff;
  border: 0;
  background: linear-gradient(120deg, #ff5b86, #ff7a46);
  box-shadow: 0 10px 18px rgba(255, 88, 117, 0.28);
}

.pref-btn-icon {
  border-color: rgba(255, 255, 255, 0.8);
}

.pref-globe {
  stroke: #fff;
}

.account-avatar-trigger {
  border: 1px solid #e6d4e1;
  box-shadow: 0 6px 14px rgba(63, 30, 84, 0.12);
}

.account-avatar {
  background: linear-gradient(120deg, #7f8a97, #9ca6b2);
}

.hero {
  color: #fff;
  border: 0;
  border-radius: 26px;
  background: linear-gradient(118deg, #34195a 0%, #693099 52%, #ff5b82 100%);
  box-shadow: 0 24px 46px rgba(83, 26, 102, 0.28);
}

.hero::before {
  display: block;
  background: rgba(255, 255, 255, 0.16);
}

.hero h1 {
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
}

.card {
  border: 1px solid #efd9e6;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(83, 26, 102, 0.08);
}

.promo-card {
  border: 1px solid #ffd2bb;
  background: linear-gradient(130deg, #fff4eb 0%, #ffe5d7 100%);
}

.tri-strip {
  border: 0;
  border-radius: 18px;
  background: linear-gradient(110deg, #ff4f88 0%, #ff6a6a 52%, #ff8b4a 100%);
  box-shadow: 0 14px 30px rgba(255, 95, 124, 0.28);
}

.tri-item {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  color: #fff;
  background: transparent;
}

.tri-item .tri-svg {
  stroke: #fff;
}

.tri-svg-fill rect {
  fill: #fff;
}

.tri-item.active {
  color: #ff4f88;
  border-color: #fff;
  background: #fff;
}

.tri-item.active .tri-svg {
  stroke: #ff4f88;
}

.tri-item.active .tri-svg-fill rect {
  fill: #ff4f88;
}

.search-row input,
.search-row select,
input,
select,
textarea {
  border: 1px solid #e8d0df;
  border-radius: 12px;
  background: #fff;
}

.search-row input:focus,
.search-row select:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: #df79a6;
  box-shadow: 0 0 0 3px rgba(223, 121, 166, 0.2);
}

.account-menu-list {
  border: 1px solid #e9d5e2;
  border-radius: 14px;
  box-shadow: 0 20px 34px rgba(83, 26, 102, 0.18);
}

.account-menu-list a:hover,
.account-menu-action:hover {
  background: #fff1f6;
  color: #3c2053;
}

.footer {
  border-top: 1px solid #efdbe7;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 245, 250, 0.95) 100%);
}

.footer-brand strong {
  color: #3f2257;
}

.footer-brand span {
  color: #6f607b;
}

.footer-links a {
  color: #4f2e6a;
  border: 1px solid #e8d3e1;
  border-radius: 999px;
  background: #fff;
}

.footer-links a:hover {
  background: #fff0f6;
}

.footer-copy {
  color: #826f92;
}

@media (max-width: 980px) {
  .header {
    background: rgba(255, 255, 255, 0.96);
  }
}

/* === New Direction: Bonjour Editorial Style === */
body {
  color: #121212;
  background: #f3f2d9;
  font-family: "Nunito Sans", "Segoe UI", Tahoma, sans-serif;
}

.top-promo-banner {
  background: #f2d546;
  color: #111;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.42rem 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.header {
  background: rgba(243, 242, 217, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.nav {
  min-height: 86px;
}

.brand-logo {
  height: 64px;
}

.nav-links {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.nav-links a {
  color: #1d1d1d;
  font-weight: 800;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

.btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: #f2d546;
  color: #101010;
  border: 2px solid #111;
  box-shadow: none;
}

.btn-primary:hover {
  background: #f6df6d;
  transform: none;
  filter: none;
}

.btn-secondary,
.btn-link {
  background: #ffffff;
  border: 2px solid #111;
  color: #101010;
}

.pref-btn {
  background: #fff;
  color: #121212;
  border: 2px solid #111;
  box-shadow: none;
}

.pref-btn-icon {
  border-color: #111;
}

.pref-globe {
  stroke: #111;
}

.cart-count {
  background: #f2d546;
  color: #111;
}

.hero.home-hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 1.25rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #121212;
  padding: 0;
}

.home-hero-copy {
  background: #f3f2d9;
  border-radius: 28px;
  padding: 1.8rem 0.2rem 1.8rem 0;
}

.hero.home-hero h1 {
  color: #0f0f0f;
  font-family: "Arial Black", "Nunito Sans", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.08;
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.hero.home-hero p {
  color: #242424;
  max-width: 62ch;
  font-size: 1.12rem;
}

.home-hero .actions {
  margin-top: 1.15rem;
}

.home-hero-visual {
  min-height: 470px;
  border-radius: 38px;
  border: 2px solid #111;
  background:
    radial-gradient(circle at 30% 32%, rgba(255, 247, 191, 0.95), transparent 35%),
    linear-gradient(145deg, #f7c53f 0%, #efac23 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.home-hero-visual img {
  width: min(62%, 300px);
  max-width: 100%;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.16));
  transform: rotate(-6deg);
}

.home-hero-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  gap: 0.72rem;
  width: min(92%, 420px);
}

.hero-product-logo {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 16px;
  min-height: 62px;
  padding: 0.3rem;
}

.hero-product-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transform: none;
  filter: none;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.promo-card {
  border: 2px solid #111;
  background: #fff8cc;
}

.tri-strip {
  background: #f8f8ed;
  border: 2px solid #111;
  box-shadow: none;
}

.tri-item {
  color: #222;
  background: #fff;
  border: 1px solid #111;
}

.tri-item .tri-svg {
  stroke: #222;
}

.tri-svg-fill rect {
  fill: #222;
}

.tri-item.active {
  background: #f2d546;
  border-color: #111;
  color: #111;
}

.tri-item.active .tri-svg {
  stroke: #111;
}

.tri-item.active .tri-svg-fill rect {
  fill: #111;
}

.search-row input,
.search-row select,
input,
select,
textarea {
  border: 1px solid rgba(0, 0, 0, 0.28);
  background: #fff;
}

.search-row input:focus,
.search-row select:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(242, 213, 70, 0.3);
}

.footer {
  border-top: 2px solid #111;
  background: #ecebcc;
}

.footer-brand strong,
.footer-brand span,
.footer-copy {
  color: #1a1a1a;
}

.footer-links a {
  color: #161616;
  border: 1px solid #111;
  background: #fff;
}

.footer-links a:hover {
  background: #f2d546;
}

@media (max-width: 980px) {
  .hero.home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    padding-right: 0;
  }

  .home-hero-visual {
    min-height: 320px;
  }

  .home-hero-logos {
    grid-template-columns: repeat(4, minmax(52px, 1fr));
    width: min(94%, 420px);
  }
}

/* === Button color harmonization (header/footer) === */
.nav-right .btn-primary {
  background: linear-gradient(120deg, #ff7b59, #f2d546);
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  box-shadow: 0 6px 14px rgba(242, 213, 70, 0.35);
  transition: all 0.22s ease;
}

.nav-right .btn-primary:hover {
  background: linear-gradient(120deg, #ff5f8b, #ff9f4a);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 95, 139, 0.3);
}

.nav-right .btn-secondary,
.pref-btn {
  background: linear-gradient(120deg, #fff7cc, #ffe8b8);
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  transition: all 0.22s ease;
}

.nav-right .btn-secondary:hover,
.pref-btn:hover {
  background: linear-gradient(120deg, #ffd36e, #ffb85d);
  color: #1a1a1a;
  box-shadow: 0 8px 16px rgba(255, 184, 93, 0.32);
}

.footer-links a {
  background: linear-gradient(120deg, #fff7cf, #ffeec2);
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  transition: all 0.22s ease;
}

.footer-links a:hover {
  background: linear-gradient(120deg, #ffdb7c, #ffbf76);
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(255, 191, 118, 0.28);
}

/* === Tri tabs color refresh === */
.tri-strip .tri-item {
  background: #fff2cc !important;
  border-color: #1f1f1f !important;
  color: #2b2b2b !important;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tri-strip .tri-item .tri-svg {
  stroke: #2b2b2b !important;
}

.tri-strip .tri-item .tri-svg-fill rect {
  fill: #2b2b2b !important;
}

.tri-strip .tri-item:hover {
  background: #ffcf7a !important;
  color: #1a1a1a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 159, 74, 0.28);
}

.tri-strip .tri-item:hover .tri-svg {
  stroke: #1a1a1a !important;
}

.tri-strip .tri-item:hover .tri-svg-fill rect {
  fill: #1a1a1a !important;
}

.tri-strip .tri-item.active,
.tri-strip .tri-item[aria-selected="true"] {
  background: #f2d546 !important;
  border-color: #1f1f1f !important;
  color: #111 !important;
  box-shadow: none !important;
}

.tri-strip .tri-item.active .tri-svg,
.tri-strip .tri-item[aria-selected="true"] .tri-svg {
  stroke: #111 !important;
}

.tri-strip .tri-item.active .tri-svg-fill rect,
.tri-strip .tri-item[aria-selected="true"] .tri-svg-fill rect {
  fill: #111 !important;
}

/* === Brand logo refresh (new logo + bigger size) === */
.brand-logo {
  height: clamp(86px, 8.4vw, 118px) !important;
  width: auto !important;
  display: block;
}

.nav {
  min-height: clamp(100px, 10.8vw, 132px) !important;
}

.admin-brand img {
  width: clamp(200px, 18vw, 280px) !important;
  height: auto !important;
  display: block;
}

@media (max-width: 980px) {
  .brand-logo {
    height: 78px !important;
  }

  .nav {
    min-height: 92px !important;
  }
}

/* === Hero title glow === */
.hero.home-hero h1 {
  text-shadow:
    0 0 14px rgba(242, 213, 70, 0.82),
    0 0 34px rgba(255, 154, 74, 0.64),
    0 0 56px rgba(255, 95, 139, 0.38);
}



.menu-counter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: #f6d84d;
  color: #111827;
  font-size: .72rem;
  line-height: 1;
  font-weight: 800;
}
.seller-level-ribbon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.22);
  background: color-mix(in srgb, var(--seller-level-color, #b08d57) 82%, white 18%);
  color: #111827;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.seller-level-inline {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.18);
  background: color-mix(in srgb, var(--seller-level-color, #b08d57) 78%, white 22%);
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .seller-level-ribbon {
    top: 8px;
    right: 8px;
    font-size: .68rem;
    padding: 3px 8px;
  }
}

.offer-best-value-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
  border: 1px solid #f5c13d;
  background: #fff7d9;
  color: #8c5d00;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 800;
}

.compare-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: #445a80;
}

.compare-toggle input {
  width: auto;
  margin: 0;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c9d9f4;
  background: #f4f8ff;
  color: #234067;
  padding: 0.16rem 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.compare-panel {
  margin-bottom: 0.9rem;
  border: 1px solid #cfe0fb;
  background: #f7fbff;
  border-radius: 16px;
  padding: 0.85rem;
}

.compare-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.compare-panel-hint {
  margin: 0.35rem 0 0.7rem;
  color: #4d638a;
  font-size: 0.9rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
}

.compare-item {
  border: 1px solid #d6e3f8;
  border-radius: 14px;
  background: #fff;
  padding: 0.7rem;
}

.compare-item h4 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.compare-item p {
  margin: 0.2rem 0;
  color: #40597f;
  font-size: 0.85rem;
}

.compare-best {
  display: inline-flex;
  margin-bottom: 0.45rem;
  border-radius: 999px;
  border: 1px solid #ffd266;
  background: #fff2c7;
  color: #825400;
  padding: 0.14rem 0.44rem;
  font-size: 0.7rem;
  font-weight: 800;
}
