:root {
  /* Weiboo index-nine (variable1 + main.css) */
  --theme-color: #ef4444;
  --theme-red: #ee403d;
  --theme-red-dark: #c93532;
  --bg: #ffffff;
  --text: #040404;
  --muted: #777777;
  --line: #ececec;
  --card: #ffffff;
  --accent: #ef4444;
  --accent-dark: #c72121;
  --dark: #040404;
  /* legacy names: hot accent = promo / nav hover red */
  --hero-orange: #ee403d;
  --hero-orange-dark: #c93532;
  --subnav-bg: transparent;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.055);
  --shadow-md: 0 16px 48px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 8px 32px rgba(15, 23, 42, 0.07);
  --shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.11);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Thumb (scroll handle) */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 10040;
  /* Vertical pill — width : height ≈ 1 : 1.7 */
  width: 44px;
  height: 75px;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: var(--theme-red);
  color: #fff;
  box-shadow: 0 8px 28px rgba(238, 64, 61, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.scroll-top-btn__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.scroll-top-btn__chev,
.scroll-top-btn__ring {
  display: block;
  flex-shrink: 0;
}

.scroll-top-btn__ring {
  opacity: 0.98;
}

.scroll-top-btn:hover {
  background: var(--theme-red-dark);
  box-shadow: 0 10px 32px rgba(201, 53, 50, 0.45);
}

.scroll-top-btn:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .scroll-top-btn {
    right: 16px;
    bottom: 20px;
    width: 40px;
    height: 68px;
  }

  .scroll-top-btn__icons {
    gap: 4px;
  }

  .scroll-top-btn__chev {
    width: 18px;
    height: 18px;
  }

  .scroll-top-btn__ring {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top-btn {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: Jost, "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background-color: #FFFAF3;
  /* background-image:
    radial-gradient(ellipse 110% 55% at 50% -25%, rgba(251, 191, 36, 0.14), transparent 52%),
    radial-gradient(ellipse 55% 45% at 100% 25%, rgba(99, 102, 241, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 75%, rgba(14, 165, 233, 0.06), transparent 48%),
    linear-gradient(180deg, #fafbfd 0%, #f3f6fb 45%, #eef1f6 100%);
  background-attachment: fixed; */
}

h1,
h2,
h3,
.logo-word,
.hero-title,
.hero-side-title,
.block-head h2,
.footer-logo-word,
.subnav-menu {
  font-family: Jost, "Plus Jakarta Sans", sans-serif;
}

::selection {
  background: rgba(183, 155, 108, 0.35);
  color: var(--text);
}

/* Top promo strip — matches Weiboo .header-topbar.header-topbar1 */
.header-promo-bar {
  background: #f7941f;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.header-promo-inner {
  padding: 10px 16px;
}

.header-promo-text {
  margin: 0;
  line-height: 1.5;
}

.header-promo-text a {
  color: #fff;
  font-weight: 500;
  margin-left: 6px;
  text-decoration: none;
}

.header-promo-text a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .header-promo-bar {
    display: none;
  }
}

.container {
  width: min(1440px, 92%);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Top header (matches reference: logo | search | hotline | locale) —— */
.site-header {
  position: relative;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  font-family: Jost, "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  flex-wrap: nowrap;
  justify-content: space-between;
}

/* Top bar: grid | logo lockup (WEIBOO-style) */
.header-brand-cluster {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-grid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--theme-red);
  cursor: pointer;
  transition: background 0.2s ease;
}

.header-grid-btn:hover {
  background: rgba(238, 64, 61, 0.08);
}

.header-brand-divider {
  width: 1px;
  height: 36px;
  background: #dcdcdc;
  flex-shrink: 0;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo--text {
  align-items: center;
  gap: 10px;
}

.logo-word-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 1px;
  border-radius: 50%;
  background: var(--theme-red);
  vertical-align: middle;
  transform: translateY(-2px);
}

.logo-tagline {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #9ca3af;
  text-transform: none;
}

.logo-tagline--stack span {
  display: block;
}

.header-logo--has-img {
  gap: 12px;
}

.header-logo--has-img .logo-tagline {
  font-size: 12px;
  display: none;
}

.header-logo-img,
.subnav-logo-img,
.footer-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.subnav-logo-img {
  height: 36px;
}

.footer-logo-img {
  height: 38px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.logo-stripe {
  width: 4px;
  height: 22px;
  background: #ffffff;
  border-radius: 1px;
  transform: skewX(-14deg);
}

.logo-word {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.header-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 4px 8px 4px 4px;
  max-width: 640px;
  box-shadow: none;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.header-search:focus-within {
  border-color: rgba(238, 64, 61, 0.35);
  box-shadow:
    0 0 0 3px rgba(238, 64, 61, 0.12),
    var(--shadow-sm);
}

.search-cat {
  flex-shrink: 0;
}

.search-cat-select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 28px 10px 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.search-divider {
  width: 1px;
  height: 22px;
  background: #dcdcdc;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
}

.search-input::placeholder {
  color: #999999;
}

/* Bar uses Enter to search; keep a screen-reader submit for mouse users */
.search-submit {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.search-submit:hover {
  color: var(--theme-red);
  background: rgba(238, 64, 61, 0.08);
}

.header-hotline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(238, 64, 61, 0.2);
  background: linear-gradient(180deg, rgba(238, 64, 61, 0.08), rgba(238, 64, 61, 0.02));
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.header-hotline:hover {
  transform: translateY(-1px);
  border-color: rgba(238, 64, 61, 0.42);
  box-shadow: 0 8px 18px rgba(238, 64, 61, 0.14);
}

.hotline-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(238, 64, 61, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-red);
  background: #fff;
  flex-shrink: 0;
}

.hotline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.hotline-label {
  font-size: 13px;
  font-weight: 400;
  color: #64748b;
}

.hotline-num,
.hotline-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
}

.hotline-line {
  font-size: 13px;
  color: #475569;
  white-space: nowrap;
}

.hotline-line strong {
  font-weight: 700;
  color: #0f172a;
}

.header-locale {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.locale-pill-wrap {
  position: relative;
}

.locale-pill {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  padding: 10px 32px 10px 14px;
  cursor: pointer;
  min-width: 96px;
  background-color: rgba(248, 250, 252, 0.95);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  box-shadow: var(--shadow-xs);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.locale-pill:hover {
  border-color: rgba(238, 64, 61, 0.28);
}

.page {
  padding: 22px 0 40px;
}

/* —— Hero block: subnav + category column + banners —— */
.hero-block {
  padding: 0;
  background: #FFFAF3;
}

.hero-block-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ================================================
   HERO BANNER V3 — Reference design
   Left: copy + CTA  |  Right: model image in dashed frame
   ================================================ */

/* Carousel wrapper */
.hero-banner-v3 {
  position: relative;
  overflow: hidden;
  background: #FFFAF3;
}

/* Slides viewport — clips the moving track */
.hero-slides-viewport {
  overflow: hidden;
  width: 100%;
}

/* Sliding track */
.hero-slides-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual slide */
.hero-slide-v3 {
  flex: 0 0 100%;
  width: 100%;
}

/* Two-column inner layout */
.hero-banner-inner-v3 {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 0 48px;
  padding: 56px 0 56px;
  min-height: 420px;
}

/* ——— LEFT: Copy side ——— */
.hero-banner-copy-v3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

/* Kicker — "Best for your categories" in pink/red italic */
.hero-kicker-v3 {
  margin: 0 0 14px;
  font-family: "Dancing Script", cursive;
  font-size: 18px;
  font-weight: 700;
  color: #e8345a;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Main heading */
.hero-title-v3 {
  margin: 0 0 18px;
  font-family: Jost, "Plus Jakarta Sans", sans-serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 800;
  color: #0f0f0f;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

/* Yellow highlight pill on "Our Online" */
.hero-title-v3 .highlight {
  display: inline-block;
  background: #f7e84e;
  border-radius: 6px;
  padding: 0 10px 2px;
  font-style: normal;
  line-height: inherit;
}

/* Sub-copy paragraph */
.hero-lede-v3 {
  margin: 0 0 36px;
  font-size: 15px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.65;
  max-width: 420px;
}

/* CTA row */
.hero-actions-v3 {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* "Shop Now" dark pill button */
.btn-shop-now-v3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  background: #111111;
  color: #ffffff;
  font-family: Jost, "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.22s ease,
    transform 0.18s ease,
    box-shadow 0.22s ease;
  box-shadow: 0 6px 22px rgba(17, 17, 17, 0.22);
  white-space: nowrap;
}

.btn-shop-now-v3:hover {
  background: #e8345a;
  box-shadow: 0 10px 28px rgba(232, 52, 90, 0.32);
  transform: translateY(-2px);
}

.btn-shop-now-v3:active {
  transform: translateY(0);
}

/* ——— RIGHT: Visual side ——— */
.hero-banner-visual-v3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer dashed border frame */
.image-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Dashed rounded rectangle behind image */
.image-border-v3 {
  position: absolute;
  inset: -18px;
  border: 2px dashed #c8b8d8;
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}

/* Actual model photo */
.hero-img-v3 {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 420px;
  border-radius: 20px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}

.hero-slide-v3:hover .hero-img-v3 {
  transform: scale(1.02);
}

/* ——— Vertical dots on the far right ——— */
.hero-dots-v3 {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-dots-v3 button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d1c4e9;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    height 0.25s ease;
  outline: none;
}

.hero-dots-v3 button.is-active {
  background: #e8345a;
  transform: scaleY(1);
  width: 8px;
  height: 22px;
  border-radius: 4px;
}

.hero-dots-v3 button:hover:not(.is-active) {
  background: #9c7abf;
  transform: scale(1.2);
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .hero-banner-inner-v3 {
    grid-template-columns: 1fr 380px;
    gap: 0 32px;
    padding: 44px 0;
  }

  .hero-img-v3 {
    width: 300px;
    height: 360px;
  }
}

@media (max-width: 860px) {
  .hero-banner-inner-v3 {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0 24px;
    gap: 32px 0;
  }

  .hero-banner-copy-v3 {
    align-items: center;
  }

  .hero-lede-v3 {
    max-width: 520px;
    text-align: center;
  }

  .hero-banner-visual-v3 {
    justify-content: center;
  }

  .hero-img-v3 {
    width: 280px;
    height: 320px;
  }

  .hero-dots-v3 {
    position: static;
    transform: none;
    flex-direction: row;
    margin-top: 16px;
  }

  .hero-dots-v3 button.is-active {
    height: 8px;
    width: 22px;
    border-radius: 4px;
  }
}

@media (max-width: 560px) {
  .hero-title-v3 {
    font-size: 32px;
  }

  .hero-img-v3 {
    width: 240px;
    height: 280px;
  }

  .btn-shop-now-v3 {
    padding: 13px 28px;
    font-size: 14px;
  }
}

.subnav-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 10px 0;
}

.subnav-logo {
  display: none;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: min(220px, 38vw);
  min-width: 0;
}

.subnav-logo--text .logo-word {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.subnav-logo--text .logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 1px;
  border-radius: 50%;
  background: var(--theme-red);
  vertical-align: middle;
  transform: translateY(-2px);
}

.subnav-brand-divider {
  display: none;
}

.subnav-strip.menu_fix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  grid-template-columns: auto auto 1fr auto;
  column-gap: 18px;
  padding: 10px max(24px, calc((100vw - 1440px) / 2 + 24px));
  z-index: 140;
  border-radius: 0;
  box-shadow: 0 14px 34px rgba(4, 4, 4, 0.08);
  animation: subnavFixIn 0.28s ease;
  background: #f6f6f6;
  border-bottom: 1px solid #eaeaea;
}

.subnav-strip.menu_fix .subnav-brand-divider {
  display: block;
  align-self: center;
  height: 28px;
  background: #d4d4d4;
}

.subnav-strip.menu_fix .subnav-logo {
  display: inline-flex;
}

.subnav-strip.menu_fix .subnav-logo-img {
  height: 34px;
  max-width: 150px;
}

@keyframes subnavFixIn {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-block-inner.menu-fix-active {
  padding-top: var(--subnav-fix-offset, 72px);
}

.navbar {
  background: #f6f6f6;
  border-bottom: 1px solid #eaeaea;
}

.subnav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px 32px;
}

.subnav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #111111;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.subnav-menu a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--theme-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.subnav-menu a:hover {
  color: var(--theme-red);
}

.subnav-menu a:hover::after,
.subnav-menu a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.subnav-menu a.is-active {
  color: var(--theme-red);
}

.nav-plus {
  font-weight: 700;
  font-size: 14px;
  color: inherit;
  line-height: 1;
  margin-top: -1px;
}

.nav-chev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #9ca3af;
  margin-top: 2px;
}

.subnav-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.subnav-strip .subnav-tools {
  justify-self: end;
  margin-left: auto;
}

.subnav-strip .subnav-tools--weiboo {
  gap: 10px;
}

.tool-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
}

.nav-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background: #ffffff;
  color: #1a1a1a;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

button.nav-icon-btn {
  -webkit-appearance: none;
  appearance: none;
}

.nav-icon-btn:hover {
  border-color: rgba(238, 64, 61, 0.45);
  color: var(--theme-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.nav-user-wrap {
  position: relative;
}

.nav-user-wrap.user-chip--dropdown::after {
  top: 100%;
  height: 10px;
}

.nav-user-wrap .user-chip-menu {
  left: auto;
  right: 0;
  min-width: 200px;
}

.tool-link:hover {
  color: var(--theme-red);
}

.subnav-strip .tool-link.nav-icon-btn .badge-count {
  top: -4px;
  right: -4px;
}

.badge-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--theme-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
  border-left: 1px solid #c5d2e0;
  margin-left: 4px;
}

.user-chip--dropdown {
  position: relative;
  cursor: pointer;
}

.user-chip--dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.subnav-strip .user-chip {
  margin-left: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, var(--accent-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-name {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
}

.user-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.user-email {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
}

.user-chip-menu-head {
  padding: 10px 10px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.user-chip-menu-head strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.user-chip-menu-head .user-email {
  margin-top: 4px;
  white-space: normal;
  word-break: break-word;
}

.header-mobile-cart {
  display: none;
  position: relative;
}

.header-mobile-wishlist {
  display: none;
  position: relative;
  color: #1e1f21;
}

.header-actions-right {
  display: none;
}

.user-chip-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 172px;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
  padding: 8px;
  display: none;
  z-index: 160;
}

.user-chip--dropdown:hover .user-chip-menu,
.user-chip--dropdown:focus-within .user-chip-menu {
  display: block;
}

.user-chip-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.user-chip-menu a:hover {
  background: #f8fafc;
  color: #0f172a;
}

.hero-row {
  display: block;
  width: 100%;
}

.category-sidebar {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 4px 0 8px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f0f2f5;
  cursor: default;
}

.category-list li:hover {
  background: #fafafa;
}

.cat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f5f3ef, #ebe5db);
  border: 1px solid rgba(183, 155, 108, 0.22);
  color: var(--theme-color);
  flex-shrink: 0;
}

.cat-ico svg {
  display: block;
  flex-shrink: 0;
}

.category-list li:hover .cat-ico {
  background: linear-gradient(145deg, #f0ebe3, #e5dacb);
  border-color: rgba(183, 155, 108, 0.35);
  color: var(--accent-dark);
}

.cat-chev {
  margin-left: auto;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
}

.cat-chev::before {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.view-all-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  margin: 4px 8px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-red);
  text-decoration: none;
}

.view-all-categories:hover {
  background: rgba(238, 64, 61, 0.06);
}

.hero-banner {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(160deg, #f4f6f8 0%, #e8ecf1 100%);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-card);
}

.hero-banner-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 80% at 0% 0%, rgba(180, 190, 200, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 100% 100%, rgba(180, 190, 200, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(200, 210, 220, 0.35) 0%, transparent 25%),
    radial-gradient(circle at 92% 12%, rgba(200, 210, 220, 0.3) 0%, transparent 22%);
  opacity: 0.9;
}

.hero-slides-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-slides-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 32px 36px 52px;
  min-height: 320px;
}

.hero-banner-copy {
  max-width: 420px;
}

.hero-script-accent {
  margin: 0 0 6px;
  font-family: "Dancing Script", cursive;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--hero-orange);
  line-height: 1.1;
}

.hero-title {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ef4444, var(--accent-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 10px 28px rgba(183, 155, 108, 0.38);
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-hero:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 14px 36px rgba(183, 155, 108, 0.45);
}

.btn-hero-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-hero-arrow {
  transform: rotate(-12deg);
}

.hero-banner-visual {
  position: relative;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-pink-blob {
  position: absolute;
  width: min(72%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd6e8, #ffb8d9 55%, #ff9ccd);
  bottom: 8%;
  right: 6%;
  z-index: 0;
  opacity: 0.95;
}

.hero-model-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
  height: min(300px, 38vw);
  margin: 0 auto;
  border-radius: 12px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.hero-model-photo--1 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent),
    url("https://images.unsplash.com/photo-1515372039744-b8f02a3cd446?w=560&q=80");
}

.hero-model-photo--2 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent),
    url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=560&q=80");
}

.hero-model-photo--3 {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent),
    url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=560&q=80");
}

.hero-pink-blob--soft {
  background: radial-gradient(circle at 35% 35%, #ffe4ef, #ffc9e0 55%, #ffb3d4);
  opacity: 0.88;
}

.hero-pink-blob--mint {
  background: radial-gradient(circle at 35% 35%, #d4f5e9, #a8e6cf 55%, #7dd3b0);
  opacity: 0.75;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  align-items: center;
}

.hero-slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease,
    border-radius 0.25s ease;
}

.hero-slider-dots button:hover {
  background: #94a3b8;
}

.hero-slider-dots button.is-active {
  background: var(--hero-orange);
  width: 22px;
  border-radius: 999px;
}

/* —— Full-width cream hero (editorial slider) —— */
.hero-banner--cream {
  --hero-cream-bg: #fff9ed;
  --hero-cream-blob: #f7f0e1;

  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--hero-cream-bg);
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
  min-height: 380px;
}

.hero-banner--cream .hero-banner-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  /* padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px) clamp(52px, 6vw, 72px); */
  padding: 0 50px;
  min-height: clamp(380px, 52vh, 520px);
}

.hero-banner-shape {
  position: absolute;
  z-index: 0;
  left: -18%;
  top: 50%;
  transform: translateY(-50%);
  width: min(72%, 520px);
  aspect-ratio: 1;
  border-radius: 63% 37% 52% 48% / 48% 42% 58% 52%;
  background: var(--hero-cream-blob);
  opacity: 1;
  pointer-events: none;
}

.hero-banner--cream .hero-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-banner--cream .hero-banner-copy-hit {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hero-banner--cream .hero-banner-copy-hit:hover .hero-display-title,
.hero-banner--cream .hero-banner-copy-hit:hover .hero-kicker {
  opacity: 0.88;
}

.hero-banner--cream .hero-banner-copy-hit:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 4px;
}

.hero-kicker {
  margin: 0 0 12px;
  font-family: Montserrat, "Plus Jakarta Sans", Jost, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
}

.hero-display-title {
  margin: 0;
  font-family: Montserrat, "Plus Jakarta Sans", Jost, sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
}

.hero-banner--cream .hero-display-title {
  margin: 0 0 14px;
}

.hero-banner--cream .hero-lede--cream {
  margin: 10px 0 22px;
  max-width: 420px;
  font-family: Montserrat, "Plus Jakarta Sans", Jost, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.68);
}

.hero-banner--cream .hero-view-collection {
  align-self: flex-start;
}

.hero-lede {
  margin: 0 0 26px;
  max-width: 400px;
  font-family: Montserrat, "Plus Jakarta Sans", Jost, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.82);
}

.hero-cta-link {
  display: inline-block;
  font-family: Montserrat, "Plus Jakarta Sans", Jost, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  color: #000000;
}

.hero-cta-link:hover {
  opacity: 0.72;
}

.hero-banner--cream .hero-banner-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero-banner--cream .hero-model-photo {
  width: 100%;
  max-width: none;
  height: clamp(300px, 42vw, 460px);
  margin: 0;
  border-radius: 14px;
  box-shadow: none;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-banner--cream .hero-model-photo--dynamic {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  /* Letterboxing matches hero cream panel when aspect ratio differs */
  background-color: var(--hero-cream-bg, #fff9ed);
}

.hero-model-photo--cream1 {
  background-image: url("https://images.unsplash.com/photo-1529626455594-4ff0802cfb7e?auto=format&fit=crop&w=1100&q=85");
}

.hero-model-photo--cream2 {
  background-image: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=1100&q=85");
}

.hero-model-photo--cream3 {
  background-image: url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&w=1100&q=85");
}

.hero-slider-dots--cream {
  bottom: 22px;
  gap: 11px;
}

.hero-slider-dots--cream button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.28;
}

.hero-slider-dots--cream button:hover {
  opacity: 0.55;
  background: #000000;
}

.hero-slider-dots--cream button.is-active {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #000000;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-dots--cream button.is-active::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000000;
}

.hero-side-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(165deg, #f6f7f9 0%, #e9edf2 100%);
  padding: 20px 18px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 320px;
}

.script-accent {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 22px;
  color: var(--hero-orange);
  /* background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06); */
}

.hero-side-title {
  margin: 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #2d3748;
  line-height: 1.35;
}

.hero-side-photo {
  width: calc(100% + 36px);
  margin-left: -18px;
  margin-right: -18px;
  margin-top: auto;
  height: 200px;
  border-radius: 12px 12px 0 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.06)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=480&q=80") center / cover no-repeat;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  color: #fff;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.06);
}

@keyframes feature-icon-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes feature-shine {
  0% {
    transform: translateX(-120%) skewX(-12deg);
    opacity: 0;
  }

  15% {
    opacity: 0.35;
  }

  40% {
    transform: translateX(120%) skewX(-12deg);
    opacity: 0;
  }

  100% {
    transform: translateX(120%) skewX(-12deg);
    opacity: 0;
  }
}

.feature-pills {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-pill {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 18px 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease;
}

.feature-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  animation: feature-shine 5s ease-in-out infinite;
  pointer-events: none;
}

.feature-pill:nth-child(1)::after {
  animation-delay: 0s;
}

.feature-pill:nth-child(2)::after {
  animation-delay: 1.2s;
}

.feature-pill:nth-child(3)::after {
  animation-delay: 2.4s;
}

.feature-pill:nth-child(4)::after {
  animation-delay: 3.6s;
}

