:root {
  --color-primary: #ff4d8d;
  --color-primary-strong: #d92f71;
  --color-secondary: #5e5ce6;
  --color-tertiary: #ff9f43;
  --color-cyan: #2dc7ff;
  --color-accent: #ffe0ef;
  --color-accent-strong: #ffd1e5;
  --color-bg: #f7f7ff;
  --color-surface: #ffffff;
  --color-border: #eadcf2;
  --color-text: #231629;
  --color-muted: #6f5f74;
  --color-success: #0d8b5d;
  --color-danger: #ba3030;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(36, 16, 30, 0.06);
  --shadow-md: 0 10px 24px rgba(36, 16, 30, 0.09);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", "Noto Sans", Arial, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(1200px 480px at 2% -8%, rgba(255, 77, 141, 0.2), transparent 72%),
    radial-gradient(1100px 420px at 98% -8%, rgba(94, 92, 230, 0.18), transparent 72%),
    radial-gradient(900px 260px at 50% -12%, rgba(45, 199, 255, 0.09), transparent 70%),
    var(--color-bg);
}

a {
  color: var(--color-primary-strong);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 62%, var(--color-cyan) 100%);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(94, 92, 230, 0.26);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--color-primary-strong) 0%, #3f4ad8 55%, #23b9ef 100%);
  border-color: transparent;
  color: #fff;
}