.feature-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.feature-pill--refund {
  background: linear-gradient(135deg, #fff4d6 0%, #ffe0a8 45%, #ffc978 100%);
}

.feature-pill--support {
  background: linear-gradient(135deg, #e0f0ff 0%, #c7e2ff 50%, #a8d4ff 100%);
}

.feature-pill--payment {
  background: linear-gradient(135deg, #d8fcee 0%, #b8f5e0 45%, #8ee9c8 100%);
}

.feature-pill--offers {
  background: linear-gradient(135deg, #ffe8f4 0%, #ffd0e8 45%, #ffb8de 100%);
}

.feature-pill__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  animation: feature-icon-pulse 2.8s ease-in-out infinite;
  transition: transform 0.28s ease;
}

.feature-pill:nth-child(1) .feature-pill__icon {
  animation-delay: 0s;
}

.feature-pill:nth-child(2) .feature-pill__icon {
  animation-delay: 0.35s;
}

.feature-pill:nth-child(3) .feature-pill__icon {
  animation-delay: 0.7s;
}

.feature-pill:nth-child(4) .feature-pill__icon {
  animation-delay: 1.05s;
}

.feature-pill:hover .feature-pill__icon {
  animation: none;
  transform: scale(1.12) rotate(-4deg);
}

.feature-pill--refund .feature-pill__icon {
  background: linear-gradient(145deg, #d4bc94, #b79b6c);
}

.feature-pill--support .feature-pill__icon {
  background: linear-gradient(145deg, #3b82f6, #2563eb);
}

.feature-pill--payment .feature-pill__icon {
  background: linear-gradient(145deg, #10b981, #059669);
}

.feature-pill--offers .feature-pill__icon {
  background: linear-gradient(145deg, #ec4899, #db2777);
}

.feature-pill__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.feature-pill__title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.feature-pill__sub {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {

  .feature-pill,
  .feature-pill__icon,
  .feature-pill::after {
    animation: none !important;
    transition: none;
  }

  .feature-pill:hover {
    transform: none;
  }

  .feature-pill:hover .feature-pill__icon {
    transform: none;
  }
}

.block {
  margin-top: 26px;
}

.block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.block-head h2 {
  font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.block-head a {
  color: var(--hero-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 4px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.block-head a:hover {
  color: var(--hero-orange-dark);
  background: rgba(238, 64, 61, 0.08);
}

.product-grid {
  display: grid;
  gap: 14px;
}

.product-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.product-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

/* —— Product cards — boutique frame + editorial footer —— */
.block--products .product-grid {
  gap: 26px;
}

/* ============================================================
   pcard--v3  — Attachment-style card (image full cover)
   • Discount badge: top-left
   • Wishlist + Eye icons: top-right, visible on hover
   • Add To Cart: bottom overlay, slides up on hover
   ============================================================ */

.pcard--v3 {
  background: #fff;
  border-radius: 14px;
  overflow: visible;
  border: none;
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.pcard--v3:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* ── Image wrapper (the full-cover photo area) ── */
.pcard--v3 .pcard__image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 3.8;
  background: #f0f2f5;
}

.pcard--v3 .pcard__img-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pcard--v3 .pcard__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.45s ease;
  z-index: 0;
}

.pcard--v3:hover .pcard__img {
  transform: scale(1.05);
}

/* ── Discount badge (top-left) ── */
.pcard--v3 .pcard__off-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: #1e2a3a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  line-height: 1.3;
}

.pcard--v3 .pcard__off-badge--new {
  background: linear-gradient(135deg, #10b981, #059669);
  /* Green */
}

.pcard--v3 .pcard__off-badge--hot {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  /* Red */
}

.pcard--v3 .pcard__off-badge--sale {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  /* Blue */
}

.pcard--v3 .pcard__off-badge--best {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  /* Orange */
}

/* ── Side action icons (top-right, appear on hover) ── */
.pcard--v3 .pcard__side-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pcard--v3:hover .pcard__side-actions {
  opacity: 1;
  transform: translateX(0);
}

.pcard--v3 .pcard__side-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  text-decoration: none;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 15;
}

.pcard--v3 .pcard__side-btn:nth-child(2) {
  transition-delay: 0.05s;
}

.pcard--v3 .pcard__side-btn:hover {
  color: var(--theme-red, #ef4444);
  transform: scale(1.1);
}

.pcard--v3 .pcard__side-btn.pcard__wish-toggle.is-active {
  color: var(--theme-red, #ef4444);
  background: #fff5f5;
}

.pcard--v3 .pcard__side-btn.pcard__wish-toggle.is-active svg {
  fill: currentColor;
}

/* ── Wish pulse animation ── */
@keyframes wish-pulse {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.35);
  }

  60% {
    transform: scale(0.92);
  }

  100% {
    transform: scale(1);
  }
}

.pcard--v3 .pcard__side-btn.wish-pulse svg,
.pcard__wish-toggle.wish-pulse svg {
  animation: wish-pulse 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* ── Add To Cart overlay (bottom, slides up on hover) ── */
.pcard--v3 .pcard__cart-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 12px 14px;
  z-index: 10;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.pcard--v3:hover .pcard__cart-overlay {
  opacity: 1;
  transform: translateY(0);
}

.pcard--v3 .pcard__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s ease, transform 0.2s ease;
}

.pcard--v3 .pcard__cart-btn:hover {
  background: rgba(238, 64, 61, 0.9);
  transform: translateY(-1px);
}

/* ── Card body (rating, title, price — below image) ── */
.pcard--v3 .pcard__body {
  padding: 15px;
  background: transparent;
}

.pcard--v3 .pcard__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  justify-content: flex-start;
}

.pcard--v3 .pcard__reviews-count {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.pcard--v3 .pcard__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
  letter-spacing: -0.01em;
}

.pcard__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pcard__title a:hover {
  color: var(--pcard-cta, #1283a1);
}

.pcard--v3 .pcard__title a:hover {
  color: var(--theme-red, #ef4444);
}

.pcard--v3 .pcard__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.pcard--v3 .pcard__price-old {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.pcard--v3 .pcard__price-current {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pcard {
  --pcard-ink: #0f172a;
  --pcard-cta: #ef4444;
  --pcard-cta-dark: #ef4444;
  --pcard-cat-bg: #e3f2fd;
  --pcard-cat-text: #0d47a1;
  --pcard-save-bg: #ecfdf5;
  --pcard-save-text: #166534;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8eaef;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.pcard:hover {
  transform: translateY(-4px);
  border-color: #dbe0e8;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.pcard--muted {
  opacity: 0.62;
  filter: grayscale(0.35) contrast(0.95);
}

.pcard__media {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px 14px 0;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid #eef0f3;
  overflow: visible;
}

.pcard__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.pcard__toolbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.pcard__image-frame {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 0;
}

.pcard__media .thumb,
.pcard__image-frame .thumb,
.pcard__image-frame a.thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.45s ease;
}

.pcard:hover .pcard__image-frame .thumb,
.pcard:hover .pcard__image-frame a.thumb {
  transform: scale(1.04);
}

.pcard__oos {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 12;
  transform: translate(-50%, -50%) rotate(-8deg);
  padding: 10px 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 18, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.pcard--muted .pcard__image-frame .thumb,
.pcard:has(.pcard__oos) .pcard__image-frame .thumb {
  opacity: 0.85;
}

.pcard__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  padding: 10px 12px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
  z-index: 10;
  border-radius: 0 0 10px 10px;
}

.pcard:hover .pcard__overlay {
  opacity: 1;
  transform: translateY(0);
}

.pcard__btn--buy {
  width: 100%;
  background: linear-gradient(135deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  color: #fff;
  border: none;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 10px 22px rgba(238, 64, 61, 0.32);
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.pcard__btn--buy:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(238, 64, 61, 0.4);
}

.pcard__wish-toggle {
  position: relative;
  flex-shrink: 0;
  z-index: 15;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pcard__wish-toggle:hover {
  color: var(--pcard-cta);
  border-color: #cbd5e1;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.pcard__wish-toggle.is-active {
  color: var(--theme-red);
  background: #fff5f5;
  border-color: rgba(238, 64, 61, 0.35);
}

.heart-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5px;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.pcard__wish-toggle.is-active .heart-icon {
  fill: currentColor;
  transform: scale(1.08);
}

.heart-icon path {
  fill: inherit;
  transition: fill 0.25s ease;
}

.pcard__badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 100%;
  pointer-events: none;
}

.pcard__badge {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pcard-cat-text);
  background: var(--pcard-cat-bg);
  border: 1px solid rgba(13, 71, 161, 0.12);
}

.pcard__badge--new {
  color: var(--pcard-cat-text);
  background: var(--pcard-cat-bg);
}

.pcard__badge--off {
  color: #fff;
  background: linear-gradient(135deg, #f05a54 0%, var(--theme-red-dark) 100%);
  border-color: transparent;
}

.pcard__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}

.pcard__toolbar .pcard__category {
  margin: 0;
}

.pcard__category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pcard-cat-text);
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--pcard-cat-bg);
  border: 1px solid rgba(13, 71, 161, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pcard__category::before {
  display: none;
}

.pcard:hover .pcard__category {
  color: var(--pcard-cat-text);
}

.pcard__title {
  font-family: Jost, "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--pcard-ink);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
  min-height: 2.7rem;
  letter-spacing: -0.02em;
}

.pcard:hover .pcard__title {
  color: #1e3a8a;
}

.pcard__price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pcard__price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.pcard__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.pcard__price-current {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pcard-ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pcard__price-old {
  font-size: 0.875rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
}

.pcard__save-badge {
  flex-shrink: 0;
  align-self: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pcard-save-text);
  background: var(--pcard-save-bg);
  border: 1px solid rgba(22, 101, 52, 0.15);
}

.pcard__rating {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0;
  width: 100%;
}

.pcard__stars {
  display: inline-flex;
  flex-shrink: 0;
  gap: 2px;
  font-size: 18px;
  letter-spacing: 0;
}

.pcard__star {
  color: #d1d5db;
  line-height: 1;
}

.pcard__star--full {
  color: #fbbf24;
}

.pcard__rating-num {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

/* Legacy pcard markup (e.g. static index.html) without toolbar / image-frame */
.pcard__media:not(:has(.pcard__image-frame)) {
  aspect-ratio: 1 / 1.08;
  padding: 12px;
  background: #f3f4f6;
}

.pcard__media:not(:has(.pcard__toolbar)) .pcard__wish-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
}

.pcard__media:not(:has(.pcard__toolbar)) .pcard__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 15;
}

.pcard__media:not(:has(.pcard__image-frame)) .thumb {
  position: absolute;
  inset: 12px;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.pcard__reviews {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.pcard__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  align-items: center;
}

.pcard__swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(26, 22, 18, 0.12),
    0 4px 10px rgba(26, 22, 18, 0.1);
  background: var(--sw, #ccc);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pcard__swatch:hover {
  transform: scale(1.12);
}

.pcard__swatch.is-active {
  box-shadow:
    0 0 0 2px var(--accent),
    0 4px 12px rgba(183, 155, 108, 0.35);
}

.pcard__swatch--light {
  box-shadow:
    0 0 0 1px rgba(26, 22, 18, 0.18),
    0 4px 10px rgba(26, 22, 18, 0.08);
}

.pcard__actions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eef0f3;
}

.pcard__btn {
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  font-family: Jost, Inter, sans-serif;
}

.pcard__btn--cart {
  background: var(--pcard-cta);
  color: #fff;
  border-color: var(--pcard-cta);
  box-shadow: 0 4px 14px rgb(239 68 68 / 39%);
}

.pcard__btn--cart:hover {
  background: var(--pcard-cta-dark);
  border-color: var(--pcard-cta-dark);
  box-shadow: 0 4px 14px rgb(239 68 68 / 22%);
  transform: translateY(-1px);
}

.pcard__btn--view {
  background: #fff;
  color: var(--pcard-ink);
  border-color: #e2e8f0;
}

.pcard__btn--view:hover {
  border-color: #cbd5e1;
  color: var(--pcard-ink);
  background: #f8fafc;
  transform: translateY(-1px);
}

/* PLP list view: flat media (no inset frame) */
.t1-plp-grid.list-view .pcard {
  background: #fff;
}

.t1-plp-grid.list-view .pcard__media {
  flex-direction: column;
  margin: 0;
  padding: 10px;
  border-radius: 0;
  background: #fff;
  border-bottom: none;
  height: 100%;
}

.t1-plp-grid.list-view .pcard__toolbar {
  margin-bottom: 8px;
}

.t1-plp-grid.list-view .pcard__image-frame {
  flex: 1;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 8px;
}

.t1-plp-grid.list-view .pcard__image-frame .thumb,
.t1-plp-grid.list-view .pcard__image-frame a.thumb {
  border-radius: 8px;
}

.t1-plp-grid.list-view .pcard__media .thumb {
  inset: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.t1-plp-grid.list-view .pcard__overlay {
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
}

.t1-plp-grid.list-view .pcard__wish-toggle {
  position: relative;
  top: auto;
  right: auto;
}

.t1-plp-grid.list-view .pcard__badges {
  position: relative;
  top: auto;
  left: auto;
  max-width: 100%;
}

.t1-plp-grid.list-view .pcard__oos {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  margin: 0;
}

.t1-plp-grid.list-view .pcard__btn--buy {
  border-radius: 10px;
}

.thumb {
  height: 120px;
  border-radius: 11px;
  margin-bottom: 10px;
}

.tag {
  position: absolute;
  top: 9px;
  left: 9px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  border-radius: 999px;
  padding: 5px 8px;
}

.tag.red {
  background: #ef4444;
}

.tag.yellow {
  background: #c9ae82;
}

.blue {
  background: linear-gradient(145deg, #cde4ff, #90b9f7);
}

.peach {
  background: linear-gradient(145deg, #ffe1cf, #ffc9ab);
}

.cyan {
  background: linear-gradient(145deg, #cef8ff, #8be3f0);
}

.pink {
  background: linear-gradient(145deg, #ffd4ea, #ff9bcc);
}

.lilac {
  background: linear-gradient(145deg, #e3d9ff, #b8a9f3);
}

.mint {
  background: linear-gradient(145deg, #d4f8ea, #90dfc2);
}

@keyframes icon-row-ambient {

  0%,
  100% {
    background-position: 0% 40%;
  }

  50% {
    background-position: 100% 60%;
  }
}

.icon-row--premium {
  --icon-accent: #ee403d;
  margin-top: 22px;
  padding: 26px 22px 28px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: radial-gradient(900px 280px at 10% -20%, rgba(251, 191, 36, 0.14), transparent 55%),
    radial-gradient(700px 240px at 95% 110%, rgba(59, 130, 246, 0.1), transparent 50%),
    linear-gradient(125deg, #f8fafc 0%, #f1f5f9 38%, #eef2f7 100%);
  background-size: 160% 160%;
  animation: icon-row-ambient 22s ease-in-out infinite;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 40px rgba(15, 23, 42, 0.07);
}

.icon-row--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 Q20 20 40 40 T80 40' fill='none' stroke='%23cbd5e1' stroke-opacity='.35' stroke-width='0.6'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
}

.icon-row__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.icon-row__intro {
  text-align: left;
  max-width: 420px;
}

.icon-row__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
}

.icon-row__title {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.icon-row__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #64748b;
}

.icon-row__stat {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: #475569;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
}

.icon-row__stat strong {
  color: var(--icon-accent);
  font-weight: 800;
}

.icon-row__scroller {
  position: relative;
  z-index: 1;
  margin: 0 -6px;
  padding: 6px 6px 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 12px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.7) transparent;
}

.icon-row__scroller::-webkit-scrollbar {
  height: 8px;
}

.icon-row__scroller::-webkit-scrollbar-track {
  margin: 0 20px;
  background: rgba(241, 245, 249, 0.6);
  border-radius: 999px;
}

.icon-row__scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
  border-radius: 999px;
  border: 2px solid rgba(248, 250, 252, 0.9);
}

.icon-row__list {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-evenly;
  gap: 10px;
  width: 100%;
  min-width: min-content;
  margin: 0 auto;
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: linear-gradient(165deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(248, 250, 252, 0.94) 45%,
      rgba(241, 245, 249, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -10px 24px rgba(15, 23, 42, 0.035),
    0 10px 36px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.icon-row__list::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -30%, rgba(251, 191, 36, 0.12), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.icon-row__list::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 10px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.95) 20%,
      rgba(255, 255, 255, 0.95) 80%,
      transparent);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.icon-row__card {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px 11px 11px;
  border-radius: 14px;
  scroll-snap-align: center;
  text-decoration: none;
  color: #0f172a;
  font-family: Jost, Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  flex: 1 1 118px;
  min-width: 118px;
  max-width: 200px;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 10px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.25, 0.64, 1),
    box-shadow 0.32s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.icon-row__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(238, 64, 61, 0.35), transparent 40%, rgba(59, 130, 246, 0.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.icon-row__card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #cbd5e1;
  background: #fff;
  z-index: 2;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 36px rgba(15, 23, 42, 0.1);
}

.icon-row__card:hover::after {
  opacity: 1;
}

.icon-row__card:hover .icon-row__mark {
  transform: rotate(-4deg) scale(1.06);
}

.icon-row__card:hover .icon-row__chev {
  opacity: 1;
  transform: translateX(2px);
  color: var(--icon-accent);
}

.icon-row__card:active {
  transform: translateY(-2px) scale(1.01);
}

.icon-row__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.32s cubic-bezier(0.34, 1.25, 0.64, 1);
}

.icon-row__card--adidas .icon-row__mark {
  background: linear-gradient(145deg, #0f172a, #334155);
}

.icon-row__card--nike .icon-row__mark {
  background: linear-gradient(145deg, #18181b, #27272a);
}

.icon-row__card--puma .icon-row__mark {
  background: linear-gradient(145deg, #1d4ed8, #2563eb);
}

.icon-row__card--zara .icon-row__mark {
  background: linear-gradient(145deg, #0f766e, #14b8a6);
}

.icon-row__card--levis .icon-row__mark {
  background: linear-gradient(145deg, #9a8258, #b79b6c);
}

.icon-row__card--hm .icon-row__mark {
  background: linear-gradient(145deg, #be123c, #f43f5e);
}

.icon-row__name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.icon-row__chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.35;
  color: #94a3b8;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.icon-row__chev::before {
  content: "→";
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .icon-row--premium {
    animation: none;
    background-size: auto;
  }

  .icon-row__card,
  .icon-row__mark,
  .icon-row__chev {
    transition: none;
  }

  .icon-row__card:hover {
    transform: none;
  }

  .icon-row__card:hover .icon-row__mark {
    transform: none;
  }

  .icon-row__card:hover .icon-row__chev {
    transform: none;
  }
}

/* Split block — top listed grid + promo (Weiboo-style) */
.split-block.split-block--listed {
  margin-top: clamp(20px, 3vw, 32px);
  display: grid;
  /* grid-template-columns: minmax(0, 1.72fr) minmax(260px, 0.82fr); */
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}

.split-block-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 26px);
  box-shadow: var(--shadow-xs);
}

.split-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(18px, 2vw, 24px);
}

.split-block-title {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 15px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.split-block-viewall {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.split-block-viewall:hover {
  color: var(--theme-red);
}

.split-block-empty {
  margin: 0;
  padding: 24px 12px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

.split-block-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 10px 0 30px;
}

@media (max-width: 992px) {
  .split-block-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .split-block-grid {
    grid-template-columns: 1fr;
  }
}

.split-product-v2 {
  min-width: 0;
  display: block;
}

.sp-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.sp-link:hover {
  transform: translateY(-4px);
}

.sp-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
  z-index: 1;
}

.sp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.4;
}

.sp-info-box {
  position: relative;
  z-index: 2;
  margin: -40px 14px 0 14px;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sp-link:hover .sp-info-box {
  border-color: #94a3b8;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.sp-rating-row,
.sp-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.sp-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sp-stars {
  display: flex;
  gap: 2px;
  font-size: 11px;
}

.sp-star--full {
  color: #e11d48;
}

.sp-star--empty {
  color: #cbd5e1;
}

.sp-review-count {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
}

.sp-old-price {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-decoration: line-through;
}

.sp-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sp-current-price {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
}

/* Promo column — peach panel + photo crop */
.split-block-promo {
  min-height: 420px;
}

.split-block-promo-inner {
  position: relative;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(26px, 3vw, 34px) clamp(18px, 2vw, 24px) 0;
  background: linear-gradient(180deg, #fde8ec 0%, #fcdce3 42%, #fbcfd9 100%);
  border: 1px solid rgba(239, 130, 152, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.split-block-promo-inner::before {
  content: "";
  position: absolute;
  right: -30%;
  top: -20%;
  width: 70%;
  height: 55%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.split-block-promo-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.split-block-promo-title {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  max-width: 280px;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.split-block-promo-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--theme-red);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(238, 64, 61, 0.35);
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}

.split-block-promo-btn:hover {
  filter: brightness(1.06);
}

.split-block-promo-visual {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  min-height: 46%;
  flex: 1;
  border-radius: 18px 18px 0 0;
  /* background-color: rgba(255, 255, 255, 0.25); */
  background-image: url("/theme-2/images/image-slide-2.png");
  background-size: cover;
  background-position: center 22%;
}

/* Deal of the week — redesign */
.deal-week {
  margin-top: clamp(28px, 4vw, 48px);
}

.deal-week__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: 20px;
  background-color: #fafaf9;
  border: 2px solid #13172b;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Faint background decals */
.deal-week__grid::before,
.deal-week__grid::after {
  content: "";
  position: absolute;
  background: #f1f5f9;
  width: 300px;
  height: 300px;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.6;
}

.deal-week__grid::before {
  top: -100px;
  left: 20%;
}

.deal-week__grid::after {
  bottom: -150px;
  right: 40%;
}

.deal-week__content {
  padding: clamp(36px, 5vw, 64px) clamp(28px, 5vw, 64px);
  z-index: 2;
}

.deal-week__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
}

.deal-week__title {
  margin: 0 0 32px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.highlight-red {
  color: #ef4444;
  font-weight: 800;
}

.deal-week__timer {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.deal-week__timer-cell {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.deal-week__timer-val {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.deal-week__timer-unit {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  margin-top: 4px;
}

.deal-week__shop-btn {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deal-week__shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  color: #fff;
}

.deal-week__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 30px;
}

.deal-week__visual img {
  width: 100%;
  /* max-width: 550px; */
  height: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

@media (max-width: 960px) {
  .deal-week__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deal-week__badge {
    justify-content: center;
  }

  .deal-week__timer {
    justify-content: center;
  }

  .deal-week__visual {
    justify-content: center;
    padding-top: 0;
  }

  .deal-week__visual img {
    max-width: 400px;
    object-position: bottom center;
  }
}

/* Testimonial Section */
.testimonial-section {
  margin-top: clamp(40px, 6vw, 80px);
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
}

.testimonial__visual {
  position: relative;
  background: #f1f5f9;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 0px;
  border-radius: 0 40px 40px 0;
  z-index: 1;
}

.testimonial__model-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.testimonial__content {
  /* background: #fafaf9;
  padding: clamp(32px, 5vw, 64px); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__card {
  background: #fff;
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  width: 100%;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.04);
}

.testimonial__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e11d48;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
}

.testimonial__title {
  color: #0f172a;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}

.testimonial__quote-box {
  position: relative;
  border: 1.5px dashed #cbd5e1;
  border-radius: 100px;
  padding: clamp(24px, 3vw, 40px) clamp(32px, 4vw, 56px);
  background: transparent;
}

.testimonial__slider {
  position: relative;
  overflow: hidden;
}

.testimonial__slide {
  display: none;
  animation: tFadeIn 0.5s ease;
}

.testimonial__slide.active {
  display: block;
}

@keyframes tFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  z-index: 2;
}

.testimonial__nav-btn:hover {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.testimonial__nav-btn--prev {
  left: -22px;
}

.testimonial__nav-btn--next {
  right: -22px;
}

.testimonial__stars {
  color: #e11d48;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.7;
  color: #64748b;
  margin: 0 0 24px;
}

.testimonial__author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial__author-info strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.testimonial__author-info span {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 960px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial__visual {
    border-radius: 0;
    padding-top: 20px;
  }

  .testimonial__quote-box {
    border-radius: 24px;
    padding: 32px 24px;
  }

  .testimonial__nav-btn--prev {
    left: 0;
    margin-left: -12px;
  }

  .testimonial__nav-btn--next {
    right: 0;
    margin-right: -12px;
  }
}

/* Home — red benefits strip (trust badges) */
.t2-benefits-strip {
  background: #ef4444;
  color: #fff;
  padding: clamp(40px, 5.5vw, 64px) 0;
  margin: 0;
}

.t2-benefits-strip__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
}

.t2-benefits-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  text-align: center;
}

.t2-benefits-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  margin: 0 auto;
}

.t2-benefits-strip__blob {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.t2-benefits-strip__blob svg {
  color: #ef4444;
}

.t2-benefits-strip__blob--a {
  border-radius: 62% 38% 55% 45% / 52% 48% 58% 42%;
}

.t2-benefits-strip__blob--b {
  border-radius: 48% 52% 42% 58% / 44% 56% 48% 52%;
}

.t2-benefits-strip__blob--c {
  border-radius: 55% 45% 48% 52% / 58% 42% 55% 45%;
}

.t2-benefits-strip__blob--d {
  border-radius: 44% 56% 52% 48% / 50% 50% 46% 54%;
}

.t2-benefits-strip__title {
  margin: 0 0 10px;
  font-family: Jost, "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}

.t2-benefits-strip__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 540px) {
  .t2-benefits-strip__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .t2-benefits-strip__item {
    max-width: 360px;
  }
}

/* Footer — light Weiboo-style (attachment reference) */
.footer {
  margin-top: auto;
  color: var(--muted);
  border-top: 1px solid #ede3dd;
  background: #F9F3F0;
  box-shadow: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(2, minmax(0, 1fr)) minmax(200px, 1.05fr);
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(44px, 5vw, 64px) 0 clamp(36px, 4vw, 48px);
  border-bottom: 1px solid #e5e5e5;
}

.footer-brand-col {
  min-width: 0;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-decoration: none;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-app-left {
  margin-top: 20px;
}

.footer-bottom-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.footer-brand-logo--has-img {
  align-items: flex-start;
}

.footer-brand-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-brand-word-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand-word {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.footer-brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--theme-red);
  vertical-align: super;
}

.footer-brand-tagline {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
}

.footer-brand-tagline span {
  display: block;
}

.footer-brand-desc {
  margin: 0 0 18px;
  max-width: 340px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.footer-brand-rule {
  height: 1px;
  background: #e0e0e0;
  margin-bottom: 18px;
  max-width: 340px;
}

.footer-brand-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-hotline-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-hotline-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.footer-hotline-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}

.footer-hotline-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.footer-brand-address {
  margin: 0 0 18px;
  font-size: 13px;
  color: #888;
  max-width: 340px;
}

.footer-social.footer-social--round {
  gap: 10px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #525252;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social-btn:hover {
  background: var(--theme-red);
  border-color: var(--theme-red);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading-wb {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #13172B;
}

.footer-links--wb ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links--wb li {
  margin-bottom: 10px;
}

.footer-links--wb a {
  text-decoration: none;
  font-size: 14px;
  color: #5A5858;
  transition: color 0.2s ease;
}

.footer-links--wb a:hover {
  color: var(--theme-red);
}

.footer-about-text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 260px;
}

.footer-inline-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.footer-inline-cta:hover {
  color: var(--theme-red);
}

.footer-newsletter-wb {
  min-width: 0;
}

.footer-newsletter-lead {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-form input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  outline: none;
}

.footer-newsletter-form input:focus {
  border-color: rgba(238, 64, 61, 0.45);
  box-shadow: 0 0 0 3px rgba(238, 64, 61, 0.08);
}

.footer-newsletter-btn {
  align-self: flex-start;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--theme-red);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    filter 0.2s ease,
    transform 0.15s ease;
}

.footer-newsletter-btn:hover {
  filter: brightness(1.05);
}

.footer-newsletter-btn:active {
  transform: scale(0.98);
}

.footer-app-row {
  border-bottom: 1px solid #e5e5e5;
  background: #f5f5f5;
}

.footer-app-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px 0;
}

.footer-app-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-app-badge {
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 148px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #dadada;
  background: #fff;
  text-decoration: none;
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease; */
}

.footer-app-badge:hover {
  border-color: #bfbfbf;
  box-shadow: var(--shadow-xs);
}

.footer-app-badge-small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-app-badge-big {
  font-size: 15px;
  font-weight: 700;
}

.footer-pay-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-pay-pill {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.footer-pay-pill--emph {
  border-style: dashed;
}

.footer-bottom-bar {
  background: #ede3dd;
}

.footer-bottom-inner {
  padding: 14px 16px;
  text-align: center;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.footer-bottom-inner strong {
  color: var(--text);
  font-weight: 700;
}

/* Theme-1 profile page */
/* .profile-page-wrap {
  background: radial-gradient(1100px 500px at 3% -8%, rgba(251, 191, 36, 0.18), transparent 52%),
    radial-gradient(900px 400px at 95% 5%, rgba(99, 102, 241, 0.13), transparent 55%),
    radial-gradient(600px 300px at 50% 100%, rgba(16, 185, 129, 0.07), transparent 60%),
    linear-gradient(175deg, #f1f5fb 0%, #e8eef7 55%, #edf2f9 100%);
  min-height: 100vh;
} */

.profile-shell {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  padding: 40px 0 80px;
  align-items: start;
  /* width: min(1440px, 94%); */
  margin: 0 auto;

  @media (max-width: 768px) {
    padding: 20px 0 40px;
  }
}

.profile-shell--full {
  grid-template-columns: 1fr;
}

.profile-side {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  position: sticky;
  top: 20px;
  z-index: 10;
}

.profile-card-top {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  /* background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.03), transparent),
    radial-gradient(circle at bottom left, rgba(183, 155, 108, 0.03), transparent); */
  position: relative;
  overflow: hidden;
}

.profile-avatar-wrap {
  position: relative;
  width: fit-content;
  flex-shrink: 0;
}

.profile-avatar-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(239, 68, 68, 0.25);
  animation: profileAvatarRotate 20s linear infinite;
}

@keyframes profileAvatarRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 2;
}

.profile-info-text {
  flex: 1;
  min-width: 0;
}

.profile-card-top h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-card-top p {
  font-size: 13px;
  color: #64748b;
  margin-top: 0px;
  margin-bottom: 5px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-member-since {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(239, 68, 68, 0.1);
  display: inline-block;
}

.profile-menu {
  padding: 24px 20px;
  list-style: none;
  margin: 0;
}

.profile-menu li {
  margin-bottom: 12px;
}

.profile-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  color: #64748b;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.profile-menu li a:hover {
  border-color: #0f172a;
  color: #0f172a;
  transform: translateY(-2px);
  /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); */
}

.profile-menu li a.is-active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  /* box-shadow: 0 10px 20px rgba(239, 68, 68, 0.25); */
}

.profile-menu-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: inherit;
  transition: all 0.3s ease;
}

.profile-menu li a.is-active .profile-menu-icon {
  color: #fff;
}

.profile-menu-divider {
  display: none;
  /* Attachment doesn't have dividers, items are cards */
}

.profile-main {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  padding: 40px;

  @media (max-width: 768px) {
    padding: 20px;
  }
}

.profile-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.profile-main-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.profile-edit-btn {
  border: 0;
  border-radius: 7px;
  padding: 11px 22px;
  /* background: linear-gradient(135deg, #ddc9a4 0%, #c9ae82 50%, #b79b6c 100%); */
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.02em;
  /* box-shadow: 0 8px 20px rgb(239 68 68 / 10%), 0 1px 0 rgba(255, 255, 255, 0.25) inset; */
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

/* .profile-edit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 14px 28px rgba(183, 155, 108, 0.42);
} */

/* Personal Info Card */
.profile-info-card {
  /* background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 40px; */
  margin-bottom: 30px;
  /* box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04); */
  position: relative;
  overflow: hidden;

  @media (max-width: 768px) {
    padding: 20px;
  }
}

/* .profile-info-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
  border-radius: 50%;
} */

.profile-info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.profile-info-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-info-header h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #ef4444;
  border-radius: 99px;
}

.profile-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.profile-detail-item {
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-detail-item:hover {
  background: #ffffff;
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.06);
}

.profile-detail-item dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.profile-detail-item dd {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.t1-verify-badge {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 8px;
}

.t1-verify-badge.is-verified {
  background: #f0fdf4;
  color: #16a34a;
}

.t1-verify-badge.is-unverified {
  background: #fef2f2;
  color: #dc2626;
}

/* Address & Rewards Cards */
.t1-address-card,
.t1-rewards-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 24px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.t1-address-card:hover,
.t1-rewards-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  border-color: rgba(183, 155, 108, 0.2);
}

.t1-address-card h3,
.t1-rewards-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  margin-top: 0;
}

/* Edit Profile Form */
.profile-edit-form {
  /* margin-top: 24px;
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);

  @media (max-width: 768px) {
    padding: 20px;
  } */
}

.profile-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.profile-form-group {
  display: flex;
  flex-direction: column;
}

.profile-form-group label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  padding-left: 4px;
}

.profile-form-group input,
.profile-form-group select {
  width: 100%;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1.5px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.profile-form-group input:focus,
.profile-form-group select:focus {
  background: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 10px 20px -10px rgba(239, 68, 68, 0.2);
}

.profile-form-flex {
  display: flex;
  gap: 10px;
  align-items: center;
}

.profile-form-flex input {
  flex: 1;
}

.btn-verify-mini {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-verify-mini:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.hidden {
  display: none !important;
}

.profile-form-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
  justify-content: flex-end;
}

.btn-save-profile {
  background: #ef4444;
  color: #fff;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.3);
}

.btn-save-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(239, 68, 68, 0.4);
}

.btn-cancel-profile {
  background: #f1f5f9;
  color: #64748b;
  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel-profile:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.profile-edit-cancel:hover {
  background: #fff;
  border-color: rgba(100, 116, 139, 0.55);
}

.profile-edit-msg {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.profile-edit-msg.is-success {
  color: #15803d;
}

.profile-edit-msg.is-error {
  color: #b91c1c;
}

.t1-tab-panel.hidden {
  display: none !important;
}

.t1-tab-panel {
  animation: tabFadeIn 0.28s ease both;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dashboard Hero */
.t1-dashboard-hero {
  background: linear-gradient(135deg, #ede3dd 0%, #f9f3f0 50%, #f1f5f9 100%);
  border-radius: 28px;
  padding: 36px 40px;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px -12px rgba(15, 23, 42, 0.1),
    0 4px 6px -2px rgba(15, 23, 42, 0.03);
}

.t1-dashboard-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.t1-dashboard-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.t1-dashboard-hero>div:first-child {
  position: relative;
  z-index: 1;
}

.t1-dashboard-hero h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 6px 0 0;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.t1-dashboard-kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ef4444;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.t1-dashboard-badge {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.t1-dashboard-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
}

.t1-dashboard-sub {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .t1-dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
}

/* Stat Grid */
.t1-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .t1-stat-grid {
    grid-template-columns: 1fr;
  }
}

.t1-stat-card {
  position: relative;
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.t1-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--stat-accent, #ef4444), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.t1-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.08);
}

.t1-stat-card:hover::before {
  opacity: 1;
}

.t1-stat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.t1-stat-icon {
  width: 46px;
  height: 46px;
  background: var(--stat-bg, rgba(239, 68, 68, 0.08));
  color: var(--stat-accent, #ef4444);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.t1-stat-card:hover .t1-stat-icon {
  transform: scale(1.08);
}

.t1-stat-card strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.t1-stat-card span {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.t1-stat-card:nth-child(1) {
  --stat-accent: #ef4444;
  --stat-bg: rgba(239, 68, 68, 0.08);
}

.t1-stat-card:nth-child(2) {
  --stat-accent: #3b82f6;
  --stat-bg: rgba(59, 130, 246, 0.08);
}

.t1-stat-card:nth-child(3) {
  --stat-accent: #10b981;
  --stat-bg: rgba(16, 185, 129, 0.08);
}


/* ── Activity Overview Grid ── */
.t1-activity-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 16px;
}

.t1-activity-head span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}

.t1-activity-head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* Activity Grid — Tinted Mini-Tiles */
.t1-activity-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .t1-activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .t1-activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.t1-activity-card {
  background: var(--act-bg, #f8fafc);
  border: 1px solid var(--act-border, rgba(15, 23, 42, 0.04));
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: all 0.25s ease;
  cursor: default;
}

.t1-activity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px var(--act-shadow, rgba(15, 23, 42, 0.06));
}

.t1-activity-icon {
  width: 36px;
  height: 36px;
  background: var(--act-icon-bg, rgba(255, 255, 255, 0.8));
  color: var(--act-color, #64748b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.t1-activity-card:hover .t1-activity-icon {
  transform: scale(1.1);
}

.t1-activity-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t1-activity-info strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--act-color, #0f172a);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.t1-activity-info span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Contextual Colors */
.t1-act--orders {
  --act-color: #16a34a;
  --act-bg: rgba(22, 163, 74, 0.06);
  --act-border: rgba(22, 163, 74, 0.1);
  --act-icon-bg: rgba(22, 163, 74, 0.12);
  --act-shadow: rgba(22, 163, 74, 0.12);
}

.t1-act--completed {
  --act-color: #3b82f6;
  --act-bg: rgba(59, 130, 246, 0.06);
  --act-border: rgba(59, 130, 246, 0.1);
  --act-icon-bg: rgba(59, 130, 246, 0.12);
  --act-shadow: rgba(59, 130, 246, 0.12);
}

.t1-act--pending {
  --act-color: #d97706;
  --act-bg: rgba(217, 119, 6, 0.06);
  --act-border: rgba(217, 119, 6, 0.1);
  --act-icon-bg: rgba(217, 119, 6, 0.12);
  --act-shadow: rgba(217, 119, 6, 0.12);
}

.t1-act--cancelled {
  --act-color: #ef4444;
  --act-bg: rgba(239, 68, 68, 0.06);
  --act-border: rgba(239, 68, 68, 0.1);
  --act-icon-bg: rgba(239, 68, 68, 0.12);
  --act-shadow: rgba(239, 68, 68, 0.12);
}

.t1-act--wishlist {
  --act-color: #a855f7;
  --act-bg: rgba(168, 85, 247, 0.06);
  --act-border: rgba(168, 85, 247, 0.1);
  --act-icon-bg: rgba(168, 85, 247, 0.12);
  --act-shadow: rgba(168, 85, 247, 0.12);
}

.t1-act--reviews {
  --act-color: #6366f1;
  --act-bg: rgba(99, 102, 241, 0.06);
  --act-border: rgba(99, 102, 241, 0.1);
  --act-icon-bg: rgba(99, 102, 241, 0.12);
  --act-shadow: rgba(99, 102, 241, 0.12);
}

.t1-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.t1-wishlist-empty {
  grid-column: 1 / -1;
  border: 1px solid rgba(251, 191, 36, 0.36);
  border-radius: 18px;
  padding: 30px 24px;
  background: radial-gradient(420px 150px at 4% 0%, rgba(251, 191, 36, 0.2), transparent 60%),
    radial-gradient(340px 140px at 95% 100%, rgba(59, 130, 246, 0.14), transparent 60%),
    linear-gradient(160deg, #ffffff, #f8fafc);
  text-align: center;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.t1-wishlist-empty__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: linear-gradient(145deg, #fff7ed, #fee2e2);
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.16);
}

.t1-wishlist-empty h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.t1-wishlist-empty p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.t1-wishlist-empty__hint {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #6b5a3e;
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
}

.t1-wishlist-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 15px rgba(15, 23, 42, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.t1-wishlist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
}

.t1-wishlist-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.t1-wishlist-remove {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ef4444;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.t1-wishlist-remove:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.15) rotate(8deg);
}

.t1-wishlist-remove svg {
  width: 18px;
  height: 18px;
}

.t1-wishlist-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t1-wishlist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.t1-wishlist-card:hover .t1-wishlist-media img {
  transform: scale(1.1);
}

.t1-wishlist-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.t1-wishlist-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

.t1-wishlist-card span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.t1-wishlist-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 10px;
  font-weight: 800;
  color: #6b5a3e;
  background: rgba(183, 155, 108, 0.12);
  border: 1px solid rgba(183, 155, 108, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.t1-wishlist-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.t1-wishlist-card b {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #ef4444;
  font-size: 20px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.t1-wishlist-card b small {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
  font-size: 14px;
  margin-left: 0;
}

.t1-wishlist-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
  background: rgba(15, 23, 42, 0.02);
  border-radius: 32px;
  border: 2px dashed rgba(15, 23, 42, 0.08);
}

.t1-wishlist-empty__icon {
  display: block;
  margin-bottom: 24px;
  color: #ef4444;
}

.t1-wishlist-empty h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}

.t1-wishlist-empty p {
  font-size: 16px;
  color: #64748b;
  max-width: 400px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.t1-wishlist-empty__hint {
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.t1-wishlist-media-fallback {
  width: 100%;
  height: 100%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
}

/* border: 1px solid rgba(22, 163, 74, 0.2);
border-radius: 999px;
padding: 2px 8px;
} */

/* ─── Review List ─── */
.t1-review-list {
  display: grid;
  gap: 16px;
}

/* Empty state */
.t1-review-empty {
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  background: radial-gradient(400px 160px at 50% -10%, rgba(251, 191, 36, 0.16), transparent 60%),
    linear-gradient(165deg, #fffdf7, #f9fbff);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.t1-review-empty__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  background: linear-gradient(145deg, #fef3c7, #fde68a);
  box-shadow: 0 10px 24px rgba(183, 155, 108, 0.22);
}

.t1-review-empty h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.t1-review-empty p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* Card */
.t1-review-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 18px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.t1-review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 155, 108, 0.25);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Header row */
.t1-review-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t1-review-thumb {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #f1f5f9, #e8eef6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex: 0 0 58px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.t1-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-review-card {
  border-radius: 24px;
  background: #fff;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.t1-review-card:hover {
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  border-color: rgba(239, 68, 68, 0.1);
}

.t1-review-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.t1-review-thumb {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.t1-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-review-meta-wrap {
  flex: 1;
  min-width: 0;
}

.t1-review-meta-wrap strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t1-review-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
}

.t1-review-status {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.t1-review-status--approved {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.t1-review-status--pending {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.t1-review-status--write {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.t1-review-body {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.t1-review-stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.t1-review-stars {
  color: #fbbf24;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}

.t1-review-rating-label {
  font-size: 11px;
  font-weight: 800;
  color: #92400e;
  background: #fef3c7;
  padding: 3px 10px;
  border-radius: 6px;
}

.t1-review-text {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
}

.t1-review-write-prompt {
  margin-top: 20px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(239, 68, 68, 0.03);
  border: 1px dashed rgba(239, 68, 68, 0.2);
}

.t1-review-prompt-text {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.t1-review-form-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 12px;
  align-items: center;
}

.t1-review-form-row select,
.t1-review-form-row input {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  background: #fff;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.t1-review-form-row select:focus,
.t1-review-form-row input:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.theme1-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 640px) {
  .theme1-address-grid {
    grid-template-columns: 1fr;
  }
}

.theme1-address-card {
  position: relative;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.theme1-address-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(15, 23, 42, 0.1);
  border-color: rgba(15, 23, 42, 0.1);
}

.theme1-address-card-inner {
  padding: 20px 22px 16px;
  flex: 1;
}

.theme1-address-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.theme1-address-type {
  padding: 4px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.theme1-address-default {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #0f172a;
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.theme1-address-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.theme1-address-card p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 4px;
}

.theme1-address-actions {
  padding: 12px 22px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  flex-wrap: wrap;
}

.theme1-address-actions button {
  border-radius: 8px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme1-action-btn.is-edit {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
  background: #f8fafc;
}

.theme1-action-btn.is-edit:hover {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.theme1-action-btn.is-default {
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.2);
  background: rgba(22, 163, 74, 0.04);
}

.theme1-action-btn.is-default:hover {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.35);
}

.theme1-action-btn.is-delete {
  color: #dc2626;
  border-color: rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.03);
}

.theme1-action-btn.is-delete:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3);
}

.theme1-address-empty {
  grid-column: 1 / -1;
  border: 2px dashed rgba(148, 163, 184, 0.2);
  border-radius: 20px;
  padding: 48px 28px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 600;
  background: #fafbfc;
}

.theme1-address-empty::before {
  content: "📍";
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.theme1-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 18px;
}

.theme1-modal-card {
  width: min(780px, 100%);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.18);
  padding: 26px;
}

.theme1-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.theme1-modal-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.theme1-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(248, 250, 252, 0.9);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.16s ease;
}

.theme1-modal-close:hover {
  background: #fee2e2;
  border-color: rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.theme1-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.theme1-col-span-2 {
  grid-column: 1 / -1;
}

.theme1-form-field label {
  display: block;
  margin-bottom: 6px;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
}

.theme1-form-field input,
.theme1-form-field select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
}

.theme1-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  cursor: pointer;
}

.theme1-form-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.t1-full {
  grid-column: 1 / -1;
}

.t1-cart-list,
.t1-orders-list {
  display: grid;
  gap: 12px;
}

.t1-cart-item,
.t1-order-card {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.t1-cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
}

.t1-cart-media {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 28px;
}

.t1-cart-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-cart-main h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0f172a;
}

.t1-cart-main p {
  margin: 0;
  color: #475569;
}

.t1-cart-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.t1-cart-actions form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.t1-cart-actions input[type="number"] {
  width: 72px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 8px;
  padding: 7px 8px;
}

.t1-cart-summary {
  margin-top: 12px;
  border-top: 1px dashed rgba(148, 163, 184, 0.42);
  padding-top: 10px;
}

.t1-cart-summary p {
  margin: 4px 0;
  color: #334155;
}

.t1-checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.t1-checkout-addresses {
  display: grid;
  gap: 10px;
}

.t1-checkout-address {
  display: flex;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 12px;
  padding: 10px;
  background: #fff;
}

.t1-checkout-payment {
  margin-top: 12px;
}

.t1-checkout-summary {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.t1-checkout-summary p {
  margin: 8px 0;
  color: #334155;
}

.t1-order-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.t1-order-card h3 {
  margin: 0;
  color: #0f172a;
}

.t1-order-card p {
  margin: 6px 0;
  color: #475569;
}

.t1-order-item {
  padding: 8px 0;
  border-top: 1px dashed rgba(148, 163, 184, 0.3);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.t1-order-card footer {
  margin-top: 8px;
  border-top: 1px solid rgba(148, 163, 184, 0.26);
  padding-top: 8px;
  color: #0f172a;
}

@media (max-width: 1180px) {
  .profile-edit-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    max-height: 300px;
  }

  .t1-stat-grid {
    grid-template-columns: 1fr;
  }

  .t1-dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .t1-wishlist-grid {
    grid-template-columns: 1fr;
  }

  .t1-review-form-row {
    grid-template-columns: 1fr;
  }

  .t1-review-card {
    padding: 16px;
    border-radius: 16px;
  }

  .t1-review-head {
    flex-wrap: wrap;
    gap: 10px;
  }

  .t1-review-thumb {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 10px;
    font-size: 18px;
  }

  .t1-review-meta-wrap strong {
    font-size: 14px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  .t1-review-status {
    margin-left: 0;
    margin-top: 4px;
    align-self: flex-start;
  }

  .t1-review-stars {
    font-size: 16px;
  }

  .t1-review-write-prompt {
    padding: 14px;
  }

  .t1-review-form-row select,
  .t1-review-form-row input {
    padding: 12px;
    font-size: 14px;
  }

  .t1-review-form-row .profile-edit-btn {
    width: 100%;
    text-align: center;
  }

  .theme1-address-grid {
    grid-template-columns: 1fr;
  }

  .theme1-form-grid {
    grid-template-columns: 1fr;
  }

  .t1-checkout-layout {
    grid-template-columns: 1fr;
  }

  .t1-cart-item {
    grid-template-columns: 1fr;
  }

  .hero-banner--cream .hero-banner-inner {
    padding: 36px 28px 56px;
    min-height: 400px;
  }

  .product-grid.five {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .footer-newsletter-wb {
    grid-column: 1 / -1;
    max-width: 420px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-search {
    order: 3;
    flex: 1 1 100%;
    max-width: none;
  }

  .header-hotline {
    order: 4;
    flex: 1 1 auto;
  }

  .header-locale {
    order: 2;
    margin-left: auto;
  }

  .header-brand-cluster {
    order: 1;
  }

  .header-grid-btn,
  .header-brand-divider {
    display: none;
  }

  .header-brand-cluster {
    gap: 0;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 0;
  }

  .header-brand-cluster {
    order: unset;
    margin: 0;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 12px;
  }

  .header-logo .logo-word {
    font-size: 22px;
  }

  .header-logo .logo-mark {
    width: 36px;
    height: 36px;
  }

  /* Hide Desktop Elements */
  .header-search,
  .navbar,
  .subnav-strip {
    display: none !important;
  }

  .header-hotline,
  .header-locale,
  .header-grid-btn,
  .header-brand-divider {
    display: none !important;
  }

  .header-mobile-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .header-mobile-wishlist {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Show Mobile Elements */
  .mobile-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #0f172a;
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
  }

  .header-actions-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .subnav-tools {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .subnav-tools .tool-link {
    margin-left: 0;
  }

  /* Hide the compare tool on small mobile screens to save space */
  .subnav-tools .tool-link[title="Compare"] {
    display: none;
  }

  .hero-banner--cream .hero-banner-inner {
    grid-template-columns: 1fr;
    padding: 28px 18px 52px;
    min-height: 0;
    gap: 20px;
  }

  .hero-banner--cream .hero-banner-shape {
    left: -35%;
    top: 22%;
    transform: translateY(0);
    width: min(95%, 420px);
    opacity: 0.95;
  }

  .hero-banner--cream .hero-banner-visual {
    order: -1;
    min-height: 200px;
  }

  .hero-banner--cream .hero-model-photo,
  .hero-banner--cream .hero-model-photo--dynamic {
    height: min(280px, 62vw);
    border-radius: 12px;
  }

  .hero-display-title {
    font-size: clamp(1.65rem, 7.5vw, 2.35rem);
  }

  .deal-week__timer-cell {
    min-width: 64px;
    padding: 12px 10px;
  }

  .deal-week__timer-val {
    font-size: 1.32rem;
  }

  .feature-pills,
  .product-grid.five,
  .product-grid.four,
  .split-block.split-block--listed {
    grid-template-columns: 1fr;
  }

  .split-block-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .split-block-promo,
  .split-block-promo-inner {
    min-height: 360px;
  }

  /* ── Orders Page Redesign ── */
  .t1-orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .t1-order-card {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      0 4px 20px rgba(15, 23, 42, 0.05),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
    overflow: hidden;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .t1-order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  }

  .t1-order-card-header {
    padding: 16px 20px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .t1-order-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .t1-order-id-badge {
    background: #0f172a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.02em;
  }

  .t1-order-date {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
  }

  .t1-order-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 999px;
  }

  .t1-order-status--bg-gray {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid rgba(148, 163, 184, 0.3);
  }

  .t1-order-status--bg-green {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.25);
  }

  .t1-order-status--bg-amber {
    background: rgba(183, 155, 108, 0.12);
    color: #6b5a3e;
    border: 1px solid rgba(183, 155, 108, 0.25);
  }

  .t1-order-status--bg-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.25);
  }

  .t1-order-status--bg-red {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.25);
  }

  .t1-order-items-grid {
    padding: 8px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .t1-order-item-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
  }

  .t1-order-item-row:last-child {
    border-bottom: none;
  }

  .t1-order-item-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }

  .t1-order-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .t1-order-item-fallback {
    font-size: 24px;
  }

  .t1-order-item-details {
    flex: 1;
  }

  .t1-order-item-details strong {
    display: block;
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
    font-weight: 700;
  }

  .t1-order-item-details span {
    font-size: 13px;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 600;
  }

  .t1-order-item-price {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
  }

  .t1-order-card-footer {
    padding: 16px 20px;
    background: rgba(248, 250, 252, 0.6);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .t1-order-payment-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
  }

  .t1-order-pay-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .t1-order-payment-info strong {
    color: #0f172a;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .t1-order-total-col {
    text-align: right;
  }

  .t1-order-total-col span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .t1-order-total-col strong {
    font-size: 20px;
    color: #0f172a;
    font-weight: 800;
  }

  .icon-row__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-row__stat {
    align-self: flex-start;
  }

  .icon-row__scroller {
    mask-image: none;
    overflow-x: visible;
  }

  .icon-row__list {
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    width: 100%;
    padding: 14px 12px 16px;
    gap: 12px;
    border-radius: 18px;
  }

  .icon-row__list::after {
    left: 14px;
    right: 14px;
  }

  .icon-row__card {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
    max-width: none;
    justify-content: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 34px 0 26px;
  }

  .footer-app-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-shell {
    grid-template-columns: 1fr;
    margin-top: 16px;
    gap: 16px;
  }

  .profile-side {
    position: relative;
    top: 0;
  }

  .profile-menu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    margin-bottom: 12px;
  }

  .profile-menu-toggle .toggle-icon {
    transition: transform 0.3s;
  }

  .profile-menu-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
  }

  .profile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    margin-top: 8px;
  }

  .profile-menu.active {
    display: flex;
  }

  .profile-menu li {
    margin-bottom: 4px;
    margin-right: 0;
  }

  .profile-menu a {
    padding: 12px 16px;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pcard:hover,
  .split-product-link:hover,
  .pcard__btn:hover,
  .btn:hover,
  .btn-hero:hover,
  .search-submit:hover,
  .footer-social-btn:hover {
    transform: none;
  }

  .pcard:hover .pcard__media .thumb {
    transform: none;
  }

  .pcard:hover .pcard__btn--buy {
    transform: none;
  }

  /* Dashboard Mobile Fixes */
  .t1-stat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .t1-activity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .t1-dashboard-hero {
    padding: 24px;
    margin-bottom: 24px;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
  }

  .t1-dashboard-hero h3 {
    font-size: 20px;
  }

  .t1-dashboard-badge {
    padding: 6px 14px;
    font-size: 10px;
  }

  .t1-activity-card {
    padding: 16px 12px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .t1-activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .t1-activity-info strong {
    font-size: 18px;
  }

  .profile-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .profile-detail-item {
    padding: 16px;
  }
}

/* —— Orders Page Redesign —— */
.t1-orders-top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.t1-orders-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);

  @media (max-width: 768px) {
    border-radius: 10px;
  }
}

.t1-orders-filter {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.t1-orders-filter:hover {
  background: #f8fafc;
  color: #334155;
}

.t1-orders-filter.active {
  background: linear-gradient(135deg, #d4bc94, #b79b6c);
  color: #fff;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.25);
}

.t1-orders-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  width: 260px;
  box-shadow: var(--shadow-sm);
  gap: 8px;
}

.t1-orders-search svg {
  color: #94a3b8;
}

.t1-orders-search input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 13px;
  padding: 4px;
}

.t1-orders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.t2-orders-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 20px;
  border: 1px solid rgba(231, 235, 241, 0.8);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 20px;
}

.t2-orders-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;

  @media (max-width: 768px) {
    flex-wrap: wrap;
  }
}

.t2-orders-filters::-webkit-scrollbar {
  height: 4px;
}

.t2-orders-filter {
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.t2-orders-filter:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.t2-orders-filter.active {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.t2-orders-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0 16px;
  width: 100%;
  max-width: 320px;
  height: 44px;
  transition: all 0.2s ease;
}

.t2-orders-search:focus-within {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.t2-orders-search input {
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 14px;
  width: 100%;
  color: #1e293b;
  outline: none;
}

.t2-orders-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.t2-order-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.t2-order-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--theme-color);
}

.t2-order-card-header {
  padding: 24px 32px;
  background: linear-gradient(to right, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.4));
  border-bottom: 1px dashed rgba(226, 232, 240, 1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.t2-order-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t2-order-id-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.t2-order-id-val {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
}

.t2-order-date {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.t2-order-status {
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.t2-order-status.delivered {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.1);
}

.t2-order-status.processing {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.1);
}

.t2-order-status.shipped {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.t2-order-status.cancelled {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.t2-order-card-body {
  padding: 32px;

  @media (max-width: 768px) {
    padding: 20px;
  }
}

.t2-order-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.t2-order-item-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.t2-order-item-row__inner {
  display: flex;
  gap: 20px;
  align-items: center;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.t2-order-item-thumb {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: #f1f5f9;
  padding: 4px;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.t2-order-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.t2-order-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t2-order-item-details strong {
  font-size: 16px;
  color: #1e293b;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.t2-order-item-details span {
  font-size: 14px;
  color: #64748b;
}

.t2-order-item-progress {
  background: #f8fafc;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.t2-order-item-progress-title {
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.t2-order-item-progress-title span {
  color: var(--theme-red);
  font-size: 14px;
}

.t2-progress-bar-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 0 10px;
}

.t2-progress-bar-line {
  position: absolute;
  top: 14px;
  left: 20px;
  right: 20px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  z-index: 0;
}

.t2-progress-bar-fill {
  position: absolute;
  top: 14px;
  left: 20px;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #ce0202);
  border-radius: 2px;
  z-index: 1;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.t2-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.t2-progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.t2-progress-step.completed .t2-progress-dot {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.t2-progress-step.current .t2-progress-dot {
  background: #ffffff;
  border-color: var(--theme-color);
  color: var(--theme-color);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
  transform: scale(1.1);
}

.t2-progress-label {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
}

.t2-progress-step.completed .t2-progress-label,
.t2-progress-step.current .t2-progress-label {
  color: #1e293b;
}

@media (max-width: 640px) {
  .t2-progress-bar-container {
    padding: 0;
  }

  .t2-progress-bar-line {
    top: 10px;
    left: 12px;
    right: 12px;
    height: 3px;
  }

  .t2-progress-bar-fill {
    top: 10px;
    left: 12px;
    height: 3px;
  }

  .t2-progress-dot {
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-width: 1.5px;
  }

  .t2-progress-label {
    font-size: 9px;
    white-space: normal;
    text-align: center;
    max-width: 50px;
    line-height: 1.2;
  }

  .t2-progress-step {
    gap: 6px;
  }
}

.t2-order-card-footer {
  padding: 24px 32px;
  background: #f8fafc;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.t2-order-footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t2-order-footer-left span {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.t2-order-footer-left strong {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
}

.t2-order-actions {
  display: flex;
  gap: 12px;

  @media (max-width: 768px) {
    flex-wrap: wrap;
  }
}

.t2-order-btn {
  padding: 12px 24px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.t2-order-btn-outline {
  background: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.t2-order-btn-outline:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
  transform: translateY(-2px);
}

.t2-order-btn-primary {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.t2-order-btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #ef4444);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
  transform: translateY(-2px);
}

.t2-cancel-btn {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: #ef4444;
  border: 1px solid #fecaca;
  cursor: pointer;
  transition: all 0.2s;
}

.t2-cancel-btn:hover {
  background: #fef2f2;
  border-color: #fca5a5;
}

.t2-cancel-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Pagination */
.t2-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);

  @media (max-width: 768px) {
    flex-wrap: wrap;
  }
}

.t2-page-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.t2-page-btn:hover:not(.disabled) {
  border-color: var(--theme-color);
  color: var(--theme-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.1);
}

.t2-page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f8fafc;
}

.t2-page-numbers {
  display: flex;
  gap: 8px;
}

.t2-page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.t2-page-num:hover:not(.active) {
  border-color: #cbd5e1;
  color: #1e293b;
  background: #f8fafc;
  transform: translateY(-2px);
}

.t2-page-num.active {
  background: var(--theme-color);
  color: #ffffff;
  border-color: var(--theme-color);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
  transform: scale(1.05);
}

/* Modals */
.theme2-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.3s;
}

.theme2-modal-overlay.hidden {
  display: none;
}

.theme2-modal-card {
  background: #ffffff;
  border-radius: 28px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.theme2-modal-header {
  padding: 24px 32px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.theme2-modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.theme2-modal-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.theme2-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.theme2-modal-body {
  padding: 32px;
  overflow-y: auto;
}


/* =========================================
   Product Details Page (Theme 1)
   ========================================= */

.t1-breadcrumb {
  margin: 32px auto 16px;
  font-size: 13px;
  color: #64748b;
}

.t1-breadcrumb a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.t1-breadcrumb a:hover {
  color: var(--theme-red);
}

.t1-breadcrumb span.current {
  color: var(--theme-red);
  font-weight: 600;
}

.t1-product-container {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 45px;
  margin-bottom: 45px;
  align-items: start;
}

@media (max-width: 992px) {
  .t1-product-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .t1-product-gallery {
    position: static;
  }
}

.t1-product-gallery {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 20px;
}

.t1-gallery-main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 4/5;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.t1-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.t1-gallery-main:hover img {
  transform: scale(1.08);
}

.t1-gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--theme-red);
  color: white;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  z-index: 2;
}

.t1-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 600px;
  padding-right: 4px;
}

.t1-thumb-btn {
  width: 80px;
  height: 100px;
  border-radius: 16px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.t1-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-thumb-btn.active {
  border-color: var(--theme-red);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
  transform: scale(0.95);
}

.t1-thumb-btn:hover:not(.active) {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

.t1-product-info {
  display: flex;
  flex-direction: column;
}

.t1-product-glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  padding: 48px;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.t1-product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.t1-brand {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--theme-red);
  opacity: 0.8;
}

.t1-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.t1-rating .stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 18px;
}

.t1-rating .count {
  color: #64748b;
}

.t1-sold-badge {
  background: #fef3c7;
  color: #d97706;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.t1-product-title {
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.t1-product-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}

.t1-product-price .current {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
}

.t1-product-price .old {
  font-size: 20px;
  color: #94a3b8;
  font-weight: 600;
  text-decoration: line-through;
}

.t1-product-price .discount-pill {
  background: var(--theme-red);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.t1-swatch-group {
  margin-bottom: 24px;
}

.t1-swatch-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  margin-bottom: 12px;
}

.t1-swatch-group label strong {
  color: #0f172a;
  font-weight: 700;
}

.t1-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.t1-swatch-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
  padding: 0;
}

.t1-swatch-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 1px var(--theme-red);
}

.t1-swatch-btn.active {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--theme-red);
}

.t1-swatches.size .t1-swatch-btn {
  width: auto;
  height: auto;
  min-width: 54px;
  padding: 12px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: #1e293b;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
}

.t1-swatches.size .t1-swatch-btn:hover {
  border-color: var(--theme-red);
  color: var(--theme-red);
}

.t1-swatches.size .t1-swatch-btn.active {
  background: var(--theme-red);
  color: #ffffff;
  border-color: var(--theme-red);
  box-shadow: 0 8px 16px rgba(239, 68, 68, 0.2);
}

.t1-product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.t1-qty-selector {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  height: 45px;
  padding: 0 0px;
}

.t1-qty-selector button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 18px;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t1-qty-selector button:hover {
  background: var(--theme-red);
  color: #fff;
  border-color: var(--theme-red);
}

.t1-qty-selector input {
  width: 50px;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
}

.t1-add-to-cart-btn {
  flex: 1;
  height: 45px;
  border-radius: 10px;
  background: var(--theme-red);
  color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.t1-add-to-cart-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.35);
  background: #dc2626;
}

.t1-flash-deal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.t1-flash-deal-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--theme-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.t1-flash-deal-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #0f172a;
}

.t1-flash-deal-timer .timer-unit {
  background: #0f172a;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
  min-width: 32px;
  text-align: center;
  font-size: 14px;
}

/* Theme-2 — flash deal strip (product page) */
.t1-flash-deal.t2-flash-deal {
  position: relative;
  flex-wrap: wrap;
  gap: 14px 20px;
  padding: 16px 18px 16px 20px;
  margin-bottom: 28px;
  background: linear-gradient(120deg, #ffffff 0%, #fff8f8 42%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.t1-flash-deal.t2-flash-deal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.t1-flash-deal.t2-flash-deal .t1-flash-deal-label {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--text);
}

.t1-flash-deal.t2-flash-deal .t1-flash-deal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  font-size: 1.25rem;
  line-height: 1;
  background: linear-gradient(145deg, rgba(238, 64, 61, 0.14) 0%, rgba(238, 64, 61, 0.06) 100%);
  border: 1px solid rgba(238, 64, 61, 0.22);
  box-shadow: 0 4px 14px rgba(238, 64, 61, 0.12);
}

.t2-flash-deal-label-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.t2-flash-deal-kicker {
  font-family: Jost, Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-red);
}

.t2-flash-deal-line {
  font-family: Jost, Inter, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.t1-flash-deal.t2-flash-deal .t1-flash-deal-timer {
  position: relative;
  z-index: 1;
  gap: 4px;
  font-family: Jost, Outfit, ui-monospace, monospace;
  font-weight: 700;
  color: var(--text);
  padding: 6px 8px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.t1-flash-deal.t2-flash-deal .t1-flash-deal-timer .timer-unit {
  min-width: 36px;
  padding: 8px 6px;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(160deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(238, 64, 61, 0.25);
}

.t1-flash-deal.t2-flash-deal .t1-flash-deal-timer .timer-sep {
  font-size: 1rem;
  font-weight: 800;
  color: var(--muted);
  padding: 0 1px;
  user-select: none;
}

@media (max-width: 520px) {
  .t1-flash-deal.t2-flash-deal {
    flex-direction: column;
    align-items: stretch;
  }

  .t1-flash-deal.t2-flash-deal .t1-flash-deal-timer {
    justify-content: center;
  }
}

.t1-action-icon-btn {
  width: 45px !important;
  height: 45px !important;
  flex-shrink: 0 !important;
  border-radius: 10px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  margin: 0 !important;
}

.t1-action-icon-btn:hover {
  background: #fff;
  border-color: var(--theme-red);
  color: var(--theme-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.1);
}

.t1-action-icon-btn.active,
.t1-action-icon-btn[data-is-active="true"] {
  background: var(--theme-red);
  color: #fff;
  border-color: var(--theme-red);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.t1-action-icon-btn.pcard__wish-toggle .heart-icon {
  transition: transform 0.3s ease;
}

.t1-action-icon-btn.pcard__wish-toggle:hover .heart-icon {
  transform: scale(1.2);
}

.t1-seller-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.t1-offer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.t1-offer-card:hover {
  border-color: var(--theme-red);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.t1-offer-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t1-offer-details {
  display: flex;
  flex-direction: column;
}

.t1-offer-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.t1-offer-subtitle {
  font-size: 12px;
  color: #64748b;
}

/* Theme-2 — product page shell (breadcrumb, glass card, bank offer, seller) */
body.t2-product-page .t1-breadcrumb {
  margin: 24px auto 12px;
  font-family: Jost, Inter, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

body.t2-product-page .t1-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

body.t2-product-page .t1-breadcrumb a:hover {
  color: var(--theme-red);
}

body.t2-product-page .t1-breadcrumb>span:not(.current) {
  margin: 0 6px;
  color: var(--line);
  font-weight: 400;
}

body.t2-product-page .t1-breadcrumb span.current {
  color: var(--text);
  font-weight: 700;
}

body.t2-product-page .t1-product-glass-card.t2-product-glass-card {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  body.t2-product-page .t1-product-glass-card.t2-product-glass-card {
    padding: 22px 18px;
    border-radius: var(--radius-lg);
  }
}

body.t2-product-page .t1-product-title {
  font-family: Jost, "Plus Jakarta Sans", Inter, sans-serif;
  color: var(--text);
}

body.t2-product-page .t1-product-price .current {
  color: var(--text);
  font-family: Jost, Outfit, sans-serif;
}

body.t2-product-page .t1-rating .count {
  color: var(--muted);
}

.t2-product-seller-line {
  margin-top: -4px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
  font-family: Jost, Inter, sans-serif;
  color: var(--muted);
}

.t2-product-seller-link {
  color: var(--theme-red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.t2-product-seller-link:hover {
  color: var(--theme-red-dark);
  text-decoration: underline;
}

.t2-product-stock-line {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: Jost, Inter, sans-serif;
  color: var(--muted);
}

body.t2-product-page .t1-seller-offers.t2-seller-offers {
  position: relative;
  margin-bottom: 28px;
  padding: 14px;
  background: linear-gradient(125deg, #ffffff 0%, #fff8f8 50%, #fafafa 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

body.t2-product-page .t1-seller-offers.t2-seller-offers::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

body.t2-product-page .t1-seller-offers.t2-seller-offers .t1-offer-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: none;
  padding: 16px 18px;
  background: #fff;
}

body.t2-product-page .t1-seller-offers.t2-seller-offers .t1-offer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 64, 61, 0.25);
  box-shadow: 0 8px 22px rgba(238, 64, 61, 0.1);
}

body.t2-product-page .t1-seller-offers.t2-seller-offers .t1-offer-icon {
  background: linear-gradient(145deg, rgba(238, 64, 61, 0.14) 0%, rgba(238, 64, 61, 0.05) 100%);
  border: 1px solid rgba(238, 64, 61, 0.2);
  box-shadow: 0 2px 10px rgba(238, 64, 61, 0.08);
}

body.t2-product-page .t1-seller-offers.t2-seller-offers .t1-offer-title {
  font-family: Jost, Inter, sans-serif;
  color: var(--text);
}

body.t2-product-page .t1-seller-offers.t2-seller-offers .t1-offer-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  body.t2-product-page .t1-seller-offers.t2-seller-offers .t1-offer-card:hover {
    transform: none;
  }
}

.t1-product-perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  padding: 28px;
  background: #f8fafc;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  margin-top: 36px;
}

.t1-perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.t1-perk-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  color: var(--theme-red);
}

.t1-perk-text {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Theme-2 — product perks strip (product page) */
.t1-product-perks.t2-product-perks {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  margin-top: 28px;
  background: linear-gradient(125deg, #ffffff 0%, #fff8f8 45%, #fafafa 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.t1-product-perks.t2-product-perks::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.t1-product-perks.t2-product-perks .t1-perk-item {
  position: relative;
  z-index: 1;
  flex: 1 1 min(160px, 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 14px;
  padding: 14px 16px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.t1-product-perks.t2-product-perks .t1-perk-item:hover {
  border-color: rgba(238, 64, 61, 0.22);
  box-shadow: 0 6px 18px rgba(238, 64, 61, 0.08);
  transform: translateY(-1px);
}

.t1-product-perks.t2-product-perks .t1-perk-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(238, 64, 61, 0.12) 0%, rgba(238, 64, 61, 0.05) 100%);
  border: 1px solid rgba(238, 64, 61, 0.18);
  box-shadow: 0 2px 10px rgba(238, 64, 61, 0.1);
  color: var(--theme-red);
}

.t1-product-perks.t2-product-perks .t1-perk-text {
  font-family: Jost, Inter, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

@media (max-width: 520px) {
  .t1-product-perks.t2-product-perks .t1-perk-item {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .t1-product-perks.t2-product-perks .t1-perk-item:hover {
    transform: none;
  }
}

/* Tabs Section — theme-2 product (matches header red + neutral UI) */
.t1-product-tabs-section.container {
  margin-bottom: 72px;
  padding-top: 8px;
}

.t1-tabs-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.t1-tab-btn {
  background: #fff;
  border: 1px solid #ede3dd;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: Jost, "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

.t1-tab-btn:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #ede3dd;
}

.t1-tab-btn.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
  box-shadow: none;
}

.t1-tabs-content-wrapper {
  margin-top: 16px;
  padding: 28px 24px 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 640px) {
  .t1-tabs-content-wrapper {
    padding: 20px 16px 24px;
    border-radius: 12px;
  }

  .t1-tab-btn {
    min-width: auto;
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* Layout for Tab Desc */
.t1-desc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .t1-desc-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
  }
}

.t1-desc-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.t1-desc-body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Tab Highlights Grid */
.t1-desc-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.t1-desc-highlight-card {
  background: #fafafa;
  border: 1px solid var(--line);
  padding: 18px 14px;
  border-radius: 10px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.t1-desc-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(238, 64, 61, 0.28);
}

.t1-desc-highlight-card strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--theme-red);
  margin-bottom: 6px;
  line-height: 1.1;
}

.t1-desc-highlight-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Theme-2 — description tab highlight stats */
.t1-desc-highlights.t2-desc-highlights {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
  padding: 16px;
  background: linear-gradient(125deg, #ffffff 0%, #fff8f8 48%, #fafafa 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

/* .t1-desc-highlights.t2-desc-highlights::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
} */

.t1-desc-highlights.t2-desc-highlights .t1-desc-highlight-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.t1-desc-highlights.t2-desc-highlights .t1-desc-highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-red) 0%, rgba(238, 64, 61, 0.25) 72%, transparent 100%);
  opacity: 0.95;
}

.t1-desc-highlights.t2-desc-highlights .t1-desc-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(238, 64, 61, 0.1);
  border-color: rgba(238, 64, 61, 0.22);
}

.t1-desc-highlights.t2-desc-highlights .t1-desc-highlight-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: Jost, Inter, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.15;
}

.t1-desc-highlights.t2-desc-highlights .t1-desc-highlight-card span {
  position: relative;
  z-index: 1;
  font-family: Jost, Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--theme-red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 480px) {
  .t1-desc-highlights.t2-desc-highlights {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .t1-desc-highlights.t2-desc-highlights .t1-desc-highlight-card:hover {
    transform: none;
  }
}

.t1-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
  color: var(--muted);
  line-height: 1.7;
}

.t1-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.t1-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: none;
}

.t1-spec-table th,
.t1-spec-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.t1-spec-table tr:last-child th,
.t1-spec-table tr:last-child td {
  border-bottom: none;
}

.t1-spec-table th {
  background: rgba(238, 64, 61, 0.06);
  color: var(--text);
  font-weight: 600;
  width: 35%;
  border-right: 1px solid var(--line);
  font-size: 13px;
}

.t1-spec-table td {
  background: #fff;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
}

.t1-product-tabs-section .t1-spec-table a {
  color: var(--theme-red);
  font-weight: 600;
  text-decoration: none;
}

.t1-product-tabs-section .t1-spec-table a:hover {
  color: var(--theme-red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Manufacturer tab */
.t1-mfg-panel {
  padding: 22px 20px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.t1-mfg-title {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.t1-mfg-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 20px;
  margin-bottom: 4px;
}

@media (max-width: 560px) {
  .t1-mfg-grid {
    grid-template-columns: 1fr;
  }
}

.t1-mfg-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.t1-mfg-value {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.t1-mfg-value--multiline {
  line-height: 1.55;
}

.t1-mfg-footnote {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Layout for Tab Reviews */
.t1-rev-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .t1-rev-layout {
    grid-template-columns: 300px 1fr;
  }
}

.t1-rev-summary-col {
  text-align: center;
}

.t1-rev-big-score {
  font-size: 64px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.t1-rev-big-stars {
  color: #FFC107;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.t1-rev-based-on {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.t1-rev-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t1-rev-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #475569;
}

.t1-rev-bar-lbl {
  width: 24px;
  text-align: left;
}

.t1-rev-bar-track {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
}

.t1-rev-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--theme-red-dark), var(--theme-red));
  border-radius: 99px;
}

.t1-rev-bar-pct {
  width: 32px;
  text-align: right;
}

.t1-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.t1-review-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.t1-review-item:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: var(--theme-red);
}

.t1-review-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--theme-red);
  opacity: 0.8;
}

.t1-review-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.t1-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4bc94, #b79b6c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.t1-review-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t1-review-author-info strong {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
}

.t1-review-verified {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.t1-review-badge-wrap {
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.t1-review-badge-wrap .stars {
  color: #FFC107;
  font-size: 18px;
  letter-spacing: 2px;
}

.t1-review-top-badge {
  background: #fef3c7;
  color: #d97706;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.t1-review-body {
  margin: 0 0 24px 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
  padding-left: 16px;
  border-left: 2px solid #e2e8f0;
}

.t1-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.t1-review-footer .date {
  font-size: 13px;
  color: #94a3b8;
}

.t1-helpful-btn {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.t1-helpful-btn:hover {
  color: #0f172a;
}

/* Theme-2 — product tab review cards (.t1-review-item on PDP only) */
.t1-review-item.t2-review-item {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 20px 22px 18px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.t1-review-item.t2-review-item:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(238, 64, 61, 0.22);
  box-shadow: 0 12px 32px rgba(238, 64, 61, 0.1);
}

.t1-review-item.t2-review-item::before {
  width: 4px;
  background: linear-gradient(180deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  opacity: 1;
}

.t1-review-item.t2-review-item .t1-review-head {
  margin-bottom: 16px;
  gap: 14px;
  align-items: center;
}

.t1-review-item.t2-review-item .t1-review-avatar {
  width: 44px;
  height: 44px;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(145deg, var(--theme-red) 0%, var(--theme-red-dark) 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(238, 64, 61, 0.28);
}

.t1-review-item.t2-review-item .t1-review-author-info strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.t1-review-item.t2-review-item .t1-review-verified {
  display: inline-block;
  margin-top: 4px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--theme-red-dark);
  background: rgba(238, 64, 61, 0.1);
  border: 1px solid rgba(238, 64, 61, 0.22);
}

.t1-review-item.t2-review-item .t1-review-badge-wrap .stars {
  color: #fbbf24;
  font-size: 17px;
}

.t1-review-item.t2-review-item .t1-review-top-badge {
  background: rgba(238, 64, 61, 0.1);
  color: var(--theme-red-dark);
  border: 1px solid rgba(238, 64, 61, 0.22);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.t1-review-item.t2-review-item .t1-review-body {
  margin: 0 0 16px 0;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(238, 64, 61, 0.35);
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.t1-review-item.t2-review-item .t1-review-body p {
  margin: 0;
  color: var(--text);
}

.t1-review-item.t2-review-item .t1-review-footer {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.t1-review-item.t2-review-item .t1-review-footer .date {
  font-family: Jost, Inter, sans-serif;
  font-size: 12px;
  color: var(--muted);
}

.t1-review-item.t2-review-item .t1-helpful-btn {
  font-family: Jost, Inter, sans-serif;
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.t1-review-item.t2-review-item .t1-helpful-btn:hover {
  color: var(--theme-red);
  background: rgba(238, 64, 61, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .t1-review-item.t2-review-item:hover {
    transform: none;
  }
}

.t1-share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s;
}

.t1-share-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.t1-share-modal-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 32px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.3s;
}

.t1-share-modal-overlay.hidden .t1-share-modal-content {
  transform: translateY(20px);
}

.t1-share-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
}

.t1-share-modal-content h3 {
  margin: 0 0 24px;
  font-size: 20px;
  color: #0f172a;
  text-align: center;
}

.t1-share-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #475569;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: transform 0.2s;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: 50%;
  background: #f1f5f9;
}

.share-btn.whatsapp svg {
  color: #25d366;
  background: #dcf8c6;
}

.share-btn.facebook svg {
  color: #1877f2;
  background: #e7f0fd;
}

.share-btn.twitter svg {
  color: #000000;
  background: #e2e8f0;
}

.share-btn.email svg {
  color: #ea4335;
  background: #fce8e6;
}

.t1-share-copy {
  display: flex;
  gap: 8px;
}

.t1-share-copy input {
  flex: 1;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #475569;
  font-size: 14px;
  outline: none;
}

.t1-share-copy button {
  padding: 0 20px;
  border-radius: 12px;
  background: #0f172a;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.t1-share-copy button:hover {
  background: #1e293b;
}

/* =========================================================
   SELLER STORE (Theme-1)
========================================================= */

.t1-seller-page {
  background: #f8fafc;
}

.t1-seller-hero {
  position: relative;
  min-height: 380px;
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.t1-seller-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 100%);
  backdrop-filter: blur(4px);
}

.t1-seller-hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.t1-seller-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 800px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
  transform: translateY(40px);
}

@media (max-width: 768px) {
  .t1-seller-info-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
}

.t1-seller-logo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.t1-seller-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-seller-meta {
  flex: 1;
}

.t1-seller-verified {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.t1-seller-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.02em;
}

.t1-seller-subtitle {
  font-size: 15px;
  color: #cbd5e1;
  margin: 0 0 20px;
  font-weight: 500;
}

.t1-seller-stats {
  display: flex;
  gap: 32px;
}

@media (max-width: 768px) {
  .t1-seller-stats {
    justify-content: center;
  }
}

.t1-seller-stats .stat {
  display: flex;
  flex-direction: column;
}

.t1-seller-stats .stat strong {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.t1-seller-stats .stat span {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 2px;
}

.t1-seller-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  margin-top: 20px;
}

.t1-seller-detail-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.t1-seller-detail-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.t1-seller-detail-box p {
  font-size: 14px;
  color: #475569;
  margin: 0 0 12px;
  line-height: 1.6;
}

.t1-seller-detail-box p:last-child {
  margin-bottom: 0;
}

.t1-seller-detail-box a {
  color: #3b82f6;
  text-decoration: none;
}

.t1-seller-detail-box a:hover {
  text-decoration: underline;
}

.t1-seller-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t1-seller-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.t1-empty-msg {
  background: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 16px;
  color: #64748b;
  font-weight: 500;
  border: 1px dashed #cbd5e1;
}

/* =========================================================
   REWARDS TAB (Theme-1 Profile)
========================================================= */

.t1-rewards-hero {
  background: linear-gradient(135deg, #ede3dd 0%, #f9f3f0 50%, #f1f5f9 100%);
  padding: 36px 40px;
  border-radius: 28px;
  color: #0f172a;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px -12px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

.t1-rewards-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .t1-rewards-hero {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    text-align: center;
  }
}

.t1-rewards-circle-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 3px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.t1-rewards-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.t1-rewards-pts-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
}

.t1-rewards-pts-lbl {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.t1-rewards-hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.t1-rewards-tier-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.t1-rewards-lead-line {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.t1-rewards-progress-wrap {
  position: relative;
  width: 100%;
}

.t1-rewards-progress-track {
  height: 8px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.t1-rewards-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0f172a, #475569);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.t1-rewards-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.t1-rewards-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .t1-rewards-grid {
    grid-template-columns: 1fr;
  }
}

.t1-rewards-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.t1-rewards-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  font-family: 'Outfit', sans-serif;
}

.t1-rewards-history-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
}

.t1-rewards-history-list::-webkit-scrollbar {
  width: 3px;
}

.t1-rewards-history-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}

.t1-rewards-history-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.t1-rewards-history-row:hover {
  background: #f8fafc;
}

.t1-rewards-history-desc {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.t1-rewards-history-date {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 2px;
}

.t1-rewards-history-pts {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #16a34a;
}

.t1-rewards-history-pts.is-negative {
  color: #ef4444;
}

.t1-rewards-empty {
  color: #94a3b8;
  font-size: 13px;
  font-style: italic;
  padding: 20px 0;
}

.t1-rewards-redeem-text {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.t1-rewards-redeem-wrap {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .t1-rewards-redeem-wrap {
    flex-direction: column;
  }
}

.t1-rewards-redeem-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #f8fafc;
  transition: border-color 0.2s;
}

.t1-rewards-redeem-input:focus {
  border-color: #0f172a;
  background: #fff;
}

.t1-rewards-redeem-btn {
  padding: 0 20px;
}

/* === CHECKOUT PAGE === */

/* Global Wrappers */
.t1-co-page {
  /* background: #f8fafc; */
  min-height: 100vh;
}

.cart-main-wrap {
  padding: 40px 0;
}

.t1-co-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.t1-co-header h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0;
}

.t1-co-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.t1-saved-section {
  border-top: 2px solid #f1f5f9;
  padding-top: 60px;
}

.t1-saved-title {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.t1-saved-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #f1f5f9;
}

@media (max-width: 900px) {
  .t1-co-layout {
    grid-template-columns: 1fr;
  }
}

/* Order Summary Enhanced */
.t1-co-sum-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 22px;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.05),
    0 1px 3px rgba(15, 23, 42, 0.03);

  @media (max-width: 768px) {
    border-radius: 14px;
    padding: 18px;
    top: 80px;
  }
}

.t1-co-sum-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.t1-co-sum-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, #f05552, #c93532);
  border-radius: 99px;
}

/* ── Coupon Box ─────────────────────────────────────── */
.t1-co-coupon-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.t1-co-coupon-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 10px;
}

.t1-co-coupon-row {
  display: flex;
  gap: 8px;
}

.t1-co-coupon-input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.t1-co-coupon-input:focus {
  border-color: rgba(238, 64, 61, 0.5);
  box-shadow: 0 0 0 3px rgba(238, 64, 61, 0.1);
}

.t1-co-coupon-input::placeholder {
  text-transform: none;
  letter-spacing: 0;
  color: #94a3b8;
}

.t1-co-coupon-btn {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.t1-co-coupon-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.t1-cart-coupon-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.t1-cart-coupon-tag {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.t1-cart-coupon-tag:hover {
  border-color: #ee403d;
  color: #ee403d;
  background: #fff7ed;
}

.t1-cart-coupon-tag-ok {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  margin-top: 8px;
}

.t1-cart-coupon-tag-ok:empty {
  display: none;
}

.t1-cart-coupon-tag-error {
  font-size: 12px;
  font-weight: 600;
  color: #ef4444;
  margin-top: 8px;
}

.t1-cart-coupon-tag-error:empty {
  display: none;
}

.t1-co-coupon-remove-icon {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 14px;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.2s;
}

.t1-co-coupon-remove-icon:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* ── Delivery Speed ─────────────────────────────────── */
.t1-co-speed-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.t1-co-speed-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 12px;
}

.ti-co-speed-free {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid rgba(22, 163, 74, 0.15);
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.t1-co-speed-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t1-co-speed-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 13px;
  color: #475569;
  background: #fff;
}

.t1-co-speed-opt:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.t1-co-speed-opt.active {
  border-color: #ee403d;
  background: #fff7ed;
  color: #0f172a;
  box-shadow: 0 0 0 3px rgba(238, 64, 61, 0.08);
}

.t1-co-speed-opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
}

.t1-co-speed-opt.active input[type="radio"] {
  border-color: #ee403d;
  background: #ee403d;
  box-shadow: inset 0 0 0 3px #fff;
}

/* ── Fee Rows ───────────────────────────────────────── */
.t1-co-fee-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t1-co-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.t1-co-fee-row .green {
  color: #16a34a;
  font-weight: 600;
}

.t1-co-fee-row.total {
  border-top: 2px solid #0f172a;
  padding-top: 14px;
  margin-top: 6px;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

/* ── Checkout CTA ───────────────────────────────────── */
.t1-co-place-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #ee403d 0%, #c93532 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(238, 64, 61, 0.25);
  margin-top: 22px;
  text-decoration: none;
}

.t1-co-place-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(238, 64, 61, 0.35);
}

.t1-co-place-btn:active {
  transform: translateY(0);
}

/* ── Secure Badge ───────────────────────────────────── */
.t1-co-secure {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 14px;
}

/* ── Cart Summary Column ────────────────────────────── */
.t1-cart-summary-col {
  position: sticky;
  top: 24px;
}


.t1-co-steps {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 99px;
  padding: 6px;
  margin-bottom: 32px;
  width: fit-content;

  @media (max-width: 1024px) {
    width: 100%;
  }
}

.t1-co-step {
  padding: 10px 15px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.t1-co-step.active {
  background: linear-gradient(135deg, #d4bc94, #b79b6c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.25);
}

.t1-co-step.done {
  color: #10b981;
}

.t1-co-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);

  @media (max-width: 768px) {
    padding: 20px;
  }
}

.t1-co-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.t1-co-add-addr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1.5px dashed #cbd5e1;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: 16px;
}

.t1-co-add-addr-btn:hover {
  border-color: #ee403d;
  color: #ee403d;
  background: #fff7ed;
}

.t1-co-addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 700px) {
  .t1-co-addr-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Address Card ───────────────────────────────────── */
.t1-co-addr-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  position: relative;
}

.t1-co-addr-card:hover {
  border-color: rgba(238, 64, 61, 0.4);
  background: #fffbf5;
}

.t1-co-addr-card.selected {
  border-color: #ee403d;
  background: #fff7ed;
  box-shadow: 0 0 0 3px rgba(238, 64, 61, 0.08);
}

/* Custom radio */
.t1-co-addr-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.t1-co-addr-radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 2px;
}

.t1-co-addr-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ee403d;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.t1-co-addr-card.selected .t1-co-addr-radio {
  border-color: #ee403d;
}

.t1-co-addr-card.selected .t1-co-addr-radio::after {
  transform: scale(1);
}

/* Address body */
.t1-co-addr-body {
  flex: 1;
  min-width: 0;
}

.t1-co-addr-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.t1-co-addr-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}

.t1-co-addr-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.t1-co-addr-tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.t1-co-addr-line {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.t1-co-addr-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-top: 6px;
}

.t1-co-addr-phone svg {
  color: #94a3b8;
}

/* ── Address Action Buttons ─────────────────────────── */
.t1-co-addr-actions {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.t1-co-addr-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.t1-co-addr-action-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.t1-co-addr-action-btn.danger:hover {
  background: #fef2f2;
  color: #ef4444;
}

.t1-co-empty-addr {
  text-align: center;
  padding: 40px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px dashed #cbd5e1;
  color: #64748b;
  grid-column: 1 / -1;
}

.t1-pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.t1-pm-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}

.t1-pm-card:hover {
  border-color: rgba(238, 64, 61, 0.4);
  background: #fffbf5;
}

.t1-pm-card.selected {
  border-color: #ee403d;
  background: #fff7ed;
  box-shadow: 0 0 0 3px rgba(238, 64, 61, 0.08);
}

.t1-pm-card input[type="radio"] {
  accent-color: #ee403d;
  flex-shrink: 0;
}

.t1-pm-icon {
  font-size: 28px;
}

.t1-pm-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}

.t1-pm-desc {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.t1-co-note {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: #475569;
  margin-top: 8px;
}

.t1-co-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.t1-co-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f05552, #ee403d);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(238, 64, 61, 0.2);
}

.t1-co-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238, 64, 61, 0.3);
}

.t1-co-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.t1-co-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: #f1f5f9;
  color: #475569;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.t1-co-back-btn:hover {
  background: #e2e8f0;
}

.t1-co-review-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t1-co-review-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
}

.t1-co-review-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.t1-co-review-val {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.t1-co-sum-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;

  @media (max-width: 768px) {
    padding: 20px;
  }
}

.t1-co-sum-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.t1-co-item-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.t1-co-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t1-co-item-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  overflow: hidden;
  flex-shrink: 0;
}

.t1-co-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-co-item-info {
  flex: 1;
  min-width: 0;
}

.t1-co-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t1-co-item-qty {
  font-size: 12px;
  color: #94a3b8;
}

.t1-co-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  flex-shrink: 0;
}

.t1-co-fee-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.t1-co-fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #64748b;
}

.t1-co-fee-row.total {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  border-top: 2px solid #f1f5f9;
  padding-top: 14px;
  margin-top: 4px;
}

.t1-co-fee-row .green {
  color: #10b981;
  font-weight: 600;
}

.t1-co-speed-box {
  margin-bottom: 20px;
}

.t1-co-speed-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.ti-co-speed-free {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: #15803d;
  font-weight: 600;
  margin-bottom: 10px
}

.t1-co-speed-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t1-co-speed-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
}

.t1-co-speed-opt:hover {
  border-color: #d4bc94;
}

.t1-co-speed-opt input {
  accent-color: #ee403d;
  margin: 0;
}