.btn-favorite {
  background: linear-gradient(135deg, #ff5f8f 0%, #ff8f4a 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 95, 143, 0.28);
}

.btn-favorite:hover,
.btn-favorite:focus {
  background: linear-gradient(135deg, #e53f73 0%, #f07522 100%);
  border-color: transparent;
  color: #fff;
}

.btn-compare {
  background: linear-gradient(135deg, #5e5ce6 0%, #2dc7ff 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(94, 92, 230, 0.28);
}

.btn-compare:hover,
.btn-compare:focus {
  background: linear-gradient(135deg, #4d49d0 0%, #18b4ef 100%);
  border-color: transparent;
  color: #fff;
}

.product-actions-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.product-action-form {
  margin: 0;
  min-width: 0;
}

.btn-action-mini {
  width: 100%;
  min-width: 0;
  height: 34px;
  border-radius: 10px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.btn-action-mini .action-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.product-actions-detail {
  max-width: 360px;
}

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

.form-control:focus,
.form-select:focus {
  border-color: color-mix(in srgb, var(--color-primary) 45%, #fff 55%);
  box-shadow: 0 0 0 0.25rem rgba(182, 106, 163, 0.2);
}

.store-body {
  --color-primary: var(--store-primary, #ff4d8d);
  --color-primary-strong: color-mix(in srgb, var(--color-primary) 72%, #5c2d49 28%);
  --color-secondary: color-mix(in srgb, var(--color-primary) 20%, #5e5ce6 80%);
  --color-tertiary: color-mix(in srgb, var(--color-primary) 18%, #ff9f43 82%);
  --color-cyan: color-mix(in srgb, var(--color-primary) 16%, #2dc7ff 84%);
  --color-accent: color-mix(in srgb, var(--color-primary) 18%, #fff 82%);
  --color-accent-strong: color-mix(in srgb, var(--color-primary) 28%, #fff 72%);
}

.store-shipping-bar {
  background: linear-gradient(90deg, #25124a 0%, #3b1f72 42%, #70206a 70%, #9b3a63 100%);
  color: #fff;
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.store-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(150%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 1200;
}

.store-utility {
  background: #fff;
}

.store-topline {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  min-height: 90px;
  gap: var(--space-4);
}

.store-search {
  width: min(100%, 520px);
}

.store-search-panel {
  display: none;
  justify-content: center;
  padding: 0 0 12px;
}

.store-search-inline {
  width: min(100%, 980px);
}

.store-header.is-search-open .store-search-panel {
  display: flex;
}

.store-header.is-search-open .store-nav {
  display: none;
}

.store-top-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.store-mobile-actions {
  display: none;
  align-items: center;
  gap: 6px;
}

.store-mobile-action-btn {
  border: 0;
  background: transparent;
  color: #18161b;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-mobile-action-btn:hover,
.store-mobile-action-btn:focus-visible {
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.12), rgba(94, 92, 230, 0.12));
  color: var(--color-primary-strong);
}

.store-search-group > .form-control {
  border-right: 0;
}

.store-camera-trigger {
  border-left: 0;
  border-right: 0;
  min-width: 44px;
  color: #4a3d51;
}

.store-camera-trigger:hover,
.store-camera-trigger:focus {
  color: var(--color-primary-strong);
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.1), rgba(94, 92, 230, 0.1));
}

.store-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.store-logo-main {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(120deg, var(--color-primary-strong) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.store-logo-sub {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--color-primary-strong) 68%, #5b4f61 32%);
  font-style: italic;
}

.store-top-links {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.store-top-link {
  color: #221f24;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  white-space: nowrap;
}

.store-top-link + .store-top-link {
  border-left: 1px solid #e7e0ea;
}

.store-top-link:hover {
  color: var(--color-primary-strong);
}

.store-top-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.store-icon-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 58px;
  color: #18161b;
  text-decoration: none;
  border-radius: 10px;
  padding: 6px 8px;
  transition: background-color 140ms ease, color 140ms ease;
  border: 0;
  background: transparent;
}

.store-icon-link:hover {
  color: var(--color-primary-strong);
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.12), rgba(94, 92, 230, 0.12));
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-icon-label {
  font-size: 0.73rem;
  font-weight: 500;
  color: #1c1920;
  line-height: 1;
}

.store-icon-badge {
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  border-radius: 999px;
  position: absolute;
  top: 2px;
  right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  line-height: 1;
}

.store-icon-badge.is-empty {
  background: #e4deeb;
  color: #6f5f74;
}

.store-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background-color 140ms ease, color 140ms ease;
}

.store-cart-link:hover {
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.14), rgba(94, 92, 230, 0.14));
  color: var(--color-primary-strong) !important;
}

.store-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background-color 140ms ease, color 140ms ease;
}

.store-pill-link:hover {
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.14), rgba(94, 92, 230, 0.14));
  color: var(--color-primary-strong) !important;
}

.store-pill-badge {
  min-width: 20px;
  height: 20px;
  padding-inline: 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-cyan));
  color: #fff;
  line-height: 1;
}

.store-pill-badge.is-empty {
  background: #e4deeb;
  color: #6f5f74;
}

.store-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-cart-badge {
  min-width: 20px;
  height: 20px;
  padding-inline: 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  line-height: 1;
}

.store-cart-badge.is-empty {
  background: #e4deeb;
  color: #6f5f74;
}

.store-nav {
  background: linear-gradient(90deg, #fff 0%, #fff7fc 100%);
  position: relative;
  z-index: 25;
  overflow: visible;
}

.store-nav-mobile {
  display: none;
  padding: 8px 0;
}

.store-hamburger-btn {
  border: 0;
  background: linear-gradient(130deg, rgba(255, 77, 141, 0.16), rgba(94, 92, 230, 0.16));
  color: #2a1c31;
  border-radius: 999px;
  min-height: 40px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.store-hamburger-btn:hover,
.store-hamburger-btn:focus-visible {
  background: linear-gradient(130deg, rgba(255, 77, 141, 0.24), rgba(45, 199, 255, 0.24));
  color: #1f1525;
}

.store-hamburger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-nav-item {
  margin: 0;
  position: relative;
  padding-bottom: 0;
  --mega-panel-bg-start: rgba(250, 245, 251, 0.98);
  --mega-panel-bg-end: rgba(245, 240, 250, 0.96);
  --mega-kicker-color: #7f5a84;
  --mega-kicker-dot: linear-gradient(135deg, #b66aa3, #7a5cf3);
  --mega-icon-color: #985489;
  --mega-icon-bg: linear-gradient(135deg, rgba(247, 222, 232, 0.95), rgba(233, 229, 249, 0.95));
  --mega-hover-border: rgba(182, 106, 163, 0.24);
}

.store-nav-link {
  display: inline-block;
  padding: 12px 18px;
  color: #241a28;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  transition: color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.store-nav-item.has-mega > .store-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.store-nav-item.has-mega > .store-nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.75;
}

.store-nav-link:hover {
  color: var(--color-primary-strong);
  background: rgba(198, 138, 185, 0.12);
}

.store-nav-item.active > .store-nav-link {
  color: var(--color-primary-strong);
  background: linear-gradient(90deg, rgba(239, 207, 228, 0.95), rgba(222, 225, 246, 0.95));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.store-nav-item.is-promoted > .store-nav-link {
  color: #b36499;
  background: linear-gradient(90deg, rgba(244, 214, 231, 0.96), rgba(221, 228, 246, 0.96));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.store-nav-list {
  min-width: 100%;
  overflow: visible;
  row-gap: 0;
  column-gap: 8px;
}

.store-mega-menu {
  display: none;
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(500px, calc(100vw - 56px));
  top: calc(100% - 1px);
  z-index: 1300;
  background: transparent;
  padding: 12px 0 0;
  overflow: visible;
}

.store-mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 18px;
}

.store-nav-item.has-mega:hover .store-mega-menu,
.store-nav-item.has-mega:focus-within .store-mega-menu {
  display: block;
}

.store-mega-panel {
  width: 100%;
  max-width: 500px;
  border: 1px solid #eadce8;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--mega-panel-bg-start), var(--mega-panel-bg-end));
  box-shadow: 0 10px 22px rgba(32, 17, 34, 0.1);
  padding: 16px 16px 12px;
  overflow: hidden;
}

.store-mega-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mega-kicker-color);
}

.store-mega-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mega-kicker-dot);
  flex-shrink: 0;
}

.store-mega-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 10px;
}

.store-mega-link {
  text-decoration: none;
  color: #211825;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid #efe4ee;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 12px;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  transition: color 140ms ease, transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.store-mega-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mega-icon-color);
  background: var(--mega-icon-bg);
  box-shadow: inset 0 0 0 1px rgba(182, 106, 163, 0.14);
}

.store-mega-list .store-mega-link:nth-child(4n + 1) .store-mega-icon {
  color: #5a67c8;
  background: linear-gradient(135deg, rgba(220, 236, 255, 0.98), rgba(211, 226, 255, 0.96));
}

.store-mega-list .store-mega-link:nth-child(4n + 2) .store-mega-icon {
  color: #c15a8f;
  background: linear-gradient(135deg, rgba(255, 226, 238, 0.98), rgba(252, 219, 235, 0.96));
}

.store-mega-list .store-mega-link:nth-child(4n + 3) .store-mega-icon {
  color: #7f5ac8;
  background: linear-gradient(135deg, rgba(235, 225, 255, 0.98), rgba(226, 217, 255, 0.96));
}

.store-mega-list .store-mega-link:nth-child(4n + 4) .store-mega-icon {
  color: #4c7ec2;
  background: linear-gradient(135deg, rgba(216, 238, 255, 0.98), rgba(206, 232, 255, 0.96));
}

.store-mega-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-mega-link:hover,
.store-mega-link.active {
  color: var(--color-primary-strong);
  transform: translateY(-1px);
  border-color: var(--mega-hover-border);
  box-shadow: 0 8px 16px rgba(49, 29, 54, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.store-mobile-menu {
  width: 100vw;
  max-width: 100vw;
  border-right: 1px solid color-mix(in srgb, var(--color-primary) 26%, #fff 74%);
}

.store-mobile-menu .offcanvas-header {
  padding: 14px 16px;
  border-bottom: 1px solid #efe8f3;
}

.store-mobile-menu .offcanvas-title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.store-mobile-menu .offcanvas-body {
  padding: 0;
  overflow: hidden;
}

.store-mobile-menu-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.store-mobile-menu-item {
  border-bottom: 1px solid #f1ebf5;
}

.store-mobile-menu-link,
.store-mobile-menu-toggle {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  background: #fff;
  color: #211726;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.02rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-align: left;
}

.store-mobile-menu-link:hover,
.store-mobile-menu-toggle:hover,
.store-mobile-menu-link:focus-visible,
.store-mobile-menu-toggle:focus-visible {
  color: var(--color-primary-strong);
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.08), rgba(94, 92, 230, 0.08));
}

.store-mobile-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 130ms ease;
  opacity: 0.75;
  margin-right: 2px;
}

.store-mobile-menu-toggle[aria-expanded="true"] .store-mobile-chevron {
  transform: rotate(45deg);
}

.store-mobile-submenu-wrap {
  background: #fbf9fd;
}

.store-mobile-submenu {
  padding: 4px 0 8px;
}

.store-mobile-submenu-link {
  display: block;
  text-decoration: none;
  color: #3a2a43;
  padding: 9px 22px;
  font-size: 0.95rem;
  font-weight: 550;
}

.store-mobile-submenu-link:hover,
.store-mobile-submenu-link:focus-visible {
  color: var(--color-primary-strong);
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.08), rgba(94, 92, 230, 0.08));
}

.store-mobile-submenu-parent {
  font-weight: 700;
  color: #2a1b31;
}

.home-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-accent-strong);
}