.t1-co-speed-opt input[type="radio"] {
  display: none;
}

.t1-co-speed-opt.active {
  border-color: #ee403d;
  background: #fff8f5;
}

.t1-co-coupon-box {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.t1-co-coupon-remove-icon {
  background: #f1f5f9;
  color: #64748b;
  border: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.t1-co-coupon-remove-icon:hover {
  background: #ef4444;
  color: #fff;
}

.t1-co-coupon-box:focus-within {
  background: #fff;
  border-color: #d4bc94;
  box-shadow: 0 4px 12px rgba(238, 64, 61, 0.08);
}

.t1-co-coupon-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.t1-co-coupon-row {
  display: flex;
  gap: 10px;
}

.t1-co-coupon-input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  outline: none;
  background: #fff;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.t1-co-coupon-input:focus {
  border-color: #d4bc94;
  box-shadow: 0 0 0 3px rgba(238, 64, 61, 0.1);
}

.t1-co-coupon-btn {
  padding: 0 15px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.t1-co-coupon-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.t1-cart-coupon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.t1-cart-coupon-tag {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.t1-cart-coupon-tag:hover {
  border-color: #d4bc94;
  color: #ee403d;
  /* background: #fffaf5; */
}

.t1-cart-coupon-tag-ok {
  color: #10b981;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  display: none;
  align-items: center;
  gap: 4px;
}

.t1-cart-coupon-tag-error {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  display: none;
  align-items: center;
  gap: 4px;
}

.t1-co-disc-row {
  display: none;
  justify-content: space-between;
  font-size: 14px;
  color: #64748b;
  margin-top: 8px;
}

.t1-co-disc-row .disc-val {
  color: #10b981;
  font-weight: 700;
}

.t1-co-place-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d4bc94, #b79b6c);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.25);
  transition: all 0.2s;
  margin-top: 16px;
  text-decoration: none;
}

.t1-co-place-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 67, 54, 0.35);
}

.t1-co-place-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.t1-co-secure {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 12px;
}

.t1-co-add-addr-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f1f5f9;
  color: #475569;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 16px;
  transition: all 0.2s;
  width: 100%;
  justify-content: center;
}

.t1-co-add-addr-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* ── Cart Page Layout ─────────────────────────────── */
.t1-cart-page {
  /* background: #f8fafc; */
  min-height: 80vh;
}

.t1-saved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.t1-saved-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.t1-saved-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.t1-saved-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.t1-saved-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.t1-saved-card:hover .t1-saved-card-img img {
  transform: scale(1.05);
}

.t1-saved-card-img span {
  font-size: 48px;
}

.t1-saved-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.t1-saved-card-brand {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.t1-saved-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.t1-saved-price-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.t1-saved-price {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.t1-saved-old-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}

.t1-saved-discount {
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: #d1fae5;
  padding: 2px 6px;
  border-radius: 4px;
}

.t1-saved-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.t1-saved-btn-cart {
  flex: 1;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.t1-saved-btn-cart:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.t1-saved-btn-remove {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
}

.t1-saved-btn-remove:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #ef4444;
}

@media (max-width: 600px) {
  .t1-saved-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .t1-saved-card-body {
    padding: 12px;
  }

  .t1-saved-card-name {
    font-size: 13px;
  }

  .t1-saved-btn-cart {
    font-size: 12px;
    padding: 8px;
  }

  .t1-saved-btn-remove {
    width: 32px;
    height: 32px;
    padding: 6px;
  }

  .t1-saved-btn-remove svg {
    width: 14px;
    height: 14px;
  }
}



.t1-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.t1-cart-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.t1-cart-header h1 span {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 99px;
  margin-left: 12px;
  vertical-align: middle;
}

.t1-continue-link {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.t1-continue-link:hover {
  color: #0f172a;
}

.t1-cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px) {
  .t1-cart-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Cart Items ─────────────────────────────────────── */
.t1-cart-items-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t1-cart-select-all-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(10px);
}

.t1-cart-action-link {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.t1-cart-action-link:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.t1-cart-action-link.warn {
  color: #c9ae82;
}

.t1-cart-action-link.warn:hover {
  background: #fffbeb;
  color: #d97706;
}

.t1-cart-action-link.danger {
  color: #ef4444;
}

.t1-cart-action-link.danger:hover {
  background: #fef2f2;
  color: #dc2626;
}

.t1-cart-action-divider {
  width: 1px;
  height: 18px;
  background: #e2e8f0;
  display: inline-block;
}

/* ── Cart Card ──────────────────────────────────────── */
.t1-cart-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInCard 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

@keyframes slideInCard {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.t1-cart-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow:
    0 8px 25px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.03);
}

.t1-cart-card.removing {
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* ── Card Top Section ───────────────────────────────── */
.t1-cart-card-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 22px 18px;
  position: relative;
}

/* ── Custom Checkbox ────────────────────────────────── */
.t1-cart-checkbox-wrap {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-top: 8px;
}

.t1-cart-checkbox-wrap input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.t1-cart-checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.t1-cart-checkmark svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.t1-cart-checkbox-wrap input:checked~.t1-cart-checkmark {
  background: linear-gradient(135deg, #f05552, #ee403d);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(238, 64, 61, 0.35);
}

.t1-cart-checkbox-wrap input:checked~.t1-cart-checkmark svg {
  opacity: 1;
  transform: scale(1);
}

/* ── Product Thumbnail ──────────────────────────────── */
.t1-cart-card-img {
  flex-shrink: 0;
  width: 120px;
  height: 140px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.t1-cart-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.t1-cart-card:hover .t1-cart-card-img img {
  transform: scale(1.06);
}

/* ── Card Body ──────────────────────────────────────── */
.t1-cart-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t1-cart-card-brand {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}

.t1-cart-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.t1-cart-card-variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 6px;
}

.t1-cart-variant-tag {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.t1-cart-variant-tag svg {
  opacity: 0.5;
}

.t1-cart-delivery-info {
  font-size: 12px;
  color: #16a34a;
  font-weight: 500;
  margin: 2px 0;
}

/* ── Price Group ────────────────────────────────────── */
.t1-cart-price-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.t1-cart-price {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.t1-cart-old-price {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.t1-cart-discount {
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.t1-cart-unit-price {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

/* ── Remove Button (top-right X) ────────────────────── */
.t1-cart-remove-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #cbd5e1;
  padding: 6px;
  border-radius: 10px;
  transition: all 0.25s ease;
  line-height: 1;
  display: flex;
  align-items: center;
}

.t1-cart-remove-btn:hover {
  color: #ef4444;
  background: #fef2f2;
}

/* ── Card Bottom Actions Bar ────────────────────────── */
.t1-cart-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px 14px;
  border-top: 1px solid rgba(241, 245, 249, 0.9);
  background: #f6f7f9;
  gap: 12px;
  flex-wrap: wrap;
}

.t1-cart-action-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Qty Stepper ────────────────────────────────────── */
.t1-cart-qty-wrap {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 3px;
  gap: 2px;
  margin-top: 6px;
  width: fit-content;
}

.t1-cart-qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #475569;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
}

.t1-cart-qty-btn:hover:not(:disabled) {
  background: #0f172a;
  color: #fff;
}

.t1-cart-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.t1-cart-qty-num {
  width: 38px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  background: transparent;
  outline: none;
}

/* Hide number spinners */
.t1-cart-qty-num::-webkit-inner-spin-button,
.t1-cart-qty-num::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.t1-cart-qty-num {
  -moz-appearance: textfield;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
  .t1-cart-card-top {
    padding: 16px;
    gap: 12px;
  }

  .t1-cart-card-img {
    width: 65px;
    height: auto;
  }

  .t1-cart-card-actions {
    padding: 10px 16px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .t1-cart-action-btns {
    justify-content: center;
  }

  .t1-cart-card-name {
    font-size: 14px;
  }

  .t1-cart-price {
    font-size: 18px;
  }
}

/* ── Empty State ─────────────────────────────────────── */
.t1-cart-empty {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed #e2e8f0;
}

.t1-cart-empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.t1-cart-empty h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px;
}

.t1-cart-empty p {
  color: #64748b;
  font-size: 16px;
  margin: 0 0 28px;
}

/* ── Order Summary ──────────────────────────────────── */
.t1-cart-summary-col {
  position: sticky;
  top: 100px;
}

.t1-cart-summary-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.t1-cart-summary-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #f1f5f9;
}

/* coupon section */
.t1-cart-coupon-box {
  background: #f8fafc;
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
}

.t1-cart-coupon-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.t1-cart-coupon-row {
  display: flex;
  gap: 8px;
}

.t1-cart-promo-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
  text-transform: uppercase;
}

.t1-cart-promo-input:focus {
  border-color: #d4bc94;
}

.t1-cart-promo-btn {
  padding: 10px 18px;
  background: linear-gradient(135deg, #d4bc94, #b79b6c);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(244, 67, 54, 0.2);
}

.t1-cart-coupon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.t1-cart-coupon-tag-error {
  color: #ef4444;
  font-size: 11px;
  margin-top: 8px;
  display: none;
}

.t1-cart-coupon-tag-ok {
  color: #10b981;
  font-size: 11px;
  margin-top: 8px;
  display: none
}

.t1-cart-coupon-tag {
  background: linear-gradient(135deg, #d4bc94, #b79b6c);
  border: 1px solid #e2e8f0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s;
}

.t1-cart-coupon-tag:hover {
  border-color: #d4bc94;
  /* color: #ffffff; */
}

/* fee rows */
.t1-cart-fees {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.t1-cart-fee-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #64748b;
}

.t1-cart-fee-row .val {
  font-weight: 600;
  color: #0f172a;
}

.t1-cart-fee-row .val.green {
  color: #10b981;
}

.t1-cart-fee-row.disc {
  display: none;
}

.t1-cart-fee-row.disc .val {
  color: #10b981;
}

.t1-cart-fee-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 2px solid #f1f5f9;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

/* delivery speed */
.t1-cart-speed-box {
  padding: 0 24px 16px;
}

.t1-cart-speed-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.t1-cart-speed-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t1-cart-speed-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.t1-cart-speed-opt:hover {
  border-color: #d4bc94;
}

.t1-cart-speed-opt.active {
  border-color: #F44336;
  background: #fff8f5;
}

.t1-cart-speed-opt input {
  accent-color: #F44336;
}

.t1-cart-speed-fee {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.t1-cart-speed-fee.free {
  color: #10b981;
}

/* checkout btn */
.t1-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #d4bc94, #b79b6c);
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(244, 67, 54, 0.25);
  transition: all 0.2s;
}

.t1-cart-checkout-btn:hover {
  box-shadow: 0 8px 24px rgba(244, 67, 54, 0.35);
  filter: brightness(1.05);
}

.t1-secure-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  padding: 10px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Toast ──────────────────────────────────────────── */
.t1-cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #0f172a;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.t1-cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hide Mobile Elements on Desktop */
.mobile-menu-toggle,
.header-mobile-wishlist {
  display: none;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-search-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.search-title {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
}

.close-search-btn {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
}

.mobile-search-form {
  margin-bottom: 32px;
}

.mobile-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon-left {
  position: absolute;
  left: 16px;
  color: #94a3b8;
}

#mobileSearchInput {
  width: 100%;
  padding: 16px 120px 16px 48px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 16px;
  background: #fff;
  transition: border-color 0.2s;
}

#mobileSearchInput:focus {
  outline: none;
  border-color: #ee403d;
}

.mobile-search-submit {
  position: absolute;
  right: 8px;
  background: #ee403d;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.suggestion-title {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion-tags a {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  transition: all 0.2s;
}

.suggestion-tags a:hover {
  background: #ee403d;
  color: #fff;
  border-color: #ee403d;
}

/* Mobile Drawer — dark panel */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: linear-gradient(180deg, #16181d 0%, #101218 48%, #0c0e12 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow:
    16px 0 48px rgba(0, 0, 0, 0.45),
    1px 0 0 rgba(183, 155, 108, 0.12);
  color: #e8eaef;
  /* Dark drawer: raster/SVG logos ko light monochrome — override: --drawer-logo-img-filter: none; ya .drawer-header-logo--native */
  --drawer-logo-img-filter: brightness(0) invert(1);
}

.mobile-drawer-overlay.active .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer .logo-word {
  color: #f8fafc;
}

.mobile-drawer .logo-tagline {
  color: #8b929e;
}

.mobile-drawer .logo-dot {
  background: var(--theme-red, #ee403d);
}

.mobile-drawer .drawer-header-logo {
  flex: 1;
  min-width: 0;
}

.mobile-drawer .drawer-header-logo.header-logo--has-img {
  display: inline-flex;
  align-items: center;
}

.mobile-drawer .drawer-header-logo.header-logo--has-img .drawer-header-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(200px, 55vw);
  object-fit: contain;
  filter: var(--drawer-logo-img-filter);
  opacity: 0.94;
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}

.mobile-drawer .drawer-header-logo.header-logo--has-img:hover .drawer-header-logo-img {
  opacity: 1;
}

/* Uploaded logo already light / full-color on dark — header partial me class drawer-header-logo--native add karo */
.mobile-drawer .drawer-header-logo.drawer-header-logo--native.header-logo--has-img .drawer-header-logo-img {
  filter: none;
  opacity: 1;
}

.drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.2);
}

.close-drawer-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-size: 18px;
  line-height: 1;
  width: 40px;
  height: 40px;
  color: #b8c0cc;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.close-drawer-btn:hover {
  background: rgba(238, 64, 61, 0.15);
  border-color: rgba(238, 64, 61, 0.35);
  color: #fecaca;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drawer-body::-webkit-scrollbar {
  width: 6px;
}

.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.drawer-user-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.drawer-user-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(183, 155, 108, 0.28);
}

.drawer-user-card .user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #b79b6c), var(--accent-dark, #9a8258));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.drawer-user-card .user-meta {
  display: flex;
  flex-direction: column;
}

.drawer-user-card .user-name {
  font-weight: 700;
  color: #f8fafc;
  font-size: 16px;
}

.drawer-user-card .user-email {
  font-size: 13px;
  color: #94a3b8;
}

.drawer-login-prompt p {
  margin: 0 0 12px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.drawer-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
}

.drawer-nav-link.is-active {
  background: rgba(183, 155, 108, 0.14);
  color: var(--accent, #b79b6c);
}

button.drawer-nav-link.drawer-nav-link--btn {
  width: 100%;
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: #cbd5e1;
}

.drawer-tools-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin: 0 0 12px;
  font-weight: 700;
}

.drawer-tools {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-tool-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.drawer-tool-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f1f5f9;
}

.drawer-tool-link--logout {
  color: #f87171;
}

.drawer-tool-link--logout:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
}

.drawer-badge {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  color: #e8eaef;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* —— Product Listing Page (PLP) —— */
.t1-plp-page {
  padding: 40px 0 80px;
  /* background: #f8fafc; */
}

.t1-plp-header {
  /* background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0; */
  margin-bottom: 40px;
}

.t1-plp-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.t1-plp-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
}

.t1-plp-breadcrumb a {
  color: #ee403d;
  text-decoration: none;
}

.t1-plp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* PLP Sidebar */
.t1-plp-sidebar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 0;
  position: sticky;
  top: 92px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.t1-plp-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  border-radius: 24px 24px 0 0;
}

.t1-plp-sidebar-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.t1-plp-sidebar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t1-plp-clear-all {
  font-size: 12px;
  font-weight: 700;
  color: #ef4444;
  text-decoration: none;
  padding: 6px 14px;
  background: #fef2f2;
  border-radius: 999px;
  border: 1px solid #fecaca;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.t1-plp-clear-all:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: translateY(-1px);
}

.t1-plp-filter-group {
  margin: 0;
  padding: 24px;
  border-bottom: 1px dashed #e2e8f0;
  background: #fff;
}

.t1-plp-filter-group:last-child {
  border-bottom: none;
}

.t1-plp-filter-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f172a;
  margin: 0 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t1-plp-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.t1-plp-checkbox:last-child {
  margin-bottom: 0;
}

.t1-plp-checkbox:hover {
  background: #f8fafc;
  color: #0f172a;
}

.t1-plp-checkbox input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #cbd5e1;
  accent-color: #0f172a;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.t1-plp-checkbox:hover input {
  border-color: #0f172a;
}

.t1-plp-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.t1-plp-color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px #cbd5e1;
}

.t1-plp-color-swatch:hover,
.t1-plp-color-swatch.active {
  border-color: #fff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 0 0 2px #0f172a, 0 8px 16px rgba(15, 23, 42, 0.15);
}

.t1-plp-clear-color {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  color: #64748b;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px #e2e8f0;
}

.t1-plp-clear-color:hover {
  background: #fff1f1;
  color: #ef4444;
  box-shadow: 0 0 0 1px #fecaca;
  transform: scale(1.1);
}

/* PLP Toolbar */
.t1-plp-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
}

.t1-plp-results-count {
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
}

.t1-plp-results-count span {
  color: #0f172a;
  font-weight: 700;
}

.t1-plp-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t1-plp-sort select {
  padding: 8px 36px 8px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  appearance: none;
  background: #f8fafc url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  cursor: pointer;
}

.t1-plp-view-toggles {
  display: none;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 8px;
}

.t1-plp-view-btn {
  background: transparent;
  border: none;
  padding: 6px;
  border-radius: 6px;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.t1-plp-view-btn.active {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Grid layout overrides */
.t1-plp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

/* List Layout for Products */
.t1-plp-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Grid view: pcard--v3 in PLP */
.t1-plp-grid:not(.list-view) .pcard--v3 .pcard__image-wrap {
  aspect-ratio: 3 / 3.8;
}

/* List view: pcard--v3 horizontal layout */
.t1-plp-grid.list-view .pcard,
.t1-plp-grid.list-view .pcard--v3 {
  display: flex;
  flex-direction: row;
  height: 220px;
  border: 1px solid #e8eaef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.t1-plp-grid.list-view .pcard__media {
  width: 220px;
  min-width: 220px;
  height: 100%;
}

/* list-view: pcard--v3 image section */
.t1-plp-grid.list-view .pcard--v3 .pcard__image-wrap {
  width: 220px;
  min-width: 220px;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 14px 0 0 14px;
  flex-shrink: 0;
}

.t1-plp-grid.list-view .pcard--v3 .pcard__img {
  border-radius: 14px 0 0 14px;
}

.t1-plp-grid.list-view .pcard--v3 .pcard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  background: #fff;
}

.t1-plp-grid.list-view .pcard__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.t1-plp-grid.list-view .pcard__title,
.t1-plp-grid.list-view .pcard--v3 .pcard__title {
  font-size: 18px;
  margin-bottom: 10px;
  -webkit-line-clamp: 2;
}

.t1-plp-grid.list-view .pcard__price,
.t1-plp-grid.list-view .pcard__price-row,
.t1-plp-grid.list-view .pcard--v3 .pcard__price-row {
  margin-bottom: 16px;
}

.t1-plp-grid.list-view .pcard__price-current,
.t1-plp-grid.list-view .pcard--v3 .pcard__price-current {
  font-size: 20px;
}

.t1-plp-grid.list-view .pcard__actions {
  margin-top: auto;
  justify-content: flex-start;
  gap: 16px;
}

.t1-plp-grid.list-view .pcard__btn {
  width: auto;
  padding: 12px 32px;
}

.t1-plp-grid.list-view .pcard__btn--cart {
  background: var(--pcard-cta, #1283a1);
  border-color: var(--pcard-cta, #1283a1);
}

/* list-view: pcard--v3 add-to-cart as regular button */
.t1-plp-grid.list-view .pcard--v3 .pcard__cart-overlay {
  position: static;
  opacity: 1;
  transform: none;
  padding: 0;
  margin-top: auto;
}

.t1-plp-grid.list-view .pcard--v3 .pcard__cart-btn {
  width: auto;
  padding: 11px 28px;
  border-radius: 10px;
  background: #ef4444;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}

.t1-plp-grid.list-view .pcard--v3 .pcard__cart-btn:hover {
  background: #dc2626;
  transform: none;
}

/* list-view: side actions visible always */
.t1-plp-grid.list-view .pcard--v3 .pcard__side-actions {
  display: none;
}

.t1-plp-grid.list-view .pcard--v3 .pcard__off-badge {
  border-radius: 0 6px 6px 0;
  top: 14px;
  left: 0;
}

/* Mobile only utility */
.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .t1-plp-layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
    border: none;
    margin-bottom: 0;
  }

  .t1-plp-filter-toggle {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    align-items: center;
    gap: 8px;
  }

  .t1-plp-layout {
    grid-template-columns: 1fr;
  }

  /* Mobile Sidebar Drawer styling */
  .t1-plp-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .t1-plp-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .t1-plp-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 24px 0 44px rgba(15, 23, 42, 0.22);
    border-radius: 0;
    border: none;
    overflow-y: auto;
    padding: 0;
  }

  .t1-plp-sidebar-overlay.active .t1-plp-sidebar {
    transform: translateX(0);
  }

  /* List view overrides for tablet/mobile */
  .t1-plp-grid.list-view .pcard {
    height: 160px;
  }

  .t1-plp-grid.list-view .pcard__media {
    width: 140px;
    min-width: 140px;
  }

  .t1-plp-grid.list-view .pcard__body {
    padding: 16px;
  }

  .t1-plp-grid.list-view .pcard__title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .t1-plp-grid.list-view .pcard__price,
  .t1-plp-grid.list-view .pcard__price-row {
    margin-bottom: 12px;
  }

  .t1-plp-grid.list-view .pcard__price-current {
    font-size: 18px;
  }

  .t1-plp-grid.list-view .pcard__btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.t1-plp-sidebar-title {
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
  font-family: Jost, Inter, sans-serif;
}

.close-sidebar-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: 18px;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.close-sidebar-btn:hover {
  background: rgba(238, 64, 61, 0.08);
  border-color: rgba(238, 64, 61, 0.25);
  color: var(--theme-red);
}

@media (max-width: 480px) {
  .t1-plp-grid.list-view .pcard {
    flex-direction: column;
    height: auto;
  }

  .t1-plp-grid.list-view .pcard__media {
    width: 100%;
    height: 200px;
  }
}

/* —— Orders Page: Inline Style Replacements —— */

/* Cancel Buttons */
.t1-cancel-btn {
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #0f172a;
  transition: all 0.2s;
}

.t1-cancel-btn:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.t1-cancel-btn--pending {
  opacity: 0.7;
  cursor: not-allowed;
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #64748b;
}

.t1-cancel-btn--rejected {
  opacity: 0.7;
  cursor: not-allowed;
  border-color: #fca5a5;
  color: #ef4444;
  background: #fef2f2;
}

/* Order header actions row */
.t1-order-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Order item row - column layout */
.t1-order-item-row--col {
  flex-direction: column;
  align-items: stretch;
}

.t1-order-item-row__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Review button inline */
.t1-order-review-btn {
  margin-left: auto;
  padding: 6px 12px;
  font-size: 12px;
}

/* Return progress box */
.t1-return-progress-box {
  margin-top: 12px;
  padding: 0 0 12px;
  background: rgba(248, 250, 252, 0.6);
  border-radius: 12px;
}

.t1-return-progress-title {
  padding: 12px 12px 4px;
  color: #6b5a3e;
}

.t1-return-info-box {
  margin: 0 12px;
  font-size: 12px;
  color: #475569;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

/* Invoice link */
.t1-order-invoice-link {
  text-decoration: none;
}

/* Order Details Modal body */
.t1-modal-body-scroll {
  max-height: 70vh;
  overflow-y: auto;
}

.t1-modal-detail-row {
  margin-bottom: 8px;
}

.t1-modal-detail-row--lg {
  margin-bottom: 16px;
}

.t1-modal-items-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.t1-modal-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.t1-modal-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
}

.t1-modal-item-emoji {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.t1-modal-item-info {
  flex: 1;
}

.t1-modal-item-name {
  display: block;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 2px;
}

.t1-modal-item-qty {
  font-size: 12px;
  color: #64748b;
}

.t1-modal-item-price {
  font-size: 14px;
  color: #0f172a;
}

.t1-modal-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding-top: 16px;
}

.t1-modal-total-label {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
}

.t1-modal-total-value {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

/* Review & Cancel Modals */
.t1-modal-overlay--top {
  z-index: 9999;
}

.t1-modal-card--sm {
  max-width: 400px;
  padding: 32px;
}

.t1-modal-heading {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.t1-modal-heading--lg {
  margin-bottom: 16px;
}

.t1-modal-subtext {
  margin: 0 0 20px;
  font-size: 14px;
  color: #475569;
}

.t1-modal-subtext--bold {
  font-weight: 600;
}

.t1-modal-field-group {
  margin-bottom: 16px;
}

.t1-modal-field-group--lg {
  margin-bottom: 24px;
}

.t1-modal-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #334155;
}

.t1-modal-select,
.t1-modal-textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  outline: none;
  background: #f8fafc;
  color: #0f172a;
  font-size: 14px;
}

.t1-modal-textarea {
  resize: none;
}

.t1-modal-msg {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
}

.t1-modal-actions {
  display: flex;
  gap: 12px;
}

.t1-modal-actions .profile-edit-cancel,
.t1-modal-actions .profile-edit-btn {
  flex: 1;
}

.t1-modal-btn-danger {
  background: #ef4444;
  border-color: #ef4444;
}

/* =========================================
   Static pages: About / FAQ / Legal / Contact (Theme 2)
   ========================================= */

.t1-static-body {
  background-color: #FFFAF3;
  background-image:
    radial-gradient(ellipse 110% 55% at 50% -25%, rgba(247, 148, 31, 0.08), transparent 52%),
    radial-gradient(ellipse 55% 45% at 100% 25%, rgba(238, 64, 61, 0.03), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 75%, rgba(247, 148, 31, 0.03), transparent 48%);
  background-attachment: fixed;
}

.t1-static-hero {
  position: relative;
  padding: 56px 0 58px;
  overflow: hidden;
}

.t1-static-hero--compact {
  padding: 44px 0 32px;
}

.t1-static-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.82), rgba(255, 250, 243, 0.9)),
    radial-gradient(ellipse 75% 60% at 90% -8%, rgba(238, 64, 61, 0.12), transparent 58%);
  pointer-events: none;
}

.t1-static-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.t1-static-hero-inner--compact {
  grid-template-columns: 1fr;
}



.t1-static-kicker {
  margin: 0 0 9px;
  font-family: Jost, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-red);
}

.t1-static-title {
  margin: 0 0 14px;
  font-family: Jost, "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.95rem, 4.3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.t1-static-lead {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--muted);
  /* max-width: 58ch; */
}

.t1-static-hero-visual {
  min-height: 280px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(255, 255, 255, 0.6), transparent 70%),
    linear-gradient(142deg, #fff6f6 0%, #ffeceb 40%, #f4f7fb 100%);
  box-shadow: var(--shadow-card);
}

.t1-static-hero-visual--about {
  background:
    linear-gradient(130deg, rgba(238, 64, 61, 0.1) 0%, rgba(255, 255, 255, 0.65) 40%, rgba(15, 23, 42, 0.06) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 420 320'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ee403d' stop-opacity='0.22'/%3E%3Cstop offset='100%25' stop-color='%230f172a' stop-opacity='0.18'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='420' height='320' rx='24'/%3E%3Cpath fill='%23fff' fill-opacity='0.55' d='M40 245c50-82 160-116 252-84 45 15 83 44 118 84H40z'/%3E%3C/svg%3E") center / cover no-repeat;
}

.t1-static-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.btn-hero-outline {
  background: #fff;
  color: var(--theme-red);
  border: 1px solid rgba(238, 64, 61, 0.35);
  box-shadow: var(--shadow-xs);
}

.btn-hero-outline:hover {
  background: rgba(238, 64, 61, 0.08);
  border-color: rgba(238, 64, 61, 0.5);
}

.btn-hero-on-dark {
  background: #fff;
  color: var(--text);
  box-shadow: 0 10px 28px rgba(4, 4, 4, 0.15);
}

.btn-hero-on-dark:hover {
  background: #fff5f5;
  filter: none;
}

.t1-inline-link {
  color: var(--theme-red-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.t1-inline-link:hover {
  color: var(--theme-red);
}

.t1-static-wrap {
  padding-bottom: 70px;
}

.t1-static-wrap .t1-breadcrumb {
  margin-top: 6px;
  margin-bottom: 24px;
}

.t1-static-section {
  margin-bottom: 42px;
}

.t1-static-section--muted {
  border-radius: 18px;
  border: 1px solid rgba(247, 148, 31, 0.1);
  background: #fff;
  box-shadow: 0 14px 32px rgba(247, 148, 31, 0.04);
  padding: 34px 30px;
}

.t1-static-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 28px;
}

.t1-static-h2 {
  margin: 0 0 8px;
  font-family: Jost, "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.78rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.t1-static-h2--light {
  color: #fff;
}

.t1-static-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.t1-static-p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
}

.t1-static-p--small {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.t1-static-grid-2 {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 30px;
  align-items: start;
}

.t1-static-stats {
  list-style: none;
  margin: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(247, 148, 31, 0.12);
  background:
    radial-gradient(circle at top right, rgba(238, 64, 61, 0.08), transparent 56%),
    linear-gradient(140deg, #fff 0%, #fffbf8 50%, #fff 100%);
}

.t1-static-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #fcefe2;
  background: #fff;
}

.t1-static-stats strong {
  font-family: Jost, Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--theme-red-dark);
  line-height: 1;
}

.t1-static-stats span {
  font-size: 0.8rem;
  color: #64748b;
  letter-spacing: 0.02em;
}

.t1-value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t1-value-card {
  padding: 24px 19px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(247, 148, 31, 0.1);
  box-shadow: 0 12px 28px rgba(247, 148, 31, 0.03);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.t1-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(238, 64, 61, 0.28);
  box-shadow: 0 16px 30px rgba(238, 64, 61, 0.1);
}

.t1-value-card h3 {
  margin: 11px 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.t1-value-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.t1-value-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--theme-red);
  border: 1px solid rgba(238, 64, 61, 0.2);
  background: rgba(238, 64, 61, 0.05);
}

.t1-static-cta-band {
  margin-bottom: 0;
}

.t1-static-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 36px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(238, 64, 61, 0.26), transparent 38%),
    linear-gradient(128deg, #0f172a 0%, #1f2937 56%, #334155 100%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
}

.t1-static-cta-text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  max-width: 460px;
}

/* FAQ */
.t1-faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 290px) 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 54px;
}

.t1-faq-aside {
  position: relative;
  position: sticky;
  top: 92px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
  padding: 16px;
  overflow: hidden;
}

.t1-faq-aside::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-red-dark), var(--theme-red));
}

.t1-faq-aside-title {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--theme-red-dark);
}

.t1-faq-topic-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 7px;
}

.t1-faq-topic-list a {
  display: block;
  padding: 9px 11px;
  border: 1px solid #e7edf5;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.t1-faq-topic-list a:hover {
  border-color: rgba(238, 64, 61, 0.26);
  background: rgba(238, 64, 61, 0.08);
  color: var(--theme-red);
  transform: translateX(2px);
}

.t1-faq-aside-card {
  border-radius: 14px;
  border: 1px solid rgba(238, 64, 61, 0.22);
  background:
    radial-gradient(circle at 90% 0%, rgba(238, 64, 61, 0.2), transparent 52%),
    linear-gradient(154deg, #fff8f8 0%, #fff 72%);
  padding: 15px;
}

.t1-faq-aside-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.t1-faq-aside-card p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.t1-faq-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t1-faq-item {
  border: 1px solid rgba(247, 148, 31, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(247, 148, 31, 0.03);
  overflow: hidden;
}

.t1-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 19px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.t1-faq-item summary::-webkit-details-marker {
  display: none;
}

.t1-faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #ee403d;
  border-bottom: 2px solid #ee403d;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.24s ease;
}

.t1-faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.t1-faq-item summary:hover {
  background: #fffbf7;
  color: var(--theme-red);
}

.t1-faq-answer {
  border-top: 1px solid #fcefe2;
  background: #fffdfb;
  padding: 0 19px 17px;
}

.t1-faq-answer p {
  margin: 12px 0 0;
  font-size: 0.93rem;
  line-height: 1.68;
  color: #4b5563;
}

/* Contact */
.t1-contact-alert {
  margin-bottom: 20px;
  padding: 13px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.t1-contact-alert--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.t1-contact-alert--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.t1-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.t1-contact-card {
  position: relative;
  border-radius: 24px;
  padding: 36px 30px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t1-contact-card--info {
  border: 1px solid rgba(247, 148, 31, 0.14);
  background:
    radial-gradient(circle at top right, rgba(247, 148, 31, 0.1), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #fffbf8 100%);
  box-shadow: 0 20px 45px rgba(247, 148, 31, 0.04);
}

.t1-contact-card--info:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(247, 148, 31, 0.08);
}

.t1-contact-card--info::before,
.t1-contact-card--form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f7941f, var(--theme-red));
}

.t1-contact-card--form {
  border: 1px solid rgba(238, 64, 61, 0.12);
  background:
    radial-gradient(circle at bottom left, rgba(238, 64, 61, 0.04), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #fffdfb 100%);
  box-shadow: 0 20px 45px rgba(238, 64, 61, 0.04);
}

.t1-contact-card--form:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(238, 64, 61, 0.08);
}

.t1-contact-details {
  list-style: none;
  margin: 24px 0 18px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.t1-contact-details li {
  border: 1px solid #f9ece0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 16px 20px;
  font-size: 0.96rem;
  color: #334155;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(247, 148, 31, 0.02);
}

.t1-contact-details li:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 64, 61, 0.25);
  box-shadow: 0 10px 20px rgba(238, 64, 61, 0.06);
}

.t1-contact-details-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #8c9096;
}

.t1-contact-details a {
  color: var(--theme-red-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.t1-contact-details a:hover {
  text-decoration: none;
  color: var(--theme-red);
}

.t1-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.t1-contact-form .btn-hero {
  border: none;
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
}

.t1-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t1-field-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.t1-optional {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
}

.t1-field input,
.t1-field textarea {
  width: 100%;
  border: 1px solid #f1dec9;
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(247, 148, 31, 0.01);
}

.t1-field input:focus,
.t1-field textarea:focus {
  outline: none;
  border-color: #ee403d;
  box-shadow: 0 0 0 4px rgba(238, 64, 61, 0.12), inset 0 2px 4px rgba(238, 64, 61, 0.02);
  background: #fffdfd;
}

.t1-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* Legal / policy pages */
.t1-legal-layout {
  display: grid;
  grid-template-columns: minmax(228px, 30%) 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 62px;
}

.t1-legal-aside {
  position: relative;
  position: sticky;
  top: 92px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.06);
  padding: 16px;
  overflow: hidden;
}

.t1-legal-aside::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--theme-red-dark), var(--theme-red));
}

.t1-legal-aside-title {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--theme-red-dark);
}

.t1-legal-toc {
  list-style: none;
  margin: 0;
  padding: 0;
}

.t1-legal-toc a {
  display: block;
  padding: 9px 11px;
  border: 1px solid #e7edf5;
  border-radius: 10px;
  background: #f8fafc;
  color: #475569;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.t1-legal-toc a:hover {
  border-color: rgba(238, 64, 61, 0.28);
  background: rgba(238, 64, 61, 0.08);
  color: var(--theme-red);
  transform: translateX(2px);
}

.t1-legal-doc {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.06);
  padding: 32px 32px;
}

.t1-legal-meta {
  margin: 0 0 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5edf4;
  font-size: 0.84rem;
  color: var(--muted);
}

.t1-legal-section {
  scroll-margin-top: 104px;
}

.t1-legal-section h2 {
  margin: 0 0 12px;
  font-family: Jost, "Plus Jakarta Sans", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.t1-legal-section+.t1-legal-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #edf1f5;
}

.t1-legal-chat-cta {
  margin: 4px 0 8px;
}

.t1-legal-chat-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(238, 64, 61, 0.2);
  background: linear-gradient(180deg, rgba(238, 64, 61, 0.08), rgba(238, 64, 61, 0.02));
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.t1-legal-chat-link:hover {
  transform: translateY(-1px);
  border-color: rgba(238, 64, 61, 0.4);
  box-shadow: 0 8px 20px rgba(238, 64, 61, 0.12);
  text-decoration: none;
}

.t1-legal-chat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--theme-red);
  box-shadow: inset 0 0 0 1px rgba(238, 64, 61, 0.16);
}

.t1-legal-chat-icon svg {
  width: 20px;
  height: 20px;
}

.t1-legal-chat-link strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.25;
}

.t1-legal-chat-link small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 0.8rem;
}

.t1-legal-contact-email {
  margin-top: 10px;
}

.t1-legal-list,
.t1-legal-ordered {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  color: #475569;
}

.t1-legal-ordered {
  padding-left: 1.3rem;
}

.t1-legal-list li,
.t1-legal-ordered li {
  margin-bottom: 10px;
  line-height: 1.62;
}

.t1-legal-list li:last-child,
.t1-legal-ordered li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .t1-static-grid-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .t1-value-cards {
    grid-template-columns: 1fr;
  }

  .t1-faq-layout,
  .t1-legal-layout,
  .t1-contact-grid {
    grid-template-columns: 1fr;
  }

  .t1-faq-aside,
  .t1-legal-aside {
    position: static;
  }
}