.hero-media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(91, 33, 86, 0.16) 0%, rgba(31, 39, 121, 0.24) 55%, rgba(15, 17, 62, 0.45) 100%);
  padding: var(--space-6);
}

.hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.hero-overlay p {
  font-size: 1rem;
  margin-bottom: var(--space-5);
}

.home-section-title {
  font-size: 1.55rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(120deg, #3a1854 0%, var(--color-primary-strong) 45%, #3f4ad8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.category-circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.store-circle-strip {
  background: linear-gradient(180deg, rgba(255, 252, 255, 0.98), rgba(248, 245, 255, 0.95));
  padding: 10px 0 8px;
}

.store-circle-rail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-circle-rail-item {
  flex: 0 0 auto;
}

.circle-item {
  width: 118px;
  text-align: center;
}

.circle-media {
  display: inline-flex;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, var(--color-primary), var(--color-secondary)) border-box;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.circle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-label {
  display: block;
  margin-top: var(--space-2);
  color: #231d22;
  font-size: 0.88rem;
  font-weight: 600;
}

.promo-tile {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--color-primary) 22%, #fff 78%);
}

.promo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.promo-caption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4);
  color: #fff;
  background: linear-gradient(to top, rgba(32, 14, 38, 0.78), rgba(32, 14, 38, 0.1));
}