@media (max-width: 900px) {
  .t1-static-hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .t1-static-hero-visual {
    min-height: 190px;
    order: -1;
  }

  .t1-static-section--muted {
    padding: 22px 18px;
  }

  .t1-static-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px 20px;
  }

  .t1-legal-doc {
    padding: 22px 18px;
  }
}

/* =====================================================================
   Theme 2 — account flow layout (cart / checkout / profile / orders)
   Scoped with body.t2-account-layout so theme-1 pages stay unchanged.
   ===================================================================== */

body.t2-account-layout.profile-page-wrap {
  /* background:
    radial-gradient(900px 420px at 8% -12%, rgba(15, 23, 42, 0.06), transparent 55%),
    radial-gradient(700px 380px at 92% 0%, rgba(71, 85, 105, 0.08), transparent 50%),
    linear-gradient(168deg, #e8ecf3 0%, #eef2f7 42%, #f8fafc 100%); */
}

body.t2-account-layout.t1-cart-page .cart-main-wrap,
body.t2-account-layout.t1-co-page .cart-main-wrap {
  padding: 44px 0 56px;
}

/* Cart: cart items LEFT, order summary RIGHT */
@media (min-width: 901px) {
  body.t2-account-layout .t1-cart-layout {
    grid-template-columns: minmax(0, 1fr) minmax(268px, 360px);
    gap: 32px;
    align-items: start;
  }

  body.t2-account-layout .t1-cart-items-col {
    grid-column: 1;
    grid-row: 1;
  }

  body.t2-account-layout .t1-cart-summary-col {
    grid-column: 2;
    grid-row: 1;
  }
}

/* Checkout: address / payment / review LEFT, order summary RIGHT */
@media (min-width: 901px) {
  body.t2-account-layout .t1-co-layout {
    grid-template-columns: minmax(0, 1fr) minmax(268px, 360px);
    gap: 36px;
    align-items: start;
  }

  body.t2-account-layout #leftCol {
    grid-column: 1;
    grid-row: 1;
  }

  body.t2-account-layout .t1-co-sum-card {
    grid-column: 2;
    grid-row: 1;
  }
}

/* Profile: sidebar LEFT, main content RIGHT */
@media (min-width: 1025px) {
  body.t2-account-layout .profile-shell {
    grid-template-columns: minmax(252px, 292px) minmax(0, 1fr);
    gap: 32px;
    /* width: min(1440px, 94%); */
  }

  body.t2-account-layout .profile-side {
    grid-column: 1;
    grid-row: 1;
  }

  body.t2-account-layout .profile-main {
    grid-column: 2;
    grid-row: 1;
  }

  body.t2-account-layout .profile-shell--full {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }

  body.t2-account-layout .profile-shell--full .profile-main {
    grid-column: 1 / -1;
  }
}

/* Address Only View (when tab=addresses is requested) */
main.t2-address-only-view {
  padding: 40px 0;
  min-height: 100vh;
  background: #f8fafc;
}

main.t2-address-only-view .profile-shell {
  grid-template-columns: 1fr !important;
  width: min(1200px, 94%) !important;
}

main.t2-address-only-view .profile-main {
  box-shadow: none;
  border: none;
  background: transparent;
  padding: 0;
}

main.t2-address-only-view .profile-main-head {
  margin-bottom: 32px;
}

body.t2-account-layout .t1-cart-header h1,
body.t2-account-layout .t1-co-header h1 {
  font-weight: 700;
  letter-spacing: -0.035em;
  border-left: 4px solid #0f172a;
  padding-left: 14px;
  margin-left: 2px;
}

body.t2-account-layout .t1-co-steps {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

body.t2-account-layout .t1-cart-card,
body.t2-account-layout .t1-co-card {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.085);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 42px rgba(15, 23, 42, 0.065);
}

body.t2-account-layout .t1-cart-summary-col .t1-co-sum-card,
body.t2-account-layout .t1-co-sum-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(185deg, #ffffff 0%, #f4f6f9 100%);
}

body.t2-account-layout .profile-main {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 48px rgba(15, 23, 42, 0.07);

  @media(max-width: 768px) {
    padding: 20px;
  }
}

/* =====================================================================
   Theme 2 — login / register (split hero + glass card)
   ===================================================================== */

body.t2-login-page {
  margin: 0;
  min-height: 100vh;
  font-family: Jost, system-ui, sans-serif;
  color: var(--text, #1c1917);
  background: #f7f5f0;
  position: relative;
  overflow-x: hidden;
}

/* Stunning glowing interactive background shift */
.t2-login-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 25%, rgba(183, 155, 108, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(238, 64, 61, 0.06) 0%, transparent 45%),
    linear-gradient(135deg, #fdfbfa 0%, #f4f0e7 100%);
  background-size: 180% 180%;
  animation: bgPulse 16s ease infinite alternate;
}

@keyframes bgPulse {
  0% {
    background-position: 0% 15%;
  }

  100% {
    background-position: 100% 85%;
  }
}

.t2-login-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(28, 25, 23, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}

.t2-login-topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.05);
  background: rgba(253, 252, 250, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015);
}

.t2-login-topbar .t2-login-header-logo.header-logo {
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.t2-login-topbar .t2-login-header-logo.header-logo:hover {
  transform: scale(1.02);
}

.t2-login-topbar .t2-login-header-logo .header-logo-img {
  height: 40px;
  max-width: 180px;
}

.t2-login-back {
  font-size: 0.875rem;
  font-weight: 600;
  color: #57534e;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(28, 25, 23, 0.08);
  background: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2-login-back:hover {
  color: #1c1917;
  border-color: rgba(183, 155, 108, 0.4);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(183, 155, 108, 0.08);
}

.t2-login-main {
  position: relative;
  z-index: 5;
  min-height: calc(100vh - 73px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 5vw, 60px) 20px 40px;
}

.t2-login-shell {
  width: min(100%, 980px);
  transition: transform 0.3s ease;
}

.t2-login-aside {
  display: none;
}

@media (min-width: 920px) {
  .t2-login-shell {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 30px 70px rgba(28, 25, 23, 0.08),
      0 10px 25px rgba(28, 25, 23, 0.02);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .t2-login-aside {
    display: flex;
    position: relative;
    min-height: 580px;
    padding: clamp(40px, 5vw, 60px);
    color: #ffffff;
  }

  .t2-login-aside-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #1e1b18 0%, #12100e 60%, #0a0908 100%);
  }

  .t2-login-aside-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 15% 25%, rgba(183, 155, 108, 0.25) 0%, transparent 60%),
      radial-gradient(circle at 85% 85%, rgba(238, 64, 61, 0.08) 0%, transparent 60%);
    opacity: 0.9;
  }

  .t2-login-aside-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
  }

  .t2-login-aside-eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #b79b6c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  .t2-login-aside-headline {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.25;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .t2-login-aside-list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
  }

  .t2-login-aside-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.25s ease;
  }

  .t2-login-aside-list li:hover {
    transform: translateX(6px);
  }

  .t2-login-aside-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b79b6c, #9a8258);
    box-shadow: 0 0 0 4px rgba(183, 155, 108, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
  }
}

/* Glassmorphic boutique ticket card */
.t2-login-card {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 45px rgba(28, 25, 23, 0.05);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.t2-login-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #b79b6c 0%, #9a8258 100%);
  box-shadow: 1px 0 10px rgba(183, 155, 108, 0.4);
}

@media (min-width: 920px) {
  .t2-login-card {
    border-radius: 0;
    border: none;
    background: rgba(255, 254, 252, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 580px;
    padding-left: clamp(35px, 5vw, 55px);
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.6);
  }

  .t2-login-card::before {
    display: none;
  }
}

.t2-login-intro {
  text-align: left;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(28, 25, 23, 0.12);
}

.t2-login-kicker {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a8258;
}

.t2-login-title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.35rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
  color: #1c1917;
  line-height: 1.15;
}

.t2-login-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #6b6661;
}

.t2-login-tabs {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.t2-login-tab {
  position: relative;
  padding: 8px 0 12px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8c857b;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

.t2-login-tab:hover {
  color: #1c1917;
}

.t2-login-tab.active {
  color: #1c1917;
}

.t2-login-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  border-radius: 2px;
  background: #b79b6c;
  box-shadow: 0 1px 6px rgba(183, 155, 108, 0.5);
}

.t2-login-pane.hidden {
  display: none;
}

.t2-login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.t2-login-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .t2-login-row2 {
    grid-template-columns: 1fr;
  }
}

.t2-login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t2-login-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #4a4540;
}

.t2-login-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t2-login-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1c1917;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 12px;
  outline: none;
  box-shadow:
    inset 0 2px 4px rgba(28, 25, 23, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2-login-field input::placeholder {
  color: #a39e96;
}

.t2-login-field input:focus {
  background: #ffffff;
  border-color: #b79b6c;
  box-shadow:
    0 0 0 3px rgba(183, 155, 108, 0.15),
    inset 0 2px 4px rgba(183, 155, 108, 0.05);
}

.t2-login-pass-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.t2-login-pass-wrap > input {
  padding-right: 46px;
}

.t2-login-pass-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #8a847c;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.t2-login-pass-toggle:hover {
  color: #1c1917;
  background: rgba(28, 25, 23, 0.05);
}

.t2-login-pass-toggle:focus-visible {
  outline: 2px solid #b79b6c;
  outline-offset: 1px;
}

.t2-login-pass-toggle__icons {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.t2-login-pass-toggle__eye {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}

.t2-login-pass-toggle__eye--closed {
  display: none;
}

.t2-login-pass-toggle--on .t2-login-pass-toggle__eye--open {
  display: none;
}

.t2-login-pass-toggle--on .t2-login-pass-toggle__eye--closed {
  display: block;
}

.t2-login-textbtn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ee403d;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.t2-login-textbtn:hover {
  color: #c93532;
  text-shadow: 0 0 8px rgba(238, 64, 61, 0.15);
}

.t2-login-submit {
  margin-top: 8px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #2e2a26 0%, #171412 100%);
  border: 1px solid #171412;
  border-radius: 12px;
  cursor: pointer;
  box-shadow:
    0 4px 14px rgba(28, 25, 23, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2-login-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3d3832 0%, #1e1a17 100%);
  box-shadow:
    0 8px 24px rgba(28, 25, 23, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.t2-login-submit:active {
  transform: translateY(0);
  box-shadow:
    0 4px 10px rgba(28, 25, 23, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.t2-login-submit--outline {
  background: transparent;
  color: #1c1917;
  border: 1.5px dashed rgba(28, 25, 23, 0.25);
  box-shadow: none;
}

.t2-login-submit--outline:hover {
  background: rgba(183, 155, 108, 0.06);
  border: 1.5px solid #b79b6c;
  color: #1c1917;
  box-shadow: 0 4px 12px rgba(183, 155, 108, 0.05);
}

.t2-login-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: 10px;
  border: 1px solid transparent;
}

.t2-login-alert svg {
  flex-shrink: 0;
}

.t2-login-alert--error {
  background: rgba(254, 242, 242, 0.9);
  border-color: rgba(239, 68, 68, 0.15);
  color: #dc2626;
}

.t2-login-alert--ok {
  background: rgba(240, 253, 244, 0.9);
  border-color: rgba(34, 197, 94, 0.15);
  color: #16a34a;
}

.t2-login-verify {
  margin-top: 24px;
  padding: 24px 20px;
  border: 2px dashed rgba(183, 155, 108, 0.25);
  border-radius: 16px;
  background: rgba(253, 251, 247, 0.5);
}

.t2-login-verify-title {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
  color: #1c1917;
}

.t2-login-verify-hint {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  text-align: center;
  color: #6b6661;
}

.t2-login-code-input {
  text-align: center;
  font-size: 1.5rem !important;
  letter-spacing: 0.45em;
  text-indent: 0.25em;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #b79b6c !important;
}

.t2-login-footnote {
  margin: 28px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #a39e96;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {

  .t2-login-submit,
  .t2-login-back,
  .t2-login-tab,
  .t2-login-modal,
  .t2-login-blob {
    transition: none !important;
    animation: none !important;
  }

  .t2-login-submit:active {
    transform: none !important;
  }
}

/* Modal Overlay & Card Style */
.t2-login-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(18, 16, 15, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.t2-login-modal-overlay.show {
  display: flex;
}

.t2-login-modal {
  width: min(100%, 420px);
  box-sizing: border-box;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(18, 16, 15, 0.15);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.t2-login-modal-overlay.show .t2-login-modal {
  transform: scale(1);
  opacity: 1;
}

.t2-login-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.t2-login-modal-head h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1c1917;
}

.t2-login-modal-x {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 50%;
  background: #ffffff;
  font-size: 0.875rem;
  color: #57534e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.t2-login-modal-x:hover {
  background: rgba(28, 25, 23, 0.05);
  color: #1c1917;
  transform: rotate(90deg);
}

.t2-login-modal-note {
  margin: 0 0 24px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b6661;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Theme 2 — Cart & checkout (minimal white + red accent, reference layout)
   ═══════════════════════════════════════════════════════════════════════════ */

/* .t2-cart-checkout.t1-cart-page,
.t2-cart-checkout.t1-co-page {
  background: #ffffff;
} */

.t2-cart-checkout .cart-main-wrap {
  padding: 28px 0 48px;
}

.t2-cart-checkout .t1-cart-header,
.t2-cart-checkout .t1-co-header {
  margin-bottom: 28px;
}

.t2-cart-checkout .t1-cart-header h1,
.t2-cart-checkout .t1-co-header h1 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.t2-cart-checkout .t1-cart-header h1 span {
  background: transparent;
  padding: 0;
  margin-left: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.t2-cart-checkout .t1-continue-link {
  color: var(--muted);
  font-weight: 500;
}

.t2-cart-checkout .t1-continue-link:hover {
  color: var(--theme-red);
}

/* Select-all toolbar — divider only */
.t2-cart-checkout .t1-cart-select-all-bar {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 14px 0;
  margin-bottom: 0;
}

/* Cart item row — flat list with horizontal rules */
.t2-cart-checkout .t2-cart-item.t1-cart-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  animation: none;
  border-bottom: 1px solid var(--line);
}

.t2-cart-checkout .t2-cart-item.t1-cart-card:hover {
  box-shadow: none;
  border-color: var(--line);
}

.t2-cart-checkout .t2-cart-item.t1-cart-card:last-of-type {
  border-bottom: 1px solid var(--line);
}

.t2-cart-checkout .t2-cart-row.t1-cart-card-top {
  display: grid;
  grid-template-columns: min-content 96px minmax(140px, 1fr) auto auto min-content;
  align-items: center;
  gap: 16px 20px;
  padding: 22px 0;
}

.t2-cart-checkout .t2-cart-cb.t1-cart-checkbox-wrap {
  padding-top: 0;
  align-self: center;
}

.t2-cart-checkout .t2-cart-thumb.t1-cart-card-img {
  width: 96px;
  height: 96px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.t2-cart-checkout .t2-cart-thumb.t1-cart-card-img:hover img {
  transform: none;
}

.t2-cart-checkout .t2-cart-product-text.t1-cart-card-body {
  gap: 2px;
}

.t2-cart-checkout .t1-cart-card-brand {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.t2-cart-checkout .t1-cart-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.t2-cart-checkout .t1-cart-card-variants {
  margin-top: 6px;
}

.t2-cart-checkout .t1-cart-variant-tag {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 11px;
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-price-group {
  margin-top: 0;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 10px;
  row-gap: 6px;
  justify-content: end;
  justify-items: end;
  align-items: baseline;
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-price {
  grid-column: 1;
  grid-row: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-price-group:not(:has(.t1-cart-old-price)) .t1-cart-price {
  grid-column: 1 / -1;
  justify-self: end;
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-old-price {
  grid-column: 2;
  grid-row: 1;
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-discount {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-unit-price {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-price-group:not(:has(.t1-cart-discount)) .t1-cart-unit-price {
  grid-column: 1 / -1;
  grid-row: 2;
}

.t2-cart-checkout .t2-cart-price-col .t1-cart-price-group:not(:has(.t1-cart-unit-price)) .t1-cart-discount {
  grid-column: 1 / -1;
  grid-row: 2;
}

.t2-cart-checkout .t2-cart-qty.t1-cart-qty-wrap {
  margin-top: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 4px;
}

.t2-cart-checkout .t2-cart-qty .t1-cart-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.t2-cart-checkout .t2-cart-qty .t1-cart-qty-btn:hover:not(:disabled) {
  background: var(--line);
  color: var(--text);
}

.t2-cart-checkout .t2-cart-remove-text {
  background: none;
  border: none;
  padding: 8px 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
}

.t2-cart-checkout .t2-cart-remove-text:hover {
  color: var(--theme-red);
}

/* Bottom meta row */
.t2-cart-checkout .t2-cart-card-actions.t1-cart-card-actions {
  background: transparent;
  border-top: none;
  padding: 0 0 18px;
  margin-top: -6px;
  padding-left: calc(22px + 96px + 36px);
}

@media (max-width: 720px) {
  .t2-cart-checkout .t2-cart-row.t1-cart-card-top {
    grid-template-columns: auto 72px 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .t2-cart-checkout .t2-cart-cb.t1-cart-checkbox-wrap {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .t2-cart-checkout .t2-cart-thumb.t1-cart-card-img {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 72px;
    height: 72px;
  }

  .t2-cart-checkout .t2-cart-product-text {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: start;
  }

  .t2-cart-checkout .t2-cart-price-col {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
  }

  .t2-cart-checkout .t2-cart-price-col .t1-cart-price-group {
    justify-content: start;
    justify-items: start;
  }

  .t2-cart-checkout .t2-cart-price-col .t1-cart-price-group:not(:has(.t1-cart-old-price)) .t1-cart-price {
    justify-self: start;
  }

  .t2-cart-checkout .t2-cart-price-col .t1-cart-discount,
  .t2-cart-checkout .t2-cart-price-col .t1-cart-unit-price {
    justify-self: start;
  }

  .t2-cart-checkout .t2-cart-qty.t1-cart-qty-wrap {
    grid-column: 1 / span 2;
    grid-row: 4;
    justify-self: start;
  }

  .t2-cart-checkout .t2-cart-remove-text {
    grid-column: 3;
    grid-row: 4;
    justify-self: end;
    align-self: center;
  }

  .t2-cart-checkout .t2-cart-card-actions.t1-cart-card-actions {
    padding-left: 0;
  }
}

/* Order summary card */
.t2-cart-checkout .t1-co-sum-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: none;
  padding: 22px 20px;
  top: 88px;
}

.t2-cart-checkout .t1-co-sum-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: 0;
}

.t2-cart-checkout .t1-co-sum-title::before {
  display: none;
}

.t2-cart-checkout .t2-shipping-heading.t1-co-speed-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.t2-cart-checkout .t1-co-speed-opt {
  border-radius: 8px;
  padding: 10px 12px;
  border-color: var(--line);
}

.t2-cart-checkout .t1-co-speed-opt.active {
  border-color: var(--theme-red);
  background: #fff;
  box-shadow: none;
}

.t2-cart-checkout .t1-co-speed-opt input[type="radio"] {
  border-radius: 3px;
}

.t2-cart-checkout .t1-co-speed-opt.active input[type="radio"] {
  border-radius: 3px;
  box-shadow: inset 0 0 0 2px #fff;
}

.t2-cart-checkout .ti-co-speed-free {
  background: #fff8f8;
  border-color: rgba(238, 64, 61, 0.2);
  color: var(--theme-red);
}

.t2-cart-checkout .t1-co-fee-row.total {
  border-top-color: var(--line);
  font-size: 16px;
}

.t2-cart-checkout .t1-co-fee-row .green {
  color: var(--theme-red);
}

.t2-cart-checkout .t2-cart-checkout-btn.t1-co-place-btn,
.t2-cart-checkout a.t2-cart-checkout-btn.t1-co-place-btn {
  background: var(--theme-red);
  border-radius: 10px;
  box-shadow: none;
  font-weight: 600;
  padding: 14px 18px;
  margin-top: 16px;
}

.t2-cart-checkout .t2-cart-checkout-btn.t1-co-place-btn:hover,
.t2-cart-checkout a.t2-cart-checkout-btn.t1-co-place-btn:hover {
  background: var(--theme-red-dark);
  box-shadow: none;
  transform: none;
}

.t2-cart-checkout .t1-co-coupon-btn {
  background: var(--text);
  border-radius: 8px;
}

.t2-cart-checkout .t1-co-coupon-btn:hover {
  background: #333;
  transform: none;
}

/* Checkout — ship-to line (summary) */
.t2-co-ship-to {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.t2-co-ship-to-line {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
}

.t2-co-ship-to-line #coShipToText {
  color: var(--theme-red);
  font-weight: 500;
}

.t2-co-change-addr {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.t2-co-change-addr:hover {
  color: var(--theme-red);
}

.t2-co-change-addr svg {
  color: var(--theme-red);
  flex-shrink: 0;
}

/* Checkout steps + cards */
.t2-cart-checkout .t1-co-steps {
  border-color: var(--line);
  background: #fafafa;
}

.t2-cart-checkout .t1-co-step.active {
  background: var(--theme-red);
  color: #fff;
  box-shadow: none;
}

.t2-cart-checkout .t1-co-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: none;
}

.t2-cart-checkout .t1-co-btn:not(.t1-co-back-btn) {
  background: var(--theme-red);
  border-radius: 10px;
  color: #fff;
  border: none;
}

.t2-cart-checkout .t1-co-btn:not(.t1-co-back-btn):hover {
  background: var(--theme-red-dark);
}

.t2-cart-checkout .t1-co-back-btn {
  border-radius: 10px;
}

.t2-cart-checkout .t1-co-place-btn#placeBtn {
  border-radius: 10px;
}

/* Empty cart */
.t2-cart-checkout .t1-cart-empty {
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fafafa;
}

/* Saved for later — softer */
.t2-cart-checkout .t1-saved-section {
  border-top-color: var(--line);
}

.t2-cart-checkout .t1-saved-card {
  border-radius: 10px;
  box-shadow: none;
}

.t2-cart-checkout .t1-saved-btn-cart {
  background: var(--theme-red);
  border-radius: 8px;
}

/* ─── Settings Modernization (Theme-2) ─── */
.t2-settings-grid {
  display: grid;
  gap: 16px;
}

.t2-settings-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  transition: all 0.25s ease;
}

.t2-settings-card:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.t2-settings-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.t2-settings-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.t2-settings-icon--account {
  background: #fef3c7;
  color: #92400e;
}

.t2-settings-icon--security {
  background: rgba(59, 130, 246, 0.08);
  color: #2563eb;
}

.t2-settings-icon--danger {
  background: rgba(239, 68, 68, 0.06);
  color: #dc2626;
}

.t2-settings-card-title h2 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
}

.t2-settings-card-title p {
  margin: 0;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.t2-settings-card-body {
  padding: 20px 24px 24px;
}

.t2-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.t2-settings-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.t2-settings-row-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.t2-settings-row-info span {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 500;
}

/* Settings Buttons */
.t2-settings-btn {
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.t2-settings-btn--primary {
  background: #0f172a;
  color: #fff;
}

.t2-settings-btn--primary:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.t2-settings-btn--secondary {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  color: #0f172a;
}

.t2-settings-btn--secondary:hover {
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.15) !important;
  transform: translateY(-1px);
}

.t2-settings-btn--danger {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15) !important;
  color: #dc2626;
}

.t2-settings-btn--danger:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.3) !important;
  transform: translateY(-1px);
}

/* Settings Modals */
.st-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 20px;
}

.st-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.t2-settings-modal {
  width: min(480px, 100%);
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.15);
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.st-modal-overlay.is-open .t2-settings-modal {
  transform: translateY(0);
}

.t2-settings-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.t2-settings-modal-title h3 {
  font-size: 20px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 4px;
}

.t2-settings-modal-title p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.t2-settings-modal .st-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.t2-settings-modal .st-modal-close:hover {
  background: #f1f5f9;
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

.t2-settings-modal .st-modal-fields {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.t2-settings-modal .st-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.t2-settings-modal .st-field input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.t2-settings-modal .st-field input:focus {
  border-color: #0f172a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}

.t2-settings-modal .st-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.t2-settings-modal .st-modal-actions .t2-settings-btn {
  flex: 1;
}

.t2-settings-modal .st-warning-box {
  background: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.t2-settings-modal .st-warning-box strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 10px;
}

.t2-settings-modal .st-delete-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

/* Delete Modal Steps */
.st-delete-step {
  display: none;
  animation: stepFadeIn 0.3s ease forwards;
}

.st-delete-step.is-active {
  display: block;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.st-msg {
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  display: none;
}

.st-msg.is-success {
  display: block;
  background: rgba(22, 163, 74, 0.04);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.st-msg.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.04);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.12);
}

.t2-cart-checkout .t1-saved-btn-cart:hover {
  background: var(--theme-red-dark);
}

/* =========================================================
   SELLER STORE — Theme 2 (/seller-store.php)
   Light card on hero, red accents, Jost headings
========================================================= */

body.t2-seller-store.t1-seller-page {
  background: var(--bg);
}

body.t2-seller-store.t1-seller-page .t1-seller-hero {
  min-height: 280px;
  margin-bottom: 0;
  background-color: #1a1a1a;
}

body.t2-seller-store.t1-seller-page .t1-seller-hero:not([style*="background-image"]) {
  background-image: linear-gradient(135deg, var(--theme-red) 0%, var(--theme-red-dark) 38%, #1f1f1f 100%);
}

body.t2-seller-store.t1-seller-page .t1-seller-hero-overlay {
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.12) 0%, rgba(4, 4, 4, 0.58) 100%);
  backdrop-filter: none;
}

body.t2-seller-store.t1-seller-page .t1-seller-info-card.t2-seller-info-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px 36px;
  padding: 26px 32px 26px 26px;
  max-width: min(920px, 96%);
  margin-bottom: 72px;
  transform: translateY(44px);
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 4px rgba(4, 4, 4, 0.02),
    0 24px 56px rgba(15, 23, 42, 0.09);
  backdrop-filter: none;
  overflow: hidden;
}

body.t2-seller-store.t1-seller-page .t1-seller-info-card.t2-seller-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
      var(--theme-red) 0%,
      var(--theme-red-dark) 42%,
      rgba(238, 64, 61, 0.35) 100%);
  border-radius: 20px 20px 0 0;
}

body.t2-seller-store.t1-seller-page .t1-seller-info-card.t2-seller-info-card::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -8%;
  width: min(280px, 55vw);
  height: min(280px, 55vw);
  background: radial-gradient(circle at center, rgba(238, 64, 61, 0.09) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

body.t2-seller-store.t1-seller-page .t1-seller-info-card.t2-seller-info-card>* {
  position: relative;
  z-index: 1;
}

body.t2-seller-store .t1-seller-info-card.t2-seller-info-card .t1-seller-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

body.t2-seller-store .t1-seller-logo {
  width: 112px;
  height: 112px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #ffffff 0%, #fff7f7 100%);
  border: 1px solid rgba(238, 64, 61, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 10px 28px rgba(238, 64, 61, 0.14);
}

body.t2-seller-store .t1-seller-logo span {
  color: var(--theme-red);
  font-weight: 800;
}

body.t2-seller-store .t1-seller-verified {
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(238, 64, 61, 0.12) 0%, rgba(238, 64, 61, 0.06) 100%);
  color: var(--theme-red-dark);
  border: 1px solid rgba(238, 64, 61, 0.28);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 0;
}

body.t2-seller-store .t1-seller-title {
  margin: 0;
  color: var(--text);
  font-family: Jost, Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

body.t2-seller-store .t1-seller-subtitle {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.45;
}

body.t2-seller-store .t1-seller-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

body.t2-seller-store .t1-seller-stats .stat {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.t2-seller-store .t1-seller-stats .stat:hover {
  border-color: rgba(238, 64, 61, 0.25);
  box-shadow: 0 4px 14px rgba(238, 64, 61, 0.08);
}

body.t2-seller-store .t1-seller-stats .stat strong {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

body.t2-seller-store .t1-seller-stats .stat span {
  margin-top: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  body.t2-seller-store.t1-seller-page .t1-seller-info-card.t2-seller-info-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    transform: translateY(28px);
    margin-bottom: 56px;
    padding: 24px 20px 26px;
    gap: 18px;
  }

  body.t2-seller-store .t1-seller-info-card.t2-seller-info-card .t1-seller-meta {
    align-items: center;
  }

  body.t2-seller-store .t1-seller-verified {
    align-self: center;
  }

  body.t2-seller-store .t1-seller-stats {
    justify-content: center;
  }

  body.t2-seller-store .t1-seller-stats .stat {
    flex-direction: column;
    gap: 2px;
    padding: 10px 18px;
    text-align: center;
  }

  body.t2-seller-store .t1-seller-stats .stat span {
    font-size: 11px;
  }
}

body.t2-seller-store .t1-seller-main {
  padding-top: 8px;
  padding-bottom: 72px;
}

body.t2-seller-store .t1-seller-details-grid {
  margin-top: 0;
  margin-bottom: 40px;
  gap: 20px;
}

body.t2-seller-store .t1-seller-detail-box {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

body.t2-seller-store .t1-seller-detail-box h3 {
  font-family: Jost, Inter, sans-serif;
  color: var(--text);
  border-bottom-color: var(--line);
}

body.t2-seller-store .t1-seller-detail-box p {
  color: var(--muted);
}

body

/* —— New Premium Loader —— */
.t2-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s;
}

.t2-loader.t2-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.t2-loader__bg {
  position: absolute;
  inset: 0;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.t2-loader__orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
}

.t2-loader__orb--1 {
  background: radial-gradient(circle, rgba(238, 64, 61, 0.3) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: t2-orb-float 15s infinite alternate ease-in-out;
}

.t2-loader__orb--2 {
  background: radial-gradient(circle, rgba(247, 148, 31, 0.2) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation: t2-orb-float 18s infinite alternate-reverse ease-in-out;
}

.t2-loader__orb--3 {
  background: radial-gradient(circle, rgba(238, 64, 61, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: t2-orb-pulse 12s infinite ease-in-out;
}

.t2-loader__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.t2-loader__liquid-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  background: #0a0a0a;
  filter: contrast(20);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.t2-loader__liquid {
  position: relative;
  width: 100%;
  height: 100%;
  filter: blur(10px);
}

.t2-loader__drop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #ee403d;
  border-radius: 50%;
}

.t2-loader__drop:nth-child(1) {
  animation: t2-liquid-drop1 3.5s infinite ease-in-out;
}

.t2-loader__drop:nth-child(2) {
  width: 35px;
  height: 35px;
  animation: t2-liquid-drop2 3.5s infinite ease-in-out;
  animation-delay: -0.5s;
}

.t2-loader__drop:nth-child(3) {
  width: 30px;
  height: 30px;
  animation: t2-liquid-drop3 3.5s infinite ease-in-out;
  animation-delay: -1s;
}

.t2-loader__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.t2-loader__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  animation: t2-fade-in-up 1s ease-out both;
}

.t2-loader__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: t2-fade-in-up 1s ease-out 0.2s both;
}

.t2-loader__progress {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 20px;
  overflow: hidden;
  animation: t2-fade-in-up 1s ease-out 0.4s both;
}

.t2-loader__progress-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ee403d, transparent);
  animation: t2-progress-slide 2s infinite ease-in-out;
}

/* Animations */
@keyframes t2-orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

@keyframes t2-orb-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

@keyframes t2-liquid-drop1 {

  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  33% {
    transform: translate(-120%, -30%);
  }

  66% {
    transform: translate(20%, -100%);
  }
}

@keyframes t2-liquid-drop2 {

  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  33% {
    transform: translate(100%, 40%);
  }

  66% {
    transform: translate(-40%, 120%);
  }
}

@keyframes t2-liquid-drop3 {

  0%,
  100% {
    transform: translate(-50%, -50%);
  }

  33% {
    transform: translate(-30%, 110%);
  }

  66% {
    transform: translate(110%, -20%);
  }
}

@keyframes t2-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes t2-progress-slide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


/* Theme 3 Modern Header V3 */
:root {
  --nav-yellow: #FEEB9D;
  --nav-text: #1a1a1a;
}

.site-header {
  /* padding: 15px 0; */
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-left {
  flex-shrink: 0;
}

.header-logo-img {
  height: 48px;
  width: auto;
}

.header-center {
  flex: 1;
  max-width: 600px;
}

.header-search-v3 {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 2px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search-v3:focus-within {
  border-color: #9ca3af;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-cat-v3 {
  position: relative;
  display: flex;
  align-items: center;
}

.search-cat-select-v3 {
  appearance: none;
  border: none;
  background: transparent;
  padding: 8px 35px 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  outline: none;
}

.cat-chev {
  position: absolute;
  right: 15px;
  pointer-events: none;
  color: #6b7280;
}

.search-v3-divider {
  width: 1px;
  height: 24px;
  background: #e5e7eb;
}

.search-input-v3 {
  flex: 1;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.search-input-v3::placeholder {
  color: #9ca3af;
}

.search-submit-v3 {
  background: transparent;
  border: none;
  padding: 0 15px;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.search-submit-v3:hover {
  color: #111827;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-support {
  display: flex;
  align-items: center;
  gap: 15px;
}

.support-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.support-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -2px;
}

.support-number {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.support-icon {
  color: #111827;
  display: flex;
  align-items: center;
}

.mobile-menu-toggle-v3 {
  display: none;
  background: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #111827;
}

/* Navbar V3 */
.navbar-v3 {
  background: var(--nav-yellow);
  padding: 0;
}

.navbar-inner-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-v3-left {
  flex-shrink: 0;
}

.category-dropdown-v3 {
  position: relative;
}

.cat-toggle-v3 {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: none;
  padding: 0 25px;
  height: 48px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  cursor: pointer;
  transition: transform 0.1s;
}

.cat-toggle-v3:active {
  transform: scale(0.98);
}

.cat-menu-v3 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 0 0 12px 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  padding: 10px 0;
}

.category-dropdown-v3:hover .cat-menu-v3 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cat-menu-v3 a {
  display: block;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s;
}

.cat-menu-v3 a:hover {
  background: #fffbeb;
  color: #d97706;
  padding-left: 30px;
}

.nav-links-v3 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links-v3 a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.2s;
}

.nav-links-v3 a:hover {
  opacity: 0.7;
}

.nav-v3-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-action-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  font-size: 15px;
}

.deal-badge {
  color: #e11d48;
}

.nav-v3-divider {
  color: #111827;
  opacity: 0.4;
  display: flex;
  align-items: center;
}

.action-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.badge-v3 {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #fb923c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 6px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .nav-links-v3 {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .header-center {
    display: none;
  }

  .header-support {
    display: none;
  }

  .mobile-menu-toggle-v3 {
    display: block;
  }

  .nav-v3-center,
  .nav-v3-right,
  .nav-v3-divider {
    display: none;
  }

  .category-dropdown-v3 {
    width: 100%;
  }

  .cat-toggle-v3 {
    width: 100%;
    justify-content: space-between;
  }

  .navbar-inner-v3 {
    height: auto;
    padding: 10px 0;
  }
}

/* Hero Banner V3 */
.hero-banner-v3 {
  background: #fdf9f4;
  /* Light cream/beige */
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
}

.hero-banner-inner-v3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 100px;
  gap: 50px;
}

.hero-banner-copy-v3 {
  flex: 1;
  max-width: 650px;
}

.hero-kicker-v3 {
  color: #e11d48;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-title-v3 {
  font-size: 68px;
  font-weight: 800;
  color: #13172B;
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.hero-title-v3 .highlight {
  background: #FEEB9D;
  padding: 2px 12px;
  border-radius: 12px;
  display: inline-block;
}

.hero-lede-v3 {
  font-size: 18px;
  color: #5A5858;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 550px;
}

.hero-actions-v3 {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-price-v3 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-icon {
  font-size: 52px;
  font-weight: 800;
  color: #13172B;
}

.price-details {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 15px;
  color: #5A5858;
  font-weight: 600;
}

.price-value {
  font-size: 38px;
  font-weight: 800;
  color: #13172B;
}

.hero-dashed-line {
  flex: 1;
  max-width: 120px;
  display: flex;
  align-items: center;
}

.btn-shop-now-v3 {
  background: #13172B;
  color: #fff;
  padding: 20px 50px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(19, 23, 43, 0.15);
}

.btn-shop-now-v3:hover {
  transform: translateY(-4px);
  background: #000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-banner-visual-v3 {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.image-wrapper {
  position: relative;
  z-index: 10;
}

.hero-img-v3 {
  width: 440px;
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-border-v3 {
  position: absolute;
  top: -25px;
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border: 1.5px dashed #D1D5DB;
  border-radius: 50px;
  z-index: 1;
}

.hero-dots-v3 {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.hero-dots-v3 button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #13172B;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-dots-v3 button.is-active {
  background: #13172B;
  height: 25px;
  border-radius: 10px;
}

@media (max-width: 1280px) {
  .hero-banner-inner-v3 {
    padding: 60px;
  }

  .hero-title-v3 {
    font-size: 52px;
  }

  .hero-img-v3 {
    width: 360px;
    height: 440px;
  }
}

@media (max-width: 1024px) {
  .hero-banner-inner-v3 {
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
  }

  .hero-banner-copy-v3 {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-lede-v3 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title-v3 {
    font-size: 42px;
  }

  .hero-actions-v3 {
    justify-content: center;
    gap: 30px;
  }

  .hero-dashed-line {
    display: none;
  }

  .hero-img-v3 {
    width: 320px;
    height: 400px;
  }

  .hero-dots-v3 {
    right: 50%;
    bottom: -40px;
    top: auto;
    flex-direction: row;
    transform: translateX(50%);
  }

  .hero-dots-v3 button.active {
    width: 25px;
    height: 10px;
  }
}

/* ��������������������������������������������������������������������������
   THEME-3 V3 MODERNIZATIONS (Pesco Style)
   �������������������������������������������������������������������������� */

/* 1. Category Marquee V3 */
.category-marquee-v3 {
  background: #13172B;
  overflow: hidden;
  padding: 24px 0;
  display: flex;
  align-items: center;
}

.marquee-content-v3 {
  display: flex;
  white-space: nowrap;
  animation: marquee-v3 40s linear infinite;
  will-change: transform;
}

.marquee-item-v3 {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  margin-right: 60px;
  gap: 30px;
  letter-spacing: 0.08em;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.star-icon {
  color: #e11d48;
  font-size: 28px;
  display: flex;
  align-items: center;
}

@keyframes marquee-v3 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .marquee-item-v3 {
    font-size: 22px;
    margin-right: 40px;
    gap: 20px;
  }

  .star-icon {
    font-size: 18px;
  }
}

/* 2. Benefits Box V3 */
.benefits-section-v3 {
  padding: 60px 0;
  background-color: #fdf9f4;
}

.benefits-box-v3 {
  background: #fff;
  border: 1px dashed #D1D5DB;
  border-radius: 24px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
}

.benefit-item-v3 {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.benefit-item-v3:hover {
  transform: translateY(-5px);
}

.benefit-icon-v3 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}

.benefit-item-v3:hover .benefit-icon-v3 {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}

.benefit-info-v3 h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.benefit-info-v3 p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.benefit-divider-v3 {
  width: 1px;
  height: 80px;
  background: #E5E7EB;
  position: relative;
  flex-shrink: 0;
}

.benefit-divider-v3::before,
.benefit-divider-v3::after {
  content: "";
  position: absolute;
  left: -2.5px;
  width: 6px;
  height: 6px;
  background: #9CA3AF;
  border-radius: 50%;
}

.benefit-divider-v3::before {
  top: 0;
}

.benefit-divider-v3::after {
  bottom: 0;
}

@media (max-width: 1024px) {
  .benefits-box-v3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
  }

  .benefit-divider-v3 {
    width: 100%;
    height: 1px;
  }

  .benefit-divider-v3::before {
    left: 0;
    top: -2.5px;
  }

  .benefit-divider-v3::after {
    right: 0;
    left: auto;
    top: -2.5px;
  }
}

/* 3. Top Categories V3 (Pesco Style) */
.top-categories-v3 {
  padding: 0px 0 60px;
  background-color: #fdf9f4;
  overflow: hidden;
}

.top-cat-header-v3 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.top-cat-kicker {
  color: #e11d48;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-cat-title {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.01em;
}

.top-cat-nav {
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #d1d1d1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.top-cat-grid-v3 {
  display: block;
  margin: 0 -15px;
}

.top-cat-grid-v3 .slick-list {
  overflow: visible;
  padding: 20px 0 80px;
}

.top-cat-card-v3 {
  position: relative;
  padding: 0 15px;
  outline: none;
}

.cat-img-wrap {
  position: relative;
  border: 1px solid #1a1a1a;
  border-radius: 40px;
  background: #fff;
  overflow: visible;
  transition: transform 0.4s ease;
}

.top-cat-card-v3:hover .cat-img-wrap {
  transform: translateY(-8px);
}

.cat-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 39px;
  display: block;
}

.cat-pill {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 14px 36px;
  border-radius: 99px;
  font-weight: 800;
  color: #1a1a1a;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #aeb0b6;
  z-index: 10;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
}

.top-cat-card-v3:hover .cat-pill {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.top-cat-card-v3::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 120px;
  background-image: url("https://html.pixelfit.agency/pesco/assets/images/line.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .top-cat-title {
    font-size: 38px;
  }

  .cat-img-wrap img {
    height: 220px;
  }
}

@media (max-width: 1024px) {
  .top-cat-title {
    font-size: 32px;
  }

  .top-cat-card-v3::after {
    display: none;
  }
}

/* ============================================================
   4. Promo Banner V3  (after top-categories)
   ============================================================ */
.promo-banner-v3 {
  background-color: #fdf9f4;
  padding: 0 0 70px;
}

.promo-banner-grid-v3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.banner-item.style-one.bg-one {
  background-color: #FFF9F8;
}

.banner-item.style-one.bg-two {
  background-color: #FEFFF8;
}

.banner-item.style-one {
  padding: 48px 50px 50px;
  position: relative;
  border: 2px solid #13172b;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
  min-height: 380px;
}

.banner-item.style-one .shape.shape-one {
  top: 45px;
  left: 45%;

  @media (max-width: 768px) {
    right: 15%;
    left: auto;
  }
}

.banner-item.style-one .shape {
  position: absolute;
  z-index: -1;
}

.banner-item.style-one .shape.shape-two {
  top: 0;
  right: 0;

  @media (max-width: 768px) {
    opacity: .2;
  }
}

.banner-item.style-one .banner-img {
  position: absolute;
  bottom: -10px;
  right: 35px;
}

.banner-item.style-one .banner-content {
  max-width: 270px;
}

.banner-item.style-one .banner-content span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 2px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.banner-item.style-one .banner-content span span.off {
  display: block;
  font-size: 64px;
  font-weight: 900;
  color: #13172b;
  line-height: 1;
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.02em;
}

.banner-item.style-one .banner-content h4 {
  margin-top: 30px;
  margin-bottom: 35px;
  font-size: 24px;
  line-height: 36px;
  color: #5e626f;
}

.banner-item.style-one .banner-content .theme-btn.style-one {
  padding: 16px 24px;
  line-height: 18px;
  font-size: 18px;
}

.theme-btn.style-one {
  font-weight: 500;
  font-size: 16px;
  padding: 20px 40px;
  line-height: 16px;
  border-radius: 50px;
  transition: all 0.3s ease-in;
  background-color: #13172b;
  color: #ffffff;
  text-decoration: none;
}



@media (max-width: 768px) {
  .promo-banner-grid-v3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .banner-img {
    display: none;
  }

}

/*********Newletter Section***********/
.newsletter-section {
  padding: 60px 0px;
}

.newsletter-wrapper {
  padding: 60px 60px 0;
  position: relative;
  background-color: rgb(255, 255, 255);
  z-index: 0;
}

.newsletter-wrapper .newsletter-shape.pattern-one {
  top: 0;
  left: 0;
}

.newsletter-wrapper .newsletter-shape {
  position: absolute;
  z-index: -1;
}

.newsletter-wrapper .newsletter-shape.pattern-one span img {
  opacity: 0.4;
  max-width: 100%;
}

.newsletter-wrapper .newsletter-shape.pattern-two {
  top: 0;
  right: 0;
}

.newsletter-wrapper .newsletter-shape.pattern-two span img {
  opacity: 0.4;
}

.newsletter-wrapper .newsletter-shape.shape-one {
  top: 28%;
  right: 40%;
}

.newsletter-inner-box {
  display: flex;
  justify-content: space-between;
}

.newsletter-wrapper .newsletter-content-box span.sub-text {
  font-size: 20px;
  margin-bottom: 10px;
  color: #13172b;
}

.newsletter-wrapper .newsletter-content-box h3 {
  text-transform: capitalize;
  max-width: 595px;
  margin-bottom: 65px;
  font-size: 30px;
  line-height: 45px;
  color: #13172b;
}

.newsletter-wrapper .newsletter-content-box h3 span {
  border-bottom: 1.5px solid #cc0d39;
  color: #cc0d39;
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.newsletter-wrapper .newsletter-content-box .form_control {
  border: 1px solid #13172b;
  font-weight: 500;
  padding: 20px 160px 20px 20px;
  line-height: 16px;
  border-radius: 50px;
  width: 100%;
}

.newsletter-wrapper .newsletter-content-box .theme-btn {
  position: absolute;
  top: 5px;
  right: 5px;
}

.newsletter-wrapper .newsletter-content-box .theme-btn.style-one {
  padding: 14px 24px;
  line-height: 20px;
  font-size: 20px;
  font-weight: 400;
  border: none;
}

.newsletter-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 16px 0 8px;
  }

  .newsletter-wrapper {
    padding: 20px 16px 0;
    overflow: hidden;
    border-radius: 18px;
  }

  .newsletter-wrapper .newsletter-shape {
    display: none;
  }

  .newsletter-inner-box {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .newsletter-content-box {
    min-width: 0;
    width: 100%;
  }

  .newsletter-wrapper .newsletter-content-box span.sub-text {
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
  }

  .newsletter-wrapper .newsletter-content-box h3 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .newsletter-wrapper .newsletter-content-box .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-wrapper .newsletter-content-box .form_control {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .newsletter-wrapper .newsletter-content-box .theme-btn {
    position: static;
    width: 100%;
    right: auto;
    top: auto;
  }

  .newsletter-wrapper .newsletter-content-box .theme-btn.style-one {
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
  }

  .newsletter-image {
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }

  .newsletter-image img {
    max-width: 210px;
    width: 70%;
    margin: 0 auto;
  }
}

/* ====================================================
   Redesigned PDP Card (t1/t2-product-glass-card replacement)
   ==================================================== */
.pdp-redesigned-card {
  background-color: transparent;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'Jost', 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  box-shadow: none;
}

.pdp-sale-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e11d48;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pdp-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #1e293b;
}

.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-stars {
  display: flex;
  gap: 2px;
}

.pdp-reviews-count {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.pdp-desc-snippet {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-top: 4px;
}

.pdp-divider {
  border: 0;
  height: 1px;
  background-color: #e2e8f0;
  margin: 8px 0;
}

.pdp-price-stack {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp-price-old {
  font-size: 20px;
  color: #94a3b8;
  font-weight: 600;
  text-decoration: line-through;
}

.pdp-price-current {
  font-size: 32px;
  color: #0f172a;
  font-weight: 700;
}

.pdp-swatch-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-swatch-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.pdp-swatches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pdp-color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.pdp-color-swatch:hover,
.pdp-color-swatch.active {
  box-shadow: 0 0 0 2px #0f172a;
  transform: scale(1.1);
}

.pdp-size-btn {
  padding: 8px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-size-btn:hover {
  border-color: #94a3b8;
  color: #0f172a;
}

.pdp-size-btn.active {
  border-color: #0f172a;
  color: #0f172a;
  background-color: #f8fafc;
}

.pdp-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.pdp-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  height: 48px;
  padding: 0 8px;
  background-color: transparent;
}

.pdp-qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 18px;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-qty-control input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  -moz-appearance: textfield;
}

.pdp-qty-control input::-webkit-outer-spin-button,
.pdp-qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-btn-add-cart {
  flex: 1;
  height: 48px;
  background-color: #0f172a;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-width: 140px;
}

.pdp-btn-add-cart:hover {
  background-color: #1e293b;
}

.pdp-btn-add-cart:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
}

.pdp-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background-color: transparent;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.pdp-btn-icon:hover {
  border-color: #0f172a;
  background-color: #f8fafc;
}

.pdp-meta-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.pdp-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
}

.pdp-meta-item strong {
  color: #0f172a;
  font-weight: 600;
  min-width: 85px;
}

.pdp-share-row {
  align-items: center;
}

.pdp-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-social-icons a {
  color: #0f172a;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-social-icons a:hover {
  color: #e11d48;
}

.pdp-badges-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pdp-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #fef08a;
  /* Yellow badge */
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.pdp-badge-item svg {
  width: 18px;
  height: 18px;
}

/* ====================================================
   Redesigned PDP Tabs (2-Column Layout)
   ==================================================== */
.pdp-tabs-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .pdp-tabs-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.pdp-tabs-sidebar {
  /* width: 340px; */
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .pdp-tabs-sidebar {
    width: 100%;
  }
}

.pdp-additional-info {
  background-color: #ffffff;
  border: 1px solid #ede3dd;
  border-radius: 0;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(247, 148, 31, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pdp-additional-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(247, 148, 31, 0.06);
}

.pdp-additional-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  border-bottom: 1px dashed rgba(247, 148, 31, 0.15);
  padding-bottom: 12px;
}

.pdp-additional-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-additional-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px dashed #fcefe2;
}

.pdp-additional-info li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pdp-additional-info li span:first-child {
  font-weight: 600;
  color: #1e293b;
}

.pdp-additional-info li span:last-child {
  color: #4b5563;
  font-weight: 500;
  text-align: right;
}

.pdp-additional-info li span:last-child a {
  color: var(--theme-red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pdp-additional-info li span:last-child a:hover {
  color: var(--theme-red-dark);
  text-decoration: underline;
}

.pdp-tabs-main {
  flex: 1;
  min-width: 0;
}

.pdp-tabs-content-wrapper {
  background-color: #ffffff;
  border: 1px solid #ede3dd;
  border-radius: 0px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(247, 148, 31, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pdp-tab-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  font-family: 'Jost', 'Plus Jakarta Sans', sans-serif;
}

.pdp-tab-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pdp-features-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #64748b;
  font-size: 15px;
}

.pdp-features-list li {
  position: relative;
  padding-left: 16px;
}

.pdp-features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0f172a;
}

/* ====================================================
   Redesigned PDP Reviews Layout
   ==================================================== */
.pdp-rev-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .pdp-rev-layout {
    flex-direction: column;
    gap: 32px;
  }
}

.pdp-rev-summary-col {
  width: 280px;
  flex-shrink: 0;
  background: #f8fafc;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .pdp-rev-summary-col {
    width: 100%;
  }
}

.pdp-rev-big-score {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  font-family: 'Jost', 'Plus Jakarta Sans', sans-serif;
}

.pdp-rev-big-stars {
  color: #fbbf24;
  font-size: 24px;
  margin: 8px 0;
  letter-spacing: 2px;
}

.pdp-rev-based-on {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}

.pdp-rev-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-rev-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #475569;
}

.pdp-rev-bar-lbl {
  width: 24px;
  text-align: right;
  font-weight: 500;
}

.pdp-rev-bar-track {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.pdp-rev-bar-fill {
  height: 100%;
  background: #fbbf24;
  border-radius: 3px;
}

.pdp-rev-bar-pct {
  width: 36px;
  text-align: right;
  color: #64748b;
}

.pdp-rev-list-col {
  flex: 1;
  min-width: 0;
}

.pdp-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdp-review-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.2s ease;
}

.pdp-review-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pdp-review-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pdp-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.pdp-review-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-review-author-info strong {
  font-size: 16px;
  color: #0f172a;
}

.pdp-review-verified {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.pdp-review-badge-wrap {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

@media (max-width: 480px) {
  .pdp-review-badge-wrap {
    margin-left: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.pdp-review-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 1px;
}

.pdp-review-top-badge {
  font-size: 10px;
  font-weight: 700;
  background: #fef08a;
  color: #b45309;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.pdp-review-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pdp-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.pdp-review-date {
  font-size: 13px;
  color: #94a3b8;
}

.pdp-helpful-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.pdp-helpful-btn:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* ─────────────────────────────────────────────────────────── */
/* ── MODERN CART REDESIGN (THEME-3 Xten Bazar) ──────────────────── */
/* ─────────────────────────────────────────────────────────── */

.luxe-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.luxe-cart-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.luxe-cart-header h1 span {
  font-size: 14px;
  font-weight: 500;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 20px;
}

.luxe-continue-link {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: opacity 0.2s;
}

.luxe-continue-link:hover {
  opacity: 0.7;
}

.luxe-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

@media (max-width: 991px) {
  .luxe-cart-layout {
    grid-template-columns: 1fr;
  }
}

/* --- Cart Items List --- */
.luxe-cart-items-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.luxe-cart-select-all-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.luxe-cart-checkbox-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: block;
}

.luxe-cart-checkbox-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.luxe-cart-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #cbd5e1;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.luxe-cart-checkmark svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.luxe-cart-checkbox-wrap input:checked~.luxe-cart-checkmark {
  background: #0f172a;
  border-color: #0f172a;
}

.luxe-cart-checkbox-wrap input:checked~.luxe-cart-checkmark svg {
  opacity: 1;
  transform: scale(1);
  color: #fff;
}

.luxe-cart-select-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
}

.luxe-bulk-actions {
  display: flex;
  gap: 16px;
}

.luxe-cart-action-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.luxe-cart-action-link:hover {
  color: #0f172a;
}

.luxe-cart-action-link.danger:hover {
  color: #e11d48;
}

.luxe-cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.luxe-cart-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s, opacity 0.3s;
  overflow: hidden;
}

.luxe-cart-item.removing {
  transform: scale(0.95);
  opacity: 0;
}

.luxe-cart-item-inner {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.luxe-cart-item-img {
  width: 100px;
  height: 120px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.luxe-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxe-cart-item-details {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
}

@media (max-width: 768px) {
  .luxe-cart-item-inner {
    flex-wrap: wrap;
    position: relative;
    padding-left: 45px;
  }

  .luxe-cart-item-inner>.luxe-cart-checkbox-wrap {
    position: absolute;
    left: 15px;
    top: 20px;
  }

  .luxe-cart-item-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.luxe-cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.luxe-cart-item-brand {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.luxe-cart-item-name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.luxe-cart-item-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.luxe-cart-item-variants span {
  font-size: 13px;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.luxe-cart-item-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

@media (max-width: 768px) {
  .luxe-cart-item-pricing {
    align-items: flex-start;
  }
}

.luxe-cart-price {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.luxe-cart-price-original {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.luxe-cart-price-original del {
  color: #94a3b8;
}

.luxe-cart-discount {
  color: #10b981;
  font-weight: 600;
}

.luxe-cart-unit-price {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

.luxe-cart-item-controls {
  display: flex;
  align-items: flex-start;
}

.luxe-cart-qty-pill {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  height: 36px;
}

.luxe-cart-qty-pill button {
  background: none;
  border: none;
  color: #0f172a;
  width: 32px;
  height: 100%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxe-cart-qty-pill button:hover:not(:disabled) {
  background: #e2e8f0;
}

.luxe-cart-qty-pill button:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
}

.luxe-cart-qty-pill input {
  width: 32px;
  height: 100%;
  border: none;
  background: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  padding: 0;
  appearance: textfield;
}

.luxe-cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fafbfc;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 12px;
}

.luxe-cart-delivery-info {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.luxe-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.luxe-cart-action-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.luxe-cart-action-btn:hover {
  color: #0f172a;
}

.luxe-cart-action-btn.danger:hover {
  color: #e11d48;
}

.luxe-cart-action-divider {
  width: 1px;
  height: 12px;
  background: #cbd5e1;
}

/* --- Order Summary --- */
.luxe-cart-summary-col {
  position: sticky;
  top: 24px;
}

.luxe-co-sum-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #fef08a;
  /* Gold accent border */
  box-shadow: 0 10px 30px rgba(254, 240, 138, 0.15), 0 4px 12px rgba(15, 23, 42, 0.03);
  padding: 24px;
}

.luxe-co-sum-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.luxe-co-coupon-box {
  margin-bottom: 24px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  padding: 16px;
  border-radius: 12px;
}

.luxe-co-coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.luxe-co-coupon-input {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.luxe-co-coupon-input:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.05);
}

.luxe-co-coupon-btn {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.luxe-co-coupon-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.15);
}

.luxe-cart-coupon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.luxe-cart-coupon-tag {
  background: #fef08a;
  color: #854d0e;
  border: 1px dashed #ca8a04;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.luxe-cart-coupon-tag:hover {
  background: #fde047;
}

.luxe-cart-coupon-msg {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.luxe-cart-coupon-msg.success {
  color: #10b981;
}

.luxe-cart-coupon-msg.error {
  color: #e11d48;
}

.luxe-co-speed-box {
  margin-bottom: 24px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 16px;
}

.luxe-co-speed-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.luxe-co-speed-free {
  font-size: 13px;
  color: #10b981;
  background: #ecfdf5;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.luxe-co-speed-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.luxe-co-speed-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.luxe-co-speed-opt:hover {
  border-color: #94a3b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.luxe-co-speed-opt.active {
  border-color: #0f172a;
  background: #f8fafc;
  box-shadow: 0 0 0 1px #0f172a;
}

.luxe-co-speed-opt input {
  display: none;
}

.luxe-co-speed-opt .opt-text {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.luxe-co-speed-opt .opt-text span {
  font-weight: 400;
  color: #64748b;
  font-size: 13px;
}

.luxe-co-speed-opt .opt-price {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.luxe-co-fee-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}

.luxe-co-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #475569;
}

.luxe-co-fee-row.discount {
  color: #10b981;
  font-weight: 500;
}

.luxe-co-fee-row.total {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed #cbd5e1;
}

.luxe-co-fee-row .highlight {
  color: #10b981;
  font-weight: 600;
}

.luxe-co-coupon-remove {
  background: #fee2e2;
  color: #ef4444;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxe-cart-checkout-btn {
  display: block;
  width: 100%;
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.luxe-cart-checkout-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.3);
}

.luxe-co-secure {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 16px;
}

/* --- Saved For Later --- */
.luxe-saved-section {
  margin-top: 48px;
}

.luxe-saved-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

.luxe-saved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.luxe-saved-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.luxe-saved-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}

.luxe-saved-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.luxe-saved-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxe-saved-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.luxe-saved-card-brand {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.luxe-saved-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  flex: 1;
}

.luxe-saved-card-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.luxe-saved-price {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.luxe-saved-old {
  font-size: 13px;
  color: #94a3b8;
}

.luxe-saved-off {
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
}

.luxe-saved-card-actions {
  display: flex;
  gap: 8px;
}

.luxe-saved-card-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.luxe-saved-card-actions .btn-move {
  background: #0f172a;
  color: #fff;
  border: none;
}

.luxe-saved-card-actions .btn-move:hover {
  background: #1e293b;
}

.luxe-saved-card-actions .btn-remove {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.luxe-saved-card-actions .btn-remove:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Empty State */
.luxe-cart-empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.luxe-cart-empty-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.luxe-cart-empty h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px 0;
}

.luxe-cart-empty p {
  color: #64748b;
}

/* ─────────────────────────────────────────────────────────── */
/* ── MODERN CHECKOUT REDESIGN (THEME-3 Xten Bazar) ──────────────── */
/* ─────────────────────────────────────────────────────────── */

.luxe-co-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.luxe-co-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Steps Tracker */
.luxe-co-steps {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.luxe-co-steps::-webkit-scrollbar {
  height: 4px;
}

.luxe-co-steps::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.luxe-co-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.luxe-co-step.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.luxe-co-step .step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s;
}

.luxe-co-step.active .step-num {
  background: #fff;
  color: #0f172a;
}

.luxe-co-items-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.luxe-co-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  padding: 24px;
  animation: fadeIn 0.3s ease-out;
}

.luxe-co-card.hidden {
  display: none;
}

.luxe-co-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.luxe-co-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.luxe-co-add-addr-btn {
  background: #0f172a;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.luxe-co-add-addr-btn.outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid #0f172a;
}

.luxe-co-add-addr-btn:hover {
  opacity: 0.85;
}

/* Address Grid */
.luxe-co-addr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.luxe-co-empty-addr {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
}

.luxe-co-empty-addr .empty-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.luxe-co-empty-addr p {
  color: #64748b;
  margin: 0 0 16px 0;
}

.luxe-addr-card {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  gap: 16px;
  background: #fff;
}

.luxe-addr-card:hover {
  border-color: #cbd5e1;
}

.luxe-addr-card.selected {
  border-color: #0f172a;
  background: #f8fafc;
  box-shadow: 0 0 0 1px #0f172a;
}

.luxe-addr-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.luxe-addr-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: all 0.2s;
}

.luxe-addr-radio svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.luxe-addr-card.selected .luxe-addr-radio {
  background: #0f172a;
  border-color: #0f172a;
}

.luxe-addr-card.selected .luxe-addr-radio svg {
  opacity: 1;
  transform: scale(1);
}

.luxe-addr-body {
  flex: 1;
}

.luxe-addr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.luxe-addr-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.luxe-addr-tags {
  display: flex;
  gap: 6px;
}

.luxe-addr-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: #e2e8f0;
  color: #475569;
  padding: 2px 6px;
  border-radius: 4px;
}

.luxe-addr-tag-default {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: #fef08a;
  color: #854d0e;
  padding: 2px 6px;
  border-radius: 4px;
}

.luxe-addr-line {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 12px;
}

.luxe-addr-phone {
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.luxe-addr-actions {
  display: flex;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
}

.luxe-addr-action-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.luxe-addr-action-btn:hover {
  color: #0f172a;
}

.luxe-addr-action-btn.danger:hover {
  color: #e11d48;
}


/* Payment Grid */
.luxe-pm-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.luxe-pm-card {
  position: relative;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
  background: #fff;
}

.luxe-pm-card:hover {
  border-color: #cbd5e1;
}

.luxe-pm-card.selected {
  border-color: #0f172a;
  background: #f8fafc;
  box-shadow: 0 0 0 1px #0f172a;
}

.luxe-pm-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.luxe-pm-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  transition: all 0.2s;
}

.luxe-pm-radio svg {
  width: 12px;
  height: 12px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s;
}

.luxe-pm-card.selected .luxe-pm-radio {
  background: #0f172a;
  border-color: #0f172a;
}

.luxe-pm-card.selected .luxe-pm-radio svg {
  opacity: 1;
  transform: scale(1);
}

.luxe-pm-body {
  flex: 1;
}

.luxe-pm-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.luxe-pm-desc {
  font-size: 13px;
  color: #64748b;
}

.luxe-pm-icon {
  font-size: 24px;
}


/* Review Grid */
.luxe-co-review-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.luxe-co-review-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.luxe-co-review-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.luxe-co-review-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.luxe-co-review-val {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}


/* Buttons */
.luxe-co-btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

.luxe-co-back-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 10px 16px;
  transition: color 0.2s;
}

.luxe-co-back-btn:hover {
  color: #0f172a;
}

.luxe-co-btn.primary {
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.luxe-co-btn.primary:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-1px);
}

.luxe-co-btn.primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.luxe-co-note {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef08a;
  padding: 12px 16px;
  border-radius: 8px;
  color: #854d0e;
}

.luxe-co-error-msg {
  color: #e11d48;
  font-size: 14px;
  margin-top: 12px;
  text-align: right;
}

/* Fix Order Summary Shipping Selector in Checkout */
.luxe-co-ship-to {
  margin-top: -12px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.luxe-co-ship-to-line {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.luxe-co-change-addr {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* ─────────────────────────────────────────────────────────── */
/* ── Xten Bazar MODAL & FORMS (THEME-3 Xten Bazar) ────────────────────── */
/* ─────────────────────────────────────────────────────────── */

.luxe-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.3s;
}

.luxe-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.luxe-modal-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(0) scale(1);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.luxe-modal-overlay.hidden .luxe-modal-card {
  transform: translateY(20px) scale(0.95);
}

.luxe-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 16px;
  border-bottom: 1px solid #f1f5f9;
}

.luxe-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.luxe-modal-close {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxe-modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.luxe-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
}

/* Form Grid */
.luxe-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.luxe-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.luxe-form-field.full-width {
  grid-column: 1 / -1;
}

.luxe-form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.luxe-form-field input,
.luxe-form-field select {
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
  transition: all 0.2s;
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
}

.luxe-form-field input:focus,
.luxe-form-field select:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.05);
}

.luxe-form-field input::placeholder {
  color: #94a3b8;
}

/* Modal Actions */
.luxe-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.luxe-btn-outline {
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #475569;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.luxe-btn-outline:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #94a3b8;
}

.luxe-btn-primary {
  padding: 12px 24px;
  background: #0f172a;
  border: none;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.luxe-btn-primary:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* ─────────────────────────────────────────────────────────── */
/* ── HEADER USER PROFILE & LOGIN (THEME-3) ────────────────── */
/* ─────────────────────────────────────────────────────────── */

.header-user-card,
.header-login-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px 16px;
  background: #f8fafc;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-user-card:hover,
.header-login-btn:hover {
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transform: translateY(-1px);
}

.header-user-avatar {
  width: 36px;
  height: 36px;
  background: #0f172a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-user-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.header-user-id {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 2px;
}

.header-login-btn svg {
  color: #0f172a;
}

.header-login-btn .login-text {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

@media (max-width: 991px) {

  .header-user-card,
  .header-login-btn {
    display: none;
    /* Hide on mobile, they use the drawer */
  }
}

/* ==========================================================================
   Xten Bazar PROFILE DASHBOARD REDESIGN
   ========================================================================== */

/* Layout */
.luxe-profile-layout {
  background-color: var(--luxe-color-bg);
  min-height: 100vh;
}

.luxe-profile-shell {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .luxe-profile-shell {
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.luxe-profile-sidebar {
  background: var(--luxe-color-surface);
  border: 1px solid var(--luxe-color-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.luxe-profile-user-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--luxe-color-border);
}

.luxe-profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--luxe-color-primary), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.luxe-profile-user-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--luxe-color-text);
  margin: 0;
}

.luxe-profile-user-info p {
  font-size: 0.875rem;
  color: var(--luxe-color-text-dim);
  margin: 0;
}

.luxe-profile-since {
  font-size: 0.75rem;
  color: var(--luxe-color-primary);
  background: rgba(59, 130, 246, 0.1);
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
  margin-top: 0.25rem;
  display: inline-block;
}

.luxe-profile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.luxe-profile-nav .luxe-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: var(--luxe-color-text-dim);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.luxe-profile-nav .luxe-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--luxe-color-text);
}

.luxe-profile-nav .luxe-nav-item.is-active {
  background: rgba(59, 130, 246, 0.1);
  color: var(--luxe-color-primary);
}

.luxe-profile-nav .luxe-nav-item.is-active .nav-icon {
  stroke: var(--luxe-color-primary);
}

.luxe-nav-item .nav-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  opacity: 0.8;
}

.luxe-nav-divider {
  height: 1px;
  background: var(--luxe-color-border);
  margin: 0.5rem 0;
}

.luxe-nav-item.logout-link:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* Dashboard Main */
.luxe-profile-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.luxe-tab-panel.hidden {
  display: none;
}

/* Dashboard Hero */
.luxe-dash-hero {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--luxe-color-border);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.luxe-dash-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.luxe-hero-content {
  position: relative;
  z-index: 1;
}

.luxe-dash-kicker {
  font-size: 0.875rem;
  color: var(--luxe-color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.luxe-dash-hero h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  font-family: var(--font-outfit);
}

.luxe-dash-sub {
  color: var(--luxe-color-text-dim);
  font-size: 0.9375rem;
  margin: 0;
}

.luxe-hero-badge {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(202, 138, 4, 0.3);
  z-index: 1;
}

.luxe-profile-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.luxe-profile-section-head h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--luxe-color-text);
  margin: 0;
  font-family: var(--font-outfit);
}

/* Stats Grid */
.luxe-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.luxe-stat-card {
  background: var(--luxe-color-surface);
  border: 1px solid var(--luxe-color-border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}

.luxe-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.luxe-stat-info strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--luxe-color-text);
  font-family: var(--font-outfit);
  line-height: 1.2;
}

.luxe-stat-info span {
  font-size: 0.875rem;
  color: var(--luxe-color-text-dim);
}

.luxe-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxe-color-primary);
}