.promo-caption strong {
  font-size: 1.35rem;
  font-weight: 500;
}

.promo-caption small {
  font-size: 0.86rem;
}

.home-preferred .promo-tile {
  min-height: 220px;
}

.promo-tile:hover img {
  transform: scale(1.04);
}

.product-card {
  border-radius: var(--radius-md);
  border: 1px solid #f0ddeb;
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-width: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(121, 57, 114, 0.14);
  border-color: color-mix(in srgb, var(--color-primary) 34%, #fff 66%);
}

.product-thumb-wrap {
  display: block;
  background:
    linear-gradient(140deg, #fff8fc 0%, #f6f2ff 100%);
  aspect-ratio: 1 / 1.22;
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.8em;
}

.product-price-block {
  display: flex;
  align-items: center;
}

.product-price-old {
  font-size: 1.2rem;
  color: #6d6273;
  text-decoration: line-through;
}

.product-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: #231629;
  line-height: 1;
}

.product-discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 28px;
  padding: 4px 10px;
  background: linear-gradient(130deg, #ff5f8f, #ff8f4a);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
}

.product-stock-badge {
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
}

.product-size-guide {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary-strong);
}

.product-size-guide:hover {
  text-decoration: underline;
}

.product-price {
  font-size: 1.06rem;
}

.product-detail-image {
  max-height: 760px;
  width: 100%;
  object-fit: cover;
}

.product-gallery-card {
  position: relative;
  overflow: visible;
}

.product-gallery-stage {
  position: relative;
  overflow: visible;
}

#product-main-image {
  display: block;
  border-radius: 14px;
}

.product-zoom-lens {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  border: 1.5px solid color-mix(in srgb, var(--color-primary) 55%, #fff 45%);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 18px rgba(30, 15, 40, 0.16);
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity 120ms ease;
}

.product-zoom-preview {
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  width: clamp(340px, 36vw, 520px);
  height: 100%;
  border: 1px solid #e8d9ef;
  border-radius: 14px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 18px 30px rgba(39, 17, 37, 0.2);
  pointer-events: none;
  opacity: 0;
  z-index: 20;
  transition: opacity 120ms ease;
}

.product-zoom-lens.active,
.product-zoom-preview.active {
  opacity: 1;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-primary) 28%, #fff 72%);
  background: rgba(255, 255, 255, 0.9);
  color: #2f2536;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}

.product-gallery-nav.prev {
  left: 8px;
}

.product-gallery-nav.next {
  right: 8px;
}

.product-gallery-nav:hover {
  background: #fff;
  color: var(--color-primary-strong);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-gallery-thumb {
  border: 1px solid #e8d9ef;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.product-gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery-thumb.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-primary) 35%, #fff 65%);
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary-strong);
  background: #fcf7fb;
}

.variant-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  color: #2c1d33;
  position: relative;
}

.variant-chip:not(:disabled) {
  cursor: pointer;
}

.variant-chip.active,
.variant-chip.btn.active,
.variant-chip.btn:focus-visible {
  background: color-mix(in srgb, var(--color-primary) 15%, #fff);
  border-color: var(--color-primary);
  color: var(--color-primary-strong);
  box-shadow: 0 0 0 2px rgba(120, 72, 103, 0.08);
}

.variant-chip.is-disabled,
.variant-chip:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.variant-chip.is-disabled::after,
.variant-chip:disabled::after {
  content: "";
  position: absolute;
  inset: 50% 8px auto 8px;
  border-top: 1.5px solid #9a8ca3;
  transform: rotate(-26deg);
}

.color-chip {
  min-width: auto;
  padding-inline: 12px;
}

.product-similar-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.product-similar-price .product-price-old {
  font-size: 0.96rem;
}

.product-similar-price .product-price-current {
  font-size: 1.18rem;
}

.product-discount-inline {
  color: #d43f55;
  font-size: 0.92rem;
  font-weight: 700;
}

.store-footer {
  background:
    linear-gradient(180deg, #fff 0%, #fdf5fb 55%, #f3f3ff 100%);
}

.home-mobile-rail {
  --rail-gap: 12px;
}

.footer-title {
  margin-bottom: var(--space-3);
  font-weight: 700;
}

.footer-link {
  color: var(--color-muted);
  line-height: 1.8;
}

.footer-link:hover {
  color: var(--color-primary-strong);
}

.cart-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-qty {
  width: 86px;
}

.checkout-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13, 139, 93, 0.12);
  color: var(--color-success);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.info-page {
  background: #fff;
  border: 1px solid #f0ddeb;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
}

.faq-item:first-child {
  border-top: none;
  padding-top: 0;
}

.faq-question {
  font-size: 1.05rem;
  margin-bottom: var(--space-2);
}

.faq-answer {
  margin: 0;
  color: #2e2830;
}

.collection-submenu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.collection-submenu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #ecd6e6;
  background: linear-gradient(180deg, #fff 0%, #fff6fb 55%, #f6f4ff 100%);
  color: #2f2530;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}

.collection-submenu-link:hover,
.collection-submenu-link.active {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 18%, #fff 82%) 0%, color-mix(in srgb, var(--color-secondary) 16%, #fff 84%) 64%, color-mix(in srgb, var(--color-cyan) 14%, #fff 86%) 100%);
  color: var(--color-primary-strong);
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.collection-toolbar-left,
.collection-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.collection-toolbar-btn {
  min-width: 118px;
}

.collection-sort-select {
  min-width: 190px;
  max-width: 220px;
}

.collection-result-count {
  font-size: 0.95rem;
  color: #b22c89;
  font-weight: 700;
}

.collection-view-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.collection-view-label {
  font-size: 0.9rem;
  color: #3b2b46;
}

.collection-view-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.collection-view-btn.active {
  border-color: color-mix(in srgb, var(--color-primary) 45%, #fff 55%);
  background: color-mix(in srgb, var(--color-primary) 12%, #fff);
  color: var(--color-primary-strong);
}

.collection-view-icon {
  display: grid;
  gap: 3px;
}

.collection-view-icon span {
  display: block;
  border-radius: 2px;
  background: currentColor;
}

.collection-view-icon.grid-4 {
  grid-template-columns: repeat(2, 1fr);
  width: 14px;
  height: 14px;
}

.collection-view-icon.grid-4 span {
  width: 5px;
  height: 5px;
}

.collection-view-icon.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  width: 15px;
  height: 14px;
}

.collection-view-icon.grid-3 span {
  width: 3px;
  height: 12px;
}

.collection-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.collection-product-grid.view-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-product-grid.view-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-product-col {
  min-width: 0;
}

.collection-filter-canvas {
  width: min(92vw, 520px);
  border-right: 1px solid #e7deee;
  z-index: 1600;
}

.collection-filter-accordion .accordion-item {
  border: 1px solid #ece6f2;
}

.collection-filter-links li {
  margin-bottom: 6px;
}

.collection-filter-link {
  text-decoration: none;
  color: #1f1528;
  font-weight: 650;
}

.collection-filter-link:hover {
  color: var(--color-primary-strong);
}

.collection-filter-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection-filter-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #221729;
}

.collection-filter-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.collection-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 16px;
}

.policy-content p {
  margin-bottom: var(--space-3);
  line-height: 1.7;
}

.account-page {
  padding-block: var(--space-6);
}

.account-card {
  max-width: 680px;
}

.tracking-page .card {
  min-height: 100%;
}

.admin-body {
  --color-primary: var(--store-primary, #ff4d8d);
  background:
    radial-gradient(920px 280px at 8% 0%, rgba(255, 77, 141, 0.2), transparent 72%),
    radial-gradient(1020px 360px at 95% 0%, rgba(94, 92, 230, 0.2), transparent 76%),
    radial-gradient(900px 240px at 50% -6%, rgba(45, 199, 255, 0.1), transparent 74%),
    #f6f5ff;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #3a1054 0%, #2f1e74 46%, #20377b 100%);
  color: #d7e2f5;
  padding: var(--space-5);
}

.admin-brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.admin-sidebar .nav-link {
  color: #d7e2f5;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: linear-gradient(120deg, rgba(255, 77, 141, 0.38), rgba(94, 92, 230, 0.42), rgba(45, 199, 255, 0.3));
  color: #fff;
}

.admin-main {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.admin-topbar {
  background: linear-gradient(90deg, #ffffff 0%, #fff1f8 42%, #f2efff 76%, #edf8ff 100%);
  padding: var(--space-4) var(--space-5);
}

.admin-content {
  padding: var(--space-5);
  min-width: 0;
}

.admin-metric-card {
  background: linear-gradient(180deg, #fff 0%, #fff9fd 100%);
  border: 1px solid #efd9ea;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
}

.admin-metric-label {
  display: block;
  color: #617086;
  margin-bottom: var(--space-2);
  font-size: 0.9rem;
}

.admin-metric-value {
  font-size: 1.5rem;
  line-height: 1;
}

.admin-table-thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.admin-theme-card {
  overflow: hidden;
  border-radius: 1rem;
}

.admin-theme-toolbar {
  border-top: 3px solid transparent;
}

.admin-theme-odd .admin-theme-toolbar {
  border-top-color: rgba(59, 130, 246, 0.45);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.86) 0%, rgba(255, 255, 255, 1) 100%);
}

.admin-theme-even .admin-theme-toolbar {
  border-top-color: rgba(236, 72, 153, 0.45);
  background: linear-gradient(180deg, rgba(253, 242, 248, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
}

.admin-theme-odd .badge.text-bg-light {
  border: 1px solid rgba(59, 130, 246, 0.28);
  background: rgba(239, 246, 255, 0.94) !important;
  color: #1d4ed8;
}

.admin-theme-even .badge.text-bg-light {
  border: 1px solid rgba(236, 72, 153, 0.28);
  background: rgba(253, 242, 248, 0.95) !important;
  color: #be185d;
}

.admin-theme-table > thead > tr > th {
  background: rgba(15, 23, 42, 0.03);
  border-bottom-width: 1px;
}

.admin-theme-odd .admin-theme-table > thead > tr > th {
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
}

.admin-theme-even .admin-theme-table > thead > tr > th {
  background: linear-gradient(180deg, rgba(252, 231, 243, 0.66) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Admin tek/cift profesyonel satir temasi (okunabilir zebra düzeni) */
.admin-theme-odd .admin-theme-table > tbody > tr:nth-child(odd) > td {
  background: rgba(219, 234, 254, 0.55);
}

.admin-theme-odd .admin-theme-table > tbody > tr:nth-child(even) > td {
  background: rgba(255, 255, 255, 0.98);
}

.admin-theme-even .admin-theme-table > tbody > tr:nth-child(odd) > td {
  background: rgba(252, 231, 243, 0.62);
}

.admin-theme-even .admin-theme-table > tbody > tr:nth-child(even) > td {
  background: rgba(255, 255, 255, 0.98);
}

.admin-theme-table > tbody > tr > td {
  transition: background-color 140ms ease;
  border-bottom-color: rgba(148, 163, 184, 0.22);
}

.admin-theme-odd .admin-theme-table > tbody > tr:hover > td {
  background: rgba(191, 219, 254, 0.82);
}

.admin-theme-even .admin-theme-table > tbody > tr:hover > td {
  background: rgba(251, 207, 232, 0.8);
}

.admin-theme-table .badge.text-bg-success {
  background: #0f9f73 !important;
}

.admin-theme-table .badge.text-bg-warning {
  background: #f4b000 !important;
  color: #2a2100 !important;
}

.admin-theme-table .badge.text-bg-danger {
  background: #d83d57 !important;
}

.import-schema {
  max-height: 560px;
  overflow: auto;
  background: #131721;
  color: #d6d9e2;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.78rem;
  line-height: 1.45;
}

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

@media (max-width: 1199.98px) {
  .store-topline {
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    min-height: 84px;
    gap: var(--space-3);
  }

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

@media (max-width: 991.98px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    padding: var(--space-4);
  }

  .admin-content {
    padding: var(--space-4);
  }

  .store-topline {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    gap: 8px;
    padding: 6px 0;
  }

  .store-top-left {
    justify-content: flex-start;
  }

  .store-mobile-actions {
    display: inline-flex;
  }

  .store-top-links {
    display: none;
  }

  .store-logo {
    justify-self: center;
  }

  .store-logo-main {
    font-size: clamp(1.28rem, 4.8vw, 1.7rem);
    letter-spacing: 0.1em;
  }

  .store-logo-sub {
    font-size: 0.66rem;
    margin-top: 2px;
  }

  .store-top-icons {
    justify-content: flex-end;
    gap: 4px;
  }

  .store-mobile-hide {
    display: none !important;
  }

  .hero-media {
    min-height: 300px;
  }

  .promo-caption strong {
    font-size: 1.5rem;
  }

  .store-nav-mobile {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .store-nav-list {
    overflow: visible;
    justify-content: center;
  }

  .store-mega-menu {
    position: static;
    display: block;
    background: transparent;
    padding: 0 var(--space-3) var(--space-3);
  }

  .store-nav-item.has-mega .store-mega-menu {
    display: none;
  }

  .store-nav-item.has-mega:hover .store-mega-menu,
  .store-nav-item.has-mega:focus-within .store-mega-menu {
    display: block;
  }

  .store-mega-list {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .store-mega-panel {
    max-width: 420px;
    margin-inline: auto;
    padding: var(--space-3);
    border-radius: var(--radius-md);
  }

  .store-mega-link {
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 40px;
  }

  .store-mega-icon {
    width: 20px;
    height: 20px;
  }

  .product-zoom-lens,
  .product-zoom-preview {
    display: none !important;
  }

  .store-photo-search {
    grid-template-columns: 1fr;
  }

  .store-icon-label {
    display: none;
  }

  .store-top-link {
    padding: 6px 10px;
  }

  .store-top-link + .store-top-link {
    border-left: 0;
  }

  .store-search {
    width: 100%;
  }

  .store-search-panel {
    padding: 2px 0 10px;
  }

  .store-search-inline {
    width: 100%;
  }

  .store-search-group .btn {
    min-width: 44px;
    padding-inline: 10px;
  }

  .store-mega-menu { width: 100%; transform: none; left: 0; }

  .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .collection-toolbar-left,
  .collection-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .collection-sort-select {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .collection-product-grid,
  .collection-product-grid.view-3,
  .collection-product-grid.view-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .btn-action-mini .action-text {
    display: none;
  }

  .btn-action-mini {
    padding: 0;
    gap: 0;
  }

  .collection-filter-canvas {
    width: 100vw;
    max-width: 100vw;
  }

  .collection-filter-actions {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .store-circle-strip {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .store-circle-rail {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .store-circle-rail::-webkit-scrollbar {
    display: none;
  }

  .store-circle-rail-item {
    width: 96px;
    min-width: 96px;
    scroll-snap-align: start;
  }

  .store-circle-rail-item .circle-item {
    width: 96px;
  }

  .store-circle-rail-item .circle-media {
    width: 86px;
    height: 86px;
  }

  .store-circle-rail-item .circle-label {
    font-size: 0.8rem;
    margin-top: 6px;
  }

  .home-mobile-rail {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: var(--rail-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    margin-right: -8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-mobile-rail::-webkit-scrollbar {
    display: none;
  }

  .home-mobile-rail .home-mobile-rail-item {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 min(78vw, 300px) !important;
    scroll-snap-align: start;
  }

  .home-product-rail .home-mobile-rail-item {
    flex-basis: min(56vw, 220px) !important;
  }

  .home-product-rail .product-card {
    min-height: 100%;
  }
}