/* Activity Grid */
.luxe-activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.luxe-activity-card {
  background: var(--luxe-color-surface);
  border: 1px solid var(--luxe-color-border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.luxe-activity-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxe-color-text);
}

.luxe-activity-card.luxe-act-success .luxe-activity-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.luxe-activity-card.luxe-act-warning .luxe-activity-icon {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.luxe-activity-card.luxe-act-danger .luxe-activity-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.luxe-activity-info strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--luxe-color-text);
  display: block;
  line-height: 1.2;
}

.luxe-activity-info span {
  font-size: 0.8125rem;
  color: var(--luxe-color-text-dim);
}

/* Info Card & Details */
.luxe-profile-info-card {
  background: var(--luxe-color-surface);
  border: 1px solid var(--luxe-color-border);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.luxe-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.luxe-card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--luxe-color-text);
  margin: 0;
}

.luxe-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .luxe-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.luxe-detail-item dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--luxe-color-text-dim);
  margin-bottom: 0.5rem;
}

.luxe-detail-item dd {
  margin: 0;
  font-size: 1rem;
  color: var(--luxe-color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.luxe-verify-badge {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 1rem;
  font-weight: 600;
}

.luxe-verify-badge.is-verified {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.luxe-verify-badge.is-unverified {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

/* Edit Forms */
.luxe-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .luxe-form-grid {
    grid-template-columns: 1fr;
  }
}

.luxe-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.luxe-form-field label {
  font-size: 0.875rem;
  color: var(--luxe-color-text-dim);
  font-weight: 500;
}

.luxe-form-field input,
.luxe-form-field select,
.luxe-review-input,
.luxe-review-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--luxe-color-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--luxe-color-text);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
  width: 100%;
}

.luxe-form-field input:focus,
.luxe-form-field select:focus,
.luxe-review-input:focus,
.luxe-review-select:focus {
  border-color: var(--luxe-color-primary);
  outline: none;
}

.luxe-form-flex {
  display: flex;
  gap: 0.5rem;
}

.luxe-btn-verify {
  background: rgba(59, 130, 246, 0.1);
  color: var(--luxe-color-primary);
  border: none;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
}

.luxe-btn-verify:hover {
  background: rgba(59, 130, 246, 0.2);
}

.luxe-form-actions {
  display: flex;
  gap: 1rem;
}

/* Global Buttons */
.luxe-btn-primary {
  background: var(--luxe-color-primary);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.luxe-btn-primary:hover {
  background: #2563eb;
}

.luxe-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--luxe-color-text);
  border: 1px solid var(--luxe-color-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s;
}

.luxe-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.luxe-btn-edit {
  background: transparent;
  color: var(--luxe-color-primary);
  border: 1px solid var(--luxe-color-border);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.luxe-btn-edit:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--luxe-color-primary);
}

.luxe-btn-delete {
  background: transparent;
  color: #ef4444;
  border: 1px solid var(--luxe-color-border);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.luxe-btn-delete:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

/* Address Grid */
.luxe-profile-addr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.luxe-address-empty {
  grid-column: 1 / -1;
  padding: 3rem;
  text-align: center;
  color: var(--luxe-color-text-dim);
  background: var(--luxe-color-surface);
  border: 1px dashed var(--luxe-color-border);
  border-radius: 1rem;
}

/* Rewards */
.luxe-rewards-hero {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--luxe-color-border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .luxe-rewards-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

.luxe-rewards-circle-wrap {
  position: relative;
  z-index: 1;
}

.luxe-rewards-circle-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--luxe-color-primary);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3), inset 0 4px 12px rgba(0, 0, 0, 0.5);
}

.luxe-rewards-pts-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-outfit);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.luxe-rewards-pts-lbl {
  font-size: 0.875rem;
  color: var(--luxe-color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.luxe-rewards-hero-content {
  flex: 1;
  z-index: 1;
}

.luxe-rewards-tier-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
  font-family: var(--font-outfit);
}

.luxe-rewards-lead-line {
  color: var(--luxe-color-text-dim);
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
}

.luxe-rewards-progress-wrap {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.luxe-rewards-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.luxe-rewards-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--luxe-color-primary), #818cf8);
  border-radius: 4px;
  transition: width 1s ease-out;
}

.luxe-rewards-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--luxe-color-text-dim);
  font-weight: 600;
}

.luxe-rewards-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  .luxe-rewards-grid {
    grid-template-columns: 1fr;
  }
}

.luxe-rewards-card {
  background: var(--luxe-color-surface);
  border: 1px solid var(--luxe-color-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.luxe-rewards-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--luxe-color-text);
  margin: 0 0 1rem 0;
}

.luxe-rewards-history-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--luxe-color-border);
}

.luxe-rewards-history-row:last-child {
  border-bottom: none;
}

.luxe-rewards-history-desc {
  font-weight: 500;
  color: var(--luxe-color-text);
}

.luxe-rewards-history-date {
  font-size: 0.8125rem;
  color: var(--luxe-color-text-dim);
  margin-top: 0.25rem;
}

.luxe-rewards-history-pts {
  font-weight: 700;
  color: #22c55e;
}

.luxe-rewards-empty {
  color: var(--luxe-color-text-dim);
  font-style: italic;
}

.luxe-rewards-redeem-text {
  font-size: 0.9375rem;
  color: var(--luxe-color-text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.luxe-rewards-redeem-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.luxe-rewards-redeem-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--luxe-color-border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--luxe-color-text);
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

.luxe-rewards-redeem-input:focus {
  border-color: var(--luxe-color-primary);
  outline: none;
}

/* Reviews */
.luxe-review-list {
  display: grid;
  gap: 1.5rem;
}

.luxe-review-card {
  background: var(--luxe-color-surface);
  border: 1px solid var(--luxe-color-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.luxe-review-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--luxe-color-border);
}

.luxe-review-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.luxe-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxe-review-meta {
  flex: 1;
}

.luxe-review-meta strong {
  display: block;
  font-size: 1rem;
  color: var(--luxe-color-text);
  margin-bottom: 0.25rem;
}

.luxe-review-date {
  font-size: 0.8125rem;
  color: var(--luxe-color-text-dim);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.luxe-review-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.luxe-review-status--approved {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.luxe-review-status--pending {
  background: rgba(234, 179, 8, 0.1);
  color: #eab308;
}

.luxe-review-body {
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 0.75rem;
}

.luxe-review-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.luxe-review-stars .stars {
  color: #eab308;
  letter-spacing: 2px;
}

.luxe-review-stars .rating-label {
  font-size: 0.8125rem;
  color: var(--luxe-color-text-dim);
  font-weight: 600;
}

.luxe-review-text {
  font-size: 0.9375rem;
  color: var(--luxe-color-text);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.luxe-review-write-prompt {
  background: rgba(59, 130, 246, 0.05);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(59, 130, 246, 0.3);
}

.luxe-review-prompt-text {
  font-size: 0.875rem;
  color: var(--luxe-color-primary);
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.luxe-review-form-row {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 575px) {
  .luxe-review-form-row {
    flex-direction: column;
  }
}

.luxe-review-empty {
  padding: 3rem;
  text-align: center;
  background: var(--luxe-color-surface);
  border: 1px dashed var(--luxe-color-border);
  border-radius: 1.5rem;
}

.luxe-review-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.luxe-review-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--luxe-color-text);
  margin: 0 0 0.5rem 0;
}

.luxe-review-empty p {
  font-size: 0.9375rem;
  color: var(--luxe-color-text-dim);
  margin: 0;
}

/* =====================================================================
   Theme 3 — Premium Seller Storefront Layout
   ===================================================================== */
.t1-seller-page {
  background-color: #FFFAF3 !important;
}

.t1-seller-hero {
  position: relative;
  background-color: #f7e6d5;
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.t1-seller-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 10, 0.1) 0%, rgba(26, 18, 10, 0.6) 100%);
  z-index: 1;
}

.t1-seller-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.t2-seller-info-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(247, 148, 31, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(247, 148, 31, 0.06);
  transform: translateY(30px);
}

@media (max-width: 768px) {
  .t2-seller-info-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px;
    transform: translateY(20px);
  }
}

.t1-seller-logo {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(247, 148, 31, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(247, 148, 31, 0.05);
}

.t1-seller-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t1-seller-logo span {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--theme-red);
  font-family: 'Outfit', sans-serif;
}

.t1-seller-verified {
  display: inline-flex;
  align-items: center;
  background: rgba(238, 64, 61, 0.08);
  color: var(--theme-red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid rgba(238, 64, 61, 0.12);
  margin-bottom: 8px;
}

.t1-seller-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}

.t1-seller-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 16px;
}

.t1-seller-stats {
  display: flex;
  gap: 32px;
}

@media (max-width: 768px) {
  .t1-seller-stats {
    justify-content: center;
  }
}

.t1-seller-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t1-seller-stats .stat strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
}

.t1-seller-stats .stat span {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.t1-seller-main {
  padding-top: 80px;
  padding-bottom: 60px;
}

.t1-seller-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.t1-seller-detail-box {
  background: #ffffff;
  border: 1px solid rgba(247, 148, 31, 0.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(247, 148, 31, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.t1-seller-detail-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(247, 148, 31, 0.05);
}

.t1-seller-detail-box h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  border-bottom: 1px dashed rgba(247, 148, 31, 0.15);
  padding-bottom: 12px;
}

.t1-seller-detail-box p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 12px;
}

.t1-seller-detail-box p strong {
  color: var(--text);
  font-weight: 600;
}

.t1-seller-detail-box p a {
  color: var(--theme-red);
  text-decoration: none;
  font-weight: 600;
}

.t1-seller-detail-box p a:hover {
  text-decoration: underline;
}

.t1-seller-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t1-seller-tag {
  background: #fffbf7;
  border: 1px solid rgba(247, 148, 31, 0.12);
  color: #f7941f;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  transition: all 0.2s ease;
}

.t1-seller-tag:hover {
  background: #f7941f;
  color: #fff;
  border-color: #f7941f;
}

.t2-seller-block-head {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(247, 148, 31, 0.1);
  padding-bottom: 14px;
}

.t2-seller-block-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.t1-empty-msg {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border: 1px dashed rgba(247, 148, 31, 0.15);
  border-radius: 16px;
}

/* ==========================================================================
   Theme-3 mobile app chrome (bottom tab bar + native home)
   ========================================================================== */

.t3-app-header-btn,
.t3-app-tabbar {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --t3-app-gold: #d4a017;
    --t3-app-gold-soft: #f4e3a3;
    --t3-app-ink: #2b2b2b;
    --t3-app-muted: #9aa0a6;
    --t3-app-bar-h: 64px;
  }

  html {
    overflow-x: hidden;
  }

  body {
    background: #fffaf3;
    padding-bottom: calc(var(--t3-app-bar-h) + env(safe-area-inset-bottom, 0px));
  }

  body.t2-login-page {
    padding-bottom: 0;
    background: #f7f5f0;
  }

  body.t2-login-page .t2-login-main {
    min-height: 0;
    padding: 20px 16px 24px;
    justify-content: flex-start;
  }

  body.t2-login-page .t2-login-footnote {
    margin: 16px 0 0;
  }

  .header-promo-bar,
  .navbar-v3,
  .header-center,
  .header-user-card,
  .header-login-btn {
    display: none !important;
  }

  .mobile-menu-toggle-v3 {
    display: inline-flex !important;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #fff;
    border-bottom: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  .header-inner {
    padding: 10px 4px;
    gap: 8px;
    min-height: 56px;
  }

  .header-logo-img {
    height: 36px;
  }

  .logo-word {
    font-size: 22px;
    letter-spacing: 0.04em;
  }

  .header-right {
    gap: 4px;
  }

  .t3-app-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #1f2937;
    text-decoration: none;
    cursor: pointer;
  }

  .t3-app-header-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #f7941f;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
  }

  .t3-app-tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    height: calc(var(--t3-app-bar-h) + env(safe-area-inset-bottom, 0px));
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #ececec;
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06);
  }

  .t3-app-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    text-decoration: none;
    color: var(--t3-app-muted);
    -webkit-tap-highlight-color: transparent;
  }

  .t3-app-tab__icon {
    display: flex;
    width: 24px;
    height: 24px;
  }

  .t3-app-tab__icon svg {
    width: 24px;
    height: 24px;
  }

  .t3-app-tab__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .t3-app-tab.is-active {
    color: var(--t3-app-gold);
  }

  .t3-app-tab.is-active .t3-app-tab__label {
    color: var(--t3-app-ink);
    font-weight: 700;
  }

  .scroll-top-btn {
    bottom: calc(var(--t3-app-bar-h) + 16px + env(safe-area-inset-bottom, 0px));
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .scroll-top-btn__ring {
    display: none;
  }

  .footer {
    display: none;
  }

  .container {
    width: min(100% - 24px, 1440px);
  }

  /* Home: app-like content */
  body.t3-page-home .hero-block {
    padding: 0;
  }

  body.t3-page-home .hero-banner-v3 {
    margin: 12px 0 8px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff8ec 0%, #fdf3e3 100%);
  }

  body.t3-page-home .hero-banner-inner-v3 {
    padding: 22px 18px 18px;
    gap: 12px;
  }

  body.t3-page-home .hero-kicker-v3 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  body.t3-page-home .hero-title-v3 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  body.t3-page-home .hero-title-v3 .highlight {
    padding: 0 6px;
    border-radius: 8px;
  }

  body.t3-page-home .hero-lede-v3 {
    display: none;
  }

  body.t3-page-home .hero-actions-v3 {
    margin-top: 4px;
  }

  body.t3-page-home .btn-shop-now-v3 {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 999px;
  }

  body.t3-page-home .hero-banner-visual-v3 {
    justify-content: center;
    width: 100%;
    padding: 6px 0 2px;
  }

  body.t3-page-home .image-wrapper {
    display: inline-flex;
    padding: 10px;
    margin: 0 auto;
  }

  body.t3-page-home .hero-img-v3 {
    width: 180px;
    height: 210px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }

  body.t3-page-home .image-border-v3 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    border-width: 1.5px;
  }

  body.t3-page-home .hero-dots-v3 {
    bottom: 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 6px;
  }

  body.t3-page-home .category-marquee-v3 {
    margin: 4px 0 8px;
    padding: 10px 0;
  }

  body.t3-page-home .benefits-section-v3 {
    padding: 8px 0 4px;
  }

  body.t3-page-home .benefits-box-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  }

  body.t3-page-home .benefit-divider-v3 {
    display: none;
  }

  body.t3-page-home .benefit-item-v3 {
    gap: 8px;
    align-items: flex-start;
  }

  body.t3-page-home .benefit-icon-v3 {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  body.t3-page-home .benefit-info-v3 h3 {
    font-size: 13px;
    margin: 0 0 2px;
  }

  body.t3-page-home .benefit-info-v3 p {
    font-size: 11px;
    line-height: 1.35;
    margin: 0;
  }

  body.t3-page-home .top-categories-v3 {
    padding: 8px 0 20px;
    background: transparent;
  }

  body.t3-page-home .top-cat-header-v3 {
    margin-bottom: 12px;
  }

  body.t3-page-home .top-cat-title {
    font-size: 20px;
  }

  body.t3-page-home .top-cat-card-v3 {
    border-radius: 16px;
  }

  body.t3-page-home .promo-banner-v3 {
    padding-top: 4px;
  }

  body.t3-page-home .promo-banner-grid-v3 {
    gap: 12px;
  }

  body.t3-page-home .banner-item {
    border-radius: 16px;
    min-height: 180px;
  }

  body.t3-page-home .container.page {
    padding-top: 8px;
  }

  body.t3-page-home .split-block-title,
  body.t3-page-home .block-head h2 {
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  body.t3-page-home .split-block.split-block--listed {
    margin-top: 8px;
  }

  body.t3-page-home .split-block-main {
    padding: 14px 12px 16px;
    border-radius: 16px;
  }

  body.t3-page-home .split-block-head {
    margin-bottom: 12px;
  }

  body.t3-page-home .split-block-viewall {
    font-size: 13px;
  }

  body.t3-page-home .split-block-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    padding: 0;
  }

  body.t3-page-home .product-grid.five,
  body.t3-page-home .product-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  body.t3-page-home .split-product-v2 .sp-link {
    transform: none;
  }

  body.t3-page-home .split-product-v2 .sp-image-wrap {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  body.t3-page-home .split-product-v2 .sp-info-box {
    margin: 8px 0 0;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    gap: 6px;
  }

  body.t3-page-home .split-product-v2 .sp-rating-row,
  body.t3-page-home .split-product-v2 .sp-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  body.t3-page-home .split-product-v2 .sp-title {
    font-size: 13px;
    line-height: 1.35;
    width: 100%;
  }

  body.t3-page-home .split-product-v2 .sp-current-price {
    font-size: 14px;
  }

  body.t3-page-home .split-product-v2 .sp-stars {
    font-size: 10px;
  }

  body.t3-page-home .split-product-v2 .sp-review-count,
  body.t3-page-home .split-product-v2 .sp-old-price {
    font-size: 11px;
  }

  body.t3-page-home .pcard--v3 {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
  }

  body.t3-page-home .deal-week,
  body.t3-page-home .testimonial-section,
  body.t3-page-home .newsletter-section {
    margin-left: 0;
    margin-right: 0;
  }

  body.t3-page-home .deal-week__inner {
    border-radius: 18px;
  }

  body.t3-page-home .newsletter-wrapper {
    border-radius: 18px;
    overflow: hidden;
  }

  body.t3-page-home .testimonial-wrapper {
    border-radius: 18px;
    overflow: hidden;
  }

  /* Product cards on touch devices */
  .pcard--v3 .pcard__side-actions {
    opacity: 1;
    transform: none;
  }

  .pcard--v3 .pcard__cart-overlay {
    display: none;
  }

  .pcard--v3 .pcard__side-btn {
    width: 32px;
    height: 32px;
  }

  .product-grid.four,
  .product-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  /* —— Product list —— */
  .t1-plp-page {
    padding: 12px 0 24px;
  }

  .t1-plp-header {
    margin-bottom: 14px;
  }

  .t1-plp-title {
    font-size: 22px;
  }

  .t1-plp-breadcrumb {
    font-size: 12px;
    margin-top: 6px;
  }

  .t1-plp-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .t1-plp-results-count {
    font-size: 13px;
  }

  .t1-plp-toolbar-actions {
    width: 100%;
    gap: 8px;
  }

  .t1-plp-filter-toggle {
    flex: 0 0 auto;
    height: 40px;
    border-radius: 10px;
  }

  .t1-plp-sort {
    flex: 1;
    min-width: 0;
  }

  .t1-plp-sort select {
    width: 100%;
    height: 40px;
    padding-right: 32px;
    background-position: right 12px center;
  }

  .t1-plp-view-toggles {
    display: none;
  }

  .t1-plp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .t1-plp-grid:not(.list-view) .pcard--v3 .pcard__image-wrap {
    aspect-ratio: 1 / 1.15;
    border-radius: 12px 12px 0 0;
  }

  .t1-plp-grid .pcard--v3 {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .t1-plp-grid .pcard__body {
    padding: 8px 8px 10px;
  }

  .t1-plp-grid .pcard__title {
    font-size: 11px;
    line-height: 1.35;
  }

  .t1-plp-sidebar {
    padding-bottom: calc(var(--t3-app-bar-h, 64px) + env(safe-area-inset-bottom, 0px));
  }

  /* —— Product detail —— */
  body.t3-page-pdp .t1-breadcrumb {
    margin: 10px auto 8px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.t3-page-pdp .t1-product-container {
    gap: 16px;
    margin-bottom: 24px;
  }

  body.t3-page-pdp .t1-product-gallery {
    flex-direction: column;
    gap: 10px;
  }

  body.t3-page-pdp .t1-gallery-main {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 1 / 1.15;
  }

  body.t3-page-pdp .t1-gallery-thumbs {
    flex-direction: row;
    max-height: none;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 6px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }

  body.t3-page-pdp .t1-thumb-btn {
    width: 56px;
    height: 68px;
    border-radius: 10px;
  }

  body.t3-page-pdp .pdp-title {
    font-size: 22px;
    line-height: 1.3;
  }

  body.t3-page-pdp .pdp-price-current {
    font-size: 24px;
  }

  body.t3-page-pdp .pdp-price-old {
    font-size: 16px;
  }

  body.t3-page-pdp .pdp-desc-snippet {
    font-size: 14px;
  }

  body.t3-page-pdp .pdp-actions-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px 48px;
    grid-template-areas:
      "qty wish share"
      "cart cart cart";
    gap: 8px;
  }

  body.t3-page-pdp .pdp-qty-control {
    grid-area: qty;
    width: 100%;
    justify-content: space-between;
  }

  body.t3-page-pdp .pdp-btn-add-cart {
    grid-area: cart;
    width: 100%;
    min-width: 0;
  }

  body.t3-page-pdp .pdp-btn-icon.pcard__wish-toggle {
    grid-area: wish;
  }

  body.t3-page-pdp .pdp-btn-icon:not(.pcard__wish-toggle) {
    grid-area: share;
  }

  body.t3-page-pdp .pdp-badges-row {
    gap: 8px;
  }

  body.t3-page-pdp .pdp-badge-item {
    flex: 1 1 calc(50% - 8px);
    font-size: 12px;
    padding: 8px 10px;
  }

  body.t3-page-pdp .pdp-additional-info,
  body.t3-page-pdp .pdp-tabs-content-wrapper {
    padding: 16px;
  }

  body.t3-page-pdp .t1-product-tabs-section.container {
    margin-bottom: 28px;
  }

  body.t3-page-pdp .pdp-tabs-layout {
    margin-top: 8px;
  }

  body.t3-page-pdp .pdp-rev-big-score {
    font-size: 36px;
  }

  body.t3-page-pdp .block.block--products {
    padding-bottom: 8px;
  }

  body.t3-page-pdp .block-head h2 {
    font-size: 18px;
  }
}
