/* Technic — premium minimal + Open Sans */
:root {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --ink: #0a0a0a;
  --muted: #6b6b6b;
  --line: rgba(10, 10, 10, 0.08);
  --accent: #1a1a1a;
  --font-sans: "Open Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Open Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  --header-h: 60px;
  --tabbar-h: 56px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga" 1, "kern" 1;
}

body.is-ready .site-main {
  animation: mainFadeIn 0.55s var(--ease-soft) both;
}

@keyframes mainFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.shell--header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: center;
  min-height: var(--header-h);
}

.shell--header .site-logo {
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
}

.shell--header .site-nav--main {
  display: none;
}

.shell--header .site-header__end {
  display: flex;
  align-items: center;
  gap: 0.35rem 0.75rem;
  flex-wrap: wrap;
  justify-self: end;
  grid-column: 2;
  grid-row: 1;
}

@media (min-width: 901px) {
  .shell--header {
    grid-template-columns: minmax(140px, 220px) 1fr minmax(180px, 320px);
    gap: 1rem 1.5rem;
  }

  .shell--header .site-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .shell--header .site-nav--main {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
  }

  .shell--header .site-header__end {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark--preloader {
  animation: logoPreloaderPulse 2s var(--ease-soft) infinite;
}

@keyframes logoPreloaderPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.98);
    filter: blur(0.3px);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* Mətn logo — arxa plan / şəkil yox */
.logo-mark {
  display: inline-block;
  font-family: var(--font-sans);
  color: var(--ink);
  background: none;
  line-height: 1.1;
}

.logo-mark__row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35em;
}

.logo-mark__technic {
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
}

.logo-mark__reg {
  font-size: 0.45em;
  font-weight: 400;
  top: -0.35em;
  margin-left: 0.05em;
  position: relative;
}

.logo-mark__country {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.logo-mark--header .logo-mark__technic {
  font-size: 1.35rem;
}

.logo-mark--header .logo-mark__country {
  font-size: 0.58rem;
}

.logo-mark--preloader .logo-mark__technic {
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.logo-mark--preloader .logo-mark__country {
  font-size: clamp(0.58rem, 1.8vw, 0.72rem);
}

.logo-mark--footer .logo-mark__technic {
  font-size: 1.25rem;
}

.logo-mark--footer .logo-mark__country {
  font-size: 0.55rem;
}

.site-logo {
  text-decoration: none;
  transition: opacity 0.25s var(--ease-soft), transform 0.35s var(--ease-out);
}

.site-logo:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}


body.page-loading {
  overflow: hidden;
}

body.is-ready {
  overflow: unset;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}


.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  row-gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav a,
.site-nav--main .site-nav__link {
  position: relative;
  padding-block: 0.25rem;
  opacity: 0.72;
  transition: opacity 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav--main .site-nav__link:hover,
.site-nav--main .site-nav__link.is-active {
  opacity: 1;
}

.site-nav a::after,
.site-nav--main .site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav--main .site-nav__link:hover::after,
.site-nav--main .site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav--main .site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav__ico {
  flex-shrink: 0;
  opacity: 0.88;
}

.site-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.site-search-toggle:hover {
  background: rgba(10, 10, 10, 0.04);
}

.site-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.site-header__cart svg {
  flex-shrink: 0;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  margin-left: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .shell--header .site-header__end .site-header__cart,
  .shell--header .site-header__end .site-nav__account {
    display: none;
  }
}

.site-main {
  min-height: calc(100vh - var(--header-h) - 200px);
  padding-bottom: calc(var(--tabbar-h) + 1rem);
}

/* Birbaşa uşaq blokların ardıcıllıqla görünməsi */
.site-main .anim-stagger-item {
  animation: fadeInUp 0.72s var(--ease-out) both;
  animation-delay: var(--stagger, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .site-main .anim-stagger-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 901px) {
  .site-main {
    padding-bottom: 2rem;
  }

  .mobile-tabbar {
    display: none !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hero */
.hero {
  padding: clamp(3rem, 10vw, 7rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
  animation: fadeInUp 0.75s var(--ease-out) both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.hero__lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero .btn {
  animation: fadeInUp 0.8s var(--ease-out) 0.32s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  border-radius: var(--radius);
  transition:
    background 0.35s var(--ease-soft),
    color 0.35s var(--ease-soft),
    border-color 0.35s var(--ease-soft),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-soft);
}

.btn:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Sections */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.75rem;
  margin: 0;
}

.link-all {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
  transition:
    border-color 0.3s var(--ease-soft),
    letter-spacing 0.35s var(--ease-soft);
}

.link-all:hover {
  border-bottom-color: var(--ink);
  letter-spacing: 0.2em;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-soft),
    border-color 0.35s var(--ease-soft);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.09);
  border-color: rgba(10, 10, 10, 0.12);
}

.product-card__media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #f0f0f0, #e4e4e4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__placeholder {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-card__body {
  padding: 0.9rem 0.9rem 1.1rem;
}

.product-card__cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.product-card__price {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-pill {
  padding: 0.45rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.filter-pill:hover,
.filter-pill.is-active {
  opacity: 1;
  border-color: var(--ink);
  background: var(--bg-elevated);
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
  align-items: start;
}

@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.product-gallery {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.variant-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.variant-row:hover,
.variant-row.is-selected {
  border-color: var(--ink);
  background: rgba(0, 0, 0, 0.02);
}

.variant-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.price-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin: 0.5rem 0 0;
}

.stock-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.stock-note--low {
  color: #8a4a00;
}

/* Forms */
.form {
  max-width: 520px;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.alert {
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert--ok {
  border-color: rgba(0, 80, 40, 0.35);
  background: rgba(0, 80, 40, 0.04);
}

.alert--err {
  border-color: rgba(160, 0, 40, 0.35);
  background: rgba(160, 0, 40, 0.04);
}

/* Cart table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.cart-table th {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.qty-input {
  width: 4rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  font-family: inherit;
}

/* Content page */
.content-page {
  padding: 2.5rem 0 4rem;
  max-width: 720px;
}

.content-page h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.25rem;
  margin-top: 0;
}

.content-page p {
  color: #3a3a3a;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f7f7f7 0%, #fafafa 40%);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 120%;
  height: 160px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo-wrap {
  opacity: 0.95;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 22rem;
  line-height: 1.65;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.82;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social__link:hover {
  opacity: 1;
  border-color: var(--ink);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-legal {
  margin: 0;
}

/* Mobile tab bar */
.mobile-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  min-height: var(--tabbar-h);
  padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-tabbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--muted);
  padding: 0.25rem;
  transition:
    color 0.3s var(--ease-soft),
    transform 0.35s var(--ease-out);
}

.mobile-tabbar a.is-active {
  color: var(--ink);
  transform: translateY(-1px);
}

.mobile-tabbar a:active {
  transform: scale(0.96);
}

.mobile-tabbar__icon svg {
  display: block;
}

.tab-badge {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

/* Admin (minimal inside same file) */
.admin-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.admin-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.85rem;
}

.admin-table th {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.admin-badge--unread {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

/* Account nav */
.site-nav__account {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.site-nav__account a {
  opacity: 0.72;
}

.site-nav__account a.is-active {
  opacity: 1;
}

@media (max-width: 900px) {
  .site-nav__account {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }
}

/* Buttons */
.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn--primary:hover {
  background: transparent;
  color: var(--ink);
}

.cart-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  align-items: center;
}

/* Auth */
.shell--narrow {
  width: min(480px, 92vw);
}

.auth-card {
  margin: 2.5rem auto 4rem;
  padding: 2.25rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.auth-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
}

.auth-card__lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-card__footer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form--auth {
  max-width: none;
}

.input-disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: #f3f3f3 !important;
}

.muted {
  color: var(--muted);
}

/* Checkout */
.checkout {
  padding: 2rem 0 4rem;
}

.checkout__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2rem;
  margin: 0 0 1.5rem;
}

.checkout__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .checkout__grid {
    grid-template-columns: 1fr;
  }
}

.checkout__panel,
.checkout__summary {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem 2rem;
  box-shadow: var(--shadow);
}

.checkout__heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.checkout-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-lines__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.checkout-hint {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.payment-fieldset {
  border: 1px solid var(--line);
  padding: 1rem 1.25rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: var(--radius);
}

.payment-fieldset__legend {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0.35rem;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.payment-option input {
  margin-top: 0.2rem;
}

.payment-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Success */
.success-card {
  margin: 3rem auto 4rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.success-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.success-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2rem;
  margin: 0 0 1rem;
}

.success-card__no {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.success-card__meta {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.success-card__list {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  padding-left: 1.25rem;
  color: #3a3a3a;
  font-size: 0.95rem;
}

.success-card__note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Profile */
.profile-page {
  padding: 2rem 0 4rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.profile-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.table-wrap {
  overflow-x: auto;
}

.orders-table {
  min-width: 100%;
}

/* Admin order meta */
.order-meta {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.35rem 1.5rem;
  font-size: 0.9rem;
  margin: 1rem 0 2rem;
}

.order-meta dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-meta dd {
  margin: 0 0 0.75rem;
}

/* Summer Glow Kampaniyası */
.summer-glow-campaign {
  padding: 2rem 0;
}

.campaign-card {
  background: linear-gradient(135deg, #fef9e7 0%, #fdf2e9 50%, #fae5d3 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(234, 172, 93, 0.15);
  border: 1px solid rgba(234, 172, 93, 0.2);
}

.campaign-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(234, 172, 93, 0.3);
}

.campaign-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  background: linear-gradient(90deg, #f39c12, #e74c3c);
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.campaign-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #8e44ad;
  margin: 0 0 0.5rem;
}

.campaign-slogan {
  font-size: 1.1rem;
  color: #e67e22;
  font-style: italic;
  margin: 0;
}

.campaign-body {
  display: grid;
  gap: 1.25rem;
}

.campaign-desc {
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

.campaign-terms h3,
.campaign-prizes h3 {
  font-size: 1rem;
  color: #2c3e50;
  margin: 0 0 0.75rem;
}

.campaign-terms ul {
  margin: 0;
  padding-left: 1.25rem;
}

.campaign-terms li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.prize-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.prize-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.campaign-bonus {
  background: linear-gradient(90deg, #fff5f5, #fff9f0);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border-left: 3px solid #e74c3c;
}

.campaign-bonus p {
  margin: 0;
  font-size: 0.9rem;
}

.campaign-footer {
  text-align: center;
  font-size: 1rem;
  color: #e67e22;
  font-weight: 500;
  margin: 0;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .campaign-card {
    padding: 1.25rem;
  }
  
  .campaign-title {
    font-size: 1.3rem;
  }
  
  .prizes-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Summer Glow Kampaniyası */
.summer-glow-premium {
  position: relative;
  background: linear-gradient(135deg, #fef5e7 0%, #fdf2f4 30%, #fbe9e7 60%, #fff8e7 100%);
  overflow: hidden;
  padding: 4rem 0 2rem;
}

/* Floating Particles */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(255,200,100,0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 75%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 90%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 20s; }

@keyframes float-particle {
  0%, 100% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translateY(-10vh) scale(1); }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(0); opacity: 0; }
}

/* Campaign Shell */
.campaign-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
}

/* Campaign Hero */
.campaign-hero {
  text-align: center;
  z-index: 2;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #f39c12, #e74c3c);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3); }
  50% { box-shadow: 0 6px 30px rgba(231, 76, 60, 0.5); }
}

.campaign-main-title {
  margin: 0 0 1rem;
  line-height: 0.9;
}

.title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2c3e50;
}

.title-line.glow {
  background: linear-gradient(90deg, #f39c12, #e74c3c, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 60px rgba(243, 156, 18, 0.3);
  animation: title-shimmer 3s infinite linear;
}

@keyframes title-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.campaign-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: #e67e22;
  margin: 0 0 1rem;
  font-weight: 500;
}

.campaign-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* Countdown Timer */
.countdown-timer {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  margin: 1.5rem auto;
  max-width: 450px;
  box-shadow: 0 8px 32px rgba(243, 156, 18, 0.1);
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.countdown-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.time-value {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #2c3e50;
  line-height: 1;
}

.time-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.25rem;
}

.time-separator {
  font-size: 1.5rem;
  font-weight: 300;
  color: #f39c12;
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* CTA Buttons */
.campaign-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
  transition: all 0.3s var(--ease-soft);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(243, 156, 18, 0.3);
  transition: all 0.3s var(--ease-soft);
}

.cta-secondary:hover {
  background: #fff;
  border-color: #f39c12;
  transform: translateY(-3px);
}

/* Floating Badge */
.floating-badge {
  position: relative;
  width: 140px;
  height: 140px;
  animation: badge-float 4s infinite ease-in-out;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

.badge-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
  border-radius: 50%;
  border: 3px solid #f39c12;
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.3);
  z-index: 2;
  text-align: center;
  padding: 0.5rem;
}

.badge-top {
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-middle {
  font-size: 2rem;
  font-weight: 700;
  color: #e74c3c;
  line-height: 1;
}

.badge-unit {
  font-size: 0.7rem;
  color: var(--muted);
}

.badge-bottom {
  font-size: 0.65rem;
  color: #2c3e50;
  font-weight: 600;
  margin-top: 0.25rem;
}

.badge-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 2s infinite ease-in-out;
  z-index: 1;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Prizes Section */
.prizes-section {
  padding: 3rem 0;
  position: relative;
}

.prizes-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.title-icon {
  font-size: 1.5em;
}

.prizes-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 1100px) {
  .prizes-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
  .campaign-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .floating-badge {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .prizes-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
  .grand-prize {
    grid-column: span 2;
  }
}

/* Prize Cards */
.prize-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,249,240,0.9) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.4s var(--ease-soft);
  overflow: hidden;
}

.prize-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(243, 156, 18, 0.2);
  border-color: rgba(243, 156, 18, 0.4);
}

.prize-card.grand-prize {
  grid-column: span 1;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #fff9f0 0%, #fef3e7 100%);
  border: 2px solid rgba(243, 156, 18, 0.3);
}

.prize-card.grand-prize.pink {
  background: linear-gradient(135deg, #fef0f4 0%, #fff0f7 100%);
  border-color: rgba(231, 76, 60, 0.3);
}

.prize-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 60%
  );
  animation: card-shine 5s infinite;
}

@keyframes card-shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.prize-rank {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.prize-rank.small {
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
}

.prize-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.grand-prize .prize-icon {
  font-size: 3.5rem;
}

.prize-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.25rem;
}

.grand-prize .prize-name {
  font-size: 1.25rem;
}

.prize-detail {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.prize-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.prize-card:hover .prize-glow {
  opacity: 1;
}

/* Campaign Terms Premium */
.campaign-terms-premium {
  margin-top: 2rem;
}

.terms-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 156, 18, 0.2);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-card h3 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0 0 1rem;
  text-align: center;
}

.terms-card ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.terms-card li {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.campaign-period {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 156, 18, 0.2);
}

.period-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.period-dates {
  color: #e74c3c;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Ana səhifə banner (slider) */
.home-banner {
  position: relative;
  margin-top: 0;
}

.banner-slider {
  position: relative;
  overflow: hidden;
  min-height: min(50vh, 420px);
  background: #0a0a0a;
}

.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease-soft), visibility 0.85s;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.banner-slide__bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 8s linear;
}

.banner-slide.is-active .banner-slide__bg {
  transform: scale(1);
}

.banner-slide__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(10, 10, 10, 0.35) 45%,
    rgba(10, 10, 10, 0.2) 100%
  );
  z-index: 1;
}

.banner-slide__content {
  position: relative;
  z-index: 2;
  min-height: min(50vh, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 4rem 5rem;
  max-width: min(1180px, 92vw);
  margin-inline: auto;
}

.banner-slide__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: #fff;
  max-width: 18ch;
  line-height: 1.1;
}

.banner-slide__sub {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 36rem;
  line-height: 1.55;
}

.banner-slide__btn {
  align-self: flex-start;
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #fff;
}

.banner-slide__btn:hover {
  background: transparent;
  color: #fff;
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  color: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.banner-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.banner-arrow--prev {
  left: max(12px, 3vw);
}

.banner-arrow--prev::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.banner-arrow--next {
  right: max(12px, 3vw);
}

.banner-arrow--next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

.banner-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.banner-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .banner-arrow {
    display: none;
  }
}

/* Müştəri paneli (cust hub) */
.cust-hub {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2rem 0 4rem;
  width: min(1180px, 92vw);
  margin-inline: auto;
}

@media (max-width: 860px) {
  .cust-hub {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cust-hub__aside {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.cust-hub__brand {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cust-hub__hello {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cust-hub__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.cust-hub__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cust-hub__nav a {
  padding: 0.55rem 0.65rem;
  border-radius: 2px;
  font-size: 0.92rem;
  transition: background 0.15s;
}

.cust-hub__nav a:hover {
  background: rgba(10, 10, 10, 0.04);
}

.cust-hub__nav a.is-active {
  background: #0a0a0a;
  color: #fff;
}

.cust-hub__nav--muted {
  color: var(--muted);
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.cust-hub__pagehead {
  margin-bottom: 1.75rem;
}

.cust-hub__pagetitle {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.cust-hub__sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
}

.cust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.cust-stat {
  flex: 1;
  min-width: 140px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  border-radius: var(--radius);
}

.cust-stat--link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cust-stat--link:hover {
  border-color: #0a0a0a;
  box-shadow: var(--shadow);
}

.cust-stat__val {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cust-stat__lab {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

.profile-card--solo {
  max-width: 520px;
}

.cust-empty {
  padding: 2.5rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.cust-hub__back {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}

.cust-hub__back a {
  color: var(--muted);
}

.cust-hub__back a:hover {
  color: var(--ink);
}

.order-cards {
  display: grid;
  gap: 1rem;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  background: var(--bg-elevated);
  display: grid;
  gap: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.order-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(10, 10, 10, 0.15);
}

.order-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.order-card__no {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.order-card__time {
  font-size: 0.85rem;
  color: var(--muted);
}

.order-card__mid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.order-card__total {
  font-size: 1.15rem;
  font-weight: 600;
}

.order-card__pill {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.order-card__link {
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  justify-self: start;
}

.order-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.order-detail-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.order-detail-card__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.order-detail-card__title {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 600;
}

.order-detail-card__sums {
  text-align: right;
  font-size: 0.9rem;
  color: var(--muted);
}

.order-detail-card__sums strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: 0.35rem;
}

.order-detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 0 0 1.25rem;
}

.order-detail-meta dt {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.order-detail-meta dd {
  margin: 0.2rem 0 0;
}

.order-detail-card__addr {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.order-detail-card__h {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.order-line-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.order-line-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.order-line-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-line-list__name {
  font-weight: 500;
}

.order-line-list__var {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 560px) {
  .order-line-list__var {
    grid-column: auto;
  }
}

.order-line-list__qty {
  color: var(--muted);
  font-size: 0.85rem;
}

.order-line-list__price {
  font-weight: 500;
}

/* Məhsul səhifəsi — əlavə bloklar */
.product-detail__lead {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 38rem;
  margin: 0 0 1.25rem;
}

.product-detail__body {
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.product-detail__acc {
  margin: 0.75rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.product-detail__acc summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.product-detail__acc .rte {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.product-detail__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

.product-detail__meta code {
  font-size: 0.9em;
  background: rgba(10, 10, 10, 0.06);
  padding: 0.1rem 0.35rem;
}

.variant-size-tag {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Ana səhifə — banner altı kampaniya şəbəkəsi */
.home-feature-grid {
  padding: 1.35rem 0 2.75rem;
  margin-top: 0;
}

.home-feature-grid__rule {
  height: 1px;
  background: #0a0a0a;
  opacity: 0.9;
  width: 100%;
  margin: 0 0 1.65rem;
}

.home-feature-grid__wrap {
  padding-top: 0.35rem;
}

.home-feature-grid__inner {
  display: grid;
  gap: 1rem 1.05rem;
  width: 100%;
}

/* 1–4 kafel: sadə şəbəkə */
.home-feature-grid__inner--count-1 {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-inline: auto;
}

.home-feature-grid__inner--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-feature-grid__inner--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-feature-grid__inner--count-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 5 kafel: üst sıra 3, alt sıra 2 (bento) */
.home-feature-grid__inner--count-5 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.home-feature-grid__inner--count-5 .home-feature-cell:nth-child(1) {
  grid-column: span 4;
}

.home-feature-grid__inner--count-5 .home-feature-cell:nth-child(2) {
  grid-column: span 4;
}

.home-feature-grid__inner--count-5 .home-feature-cell:nth-child(3) {
  grid-column: span 4;
}

.home-feature-grid__inner--count-5 .home-feature-cell:nth-child(4) {
  grid-column: span 6;
}

.home-feature-grid__inner--count-5 .home-feature-cell:nth-child(5) {
  grid-column: span 6;
}

@media (max-width: 900px) {
  .home-feature-grid__inner--count-3 {
    grid-template-columns: 1fr;
  }

  .home-feature-grid__inner--count-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-feature-grid__inner--count-5 .home-feature-cell:nth-child(n) {
    grid-column: span 1;
  }
}

@media (max-width: 520px) {
  .home-feature-grid__inner--count-2,
  .home-feature-grid__inner--count-4 {
    grid-template-columns: 1fr;
  }
}

.home-feature-cell {
  margin: 0;
  min-width: 0;
}

.home-feature-cell__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-feature-cell__media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: min(500px, 88vw);
  margin-inline: auto;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 7px;
  transition: box-shadow 0.25s var(--ease-soft), transform 0.25s var(--ease-soft);
}

.home-feature-cell__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f3f3f3 0%, #ebebeb 100%);
  border: 1px dashed rgba(10, 10, 10, 0.12);
}

.home-feature-cell__placeholder {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.65;
}

.home-feature-cell__link:hover .home-feature-cell__media {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.home-feature-cell__title {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Axtarış overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8vh 1rem 2rem;
  pointer-events: none;
}

.search-overlay:not(.is-open) .search-overlay__backdrop,
.search-overlay:not(.is-open) .search-overlay__panel {
  opacity: 0;
}

.search-overlay.is-open {
  pointer-events: auto;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s var(--ease-soft);
}

.search-overlay.is-open .search-overlay__backdrop {
  opacity: 1;
}

.search-overlay__panel {
  position: relative;
  width: min(560px, 100%);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(-18px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.35s var(--ease-soft);
}

.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.search-overlay__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.search-overlay__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.search-overlay__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.search-overlay__submit {
  width: 100%;
}

/* Çərəz bildirişi */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(250, 250, 250, 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52rem;
  line-height: 1.5;
}

.cookie-banner__btn {
  flex-shrink: 0;
}

/* Yuxarı scroll */
.scroll-top {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  right: 1.25rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}

.scroll-top:hover {
  transform: translateY(-2px);
}

/* CMS mətn */
.cms-html {
  line-height: 1.75;
  color: var(--muted);
}

.cms-html p {
  margin: 0 0 1rem;
}

.cms-html .cms-legal-meta {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cms-html ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.cms-html li {
  margin-bottom: 0.35rem;
}

.cms-html h2,
.cms-html h3 {
  color: var(--ink);
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

.cms-page__title {
  font-size: 1.75rem;
  margin: 0 0 1.5rem;
}

.cms-page {
  padding: 2rem 0 3rem;
  max-width: 720px;
}

.home-extra {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.home-extra__title {
  font-size: 1.35rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.home-extra__body {
  max-width: 42rem;
}

/* Haqqımızda / əlaqə */
.about-page {
  padding: 2rem 0 4rem;
}

.about-page__head {
  text-align: center;
  margin-bottom: 2rem;
}

.about-page__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.about-page__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

.about-page__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .about-page__grid {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}

.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--bg-elevated);
}

.about-card__h {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.about-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-page__cta {
  display: inline-flex;
  margin-top: 1rem;
}

/* About Page New Sections */
.about-hero {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.about-section {
  margin-bottom: 2.5rem;
}

.about-section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-rose);
  display: inline-block;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.about-feature {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--brand-rose);
}

.about-feature h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.about-mission {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
}

.mission-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.8;
  border-left: 3px solid var(--brand-rose);
  padding-left: 1.25rem;
}

.about-card__text {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.about-card__link {
  display: inline-block;
  color: var(--brand-rose);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.about-card__link:hover {
  color: var(--ink);
  text-decoration: underline;
}

.contact-page {
  padding: 2rem 0 4rem;
}

.contact-page__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.contact-page__title {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 600;
}

.contact-page__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-page__layout {
  display: grid;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .contact-page__layout {
    grid-template-columns: 1fr 260px;
  }
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem;
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.contact-aside__block {
  margin-bottom: 1.5rem;
}

.contact-aside__h {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.contact-aside__muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-aside__link {
  font-weight: 600;
}

/* 404 */
.err-page {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.err-page__card {
  text-align: center;
  max-width: 420px;
}

.err-page__code {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.err-page__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.err-page__text {
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.err-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
}

/* Axtarış səhifəsi */
.search-page {
  padding: 2rem 0 3rem;
}

.search-page__title {
  margin: 0 0 1rem;
}

.search-page__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.search-page__input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-page__hint,
.search-page__empty,
.search-page__count {
  color: var(--muted);
}

/* Footer hüquqi keçidlər */
.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
}

.footer-legal-nav a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-legal-nav a:hover {
  color: var(--ink);
}

/* ============================================
   PREMIUM MONOCHROME SUMMER GLOW CAMPAIGN
   ============================================ */

.summer-glow-mono {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
  overflow: hidden;
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Abstract Background */
.mono-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mono-smoke {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(212,175,55,0.03) 0%, transparent 40%);
  animation: smoke-drift 20s infinite ease-in-out;
}

@keyframes smoke-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -2%) scale(1.02); }
  66% { transform: translate(-1%, 1%) scale(0.98); }
}

.mono-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  animation: glow-pulse-mono 8s infinite ease-in-out;
}

@keyframes glow-pulse-mono {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating Particles */
.mono-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mono-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  animation: particle-float-mono 25s infinite linear;
}

.mono-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.mono-particle:nth-child(2) { left: 20%; animation-delay: 3s; animation-duration: 28s; }
.mono-particle:nth-child(3) { left: 35%; animation-delay: 6s; animation-duration: 22s; }
.mono-particle:nth-child(4) { left: 55%; animation-delay: 2s; animation-duration: 30s; }
.mono-particle:nth-child(5) { left: 70%; animation-delay: 8s; animation-duration: 18s; }
.mono-particle:nth-child(6) { left: 85%; animation-delay: 4s; animation-duration: 26s; }
.mono-particle:nth-child(7) { left: 45%; animation-delay: 10s; animation-duration: 24s; }
.mono-particle:nth-child(8) { left: 95%; animation-delay: 1s; animation-duration: 32s; }

@keyframes particle-float-mono {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  5% { opacity: 0.6; }
  95% { opacity: 0.6; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* Shell */
.mono-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

@media (max-width: 1100px) {
  .mono-shell {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

/* Hero Section */
.mono-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 1100px) {
  .mono-hero {
    align-items: center;
  }
}

.mono-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.mono-title {
  margin: 0 0 1rem;
  line-height: 0.9;
}

.mono-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.mono-title-line.accent {
  font-weight: 700;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E8C1 25%, #D4AF37 50%, #AA8C2C 75%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: text-shine 4s linear infinite;
}

@keyframes text-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.mono-subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 1.25rem;
  letter-spacing: 0.1em;
}

.mono-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(0, 0, 0, 0.6);
  max-width: 480px;
  margin: 0 0 2rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Monochrome Countdown */
.mono-countdown {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 0 0 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.countdown-header {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
  text-align: center;
}

.countdown-mono {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 65px;
}

.countdown-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 200;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.countdown-label-mono {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 0.4rem;
}

.countdown-divider {
  font-size: 1.8rem;
  font-weight: 100;
  color: rgba(212, 175, 55, 0.5);
  align-self: flex-start;
  margin-top: 0.3rem;
}

/* CTA Buttons */
.mono-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .mono-ctas {
    justify-content: center;
  }
}

.mono-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s var(--ease-soft);
}

.mono-btn-primary {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #fff;
}

.mono-btn-primary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.mono-btn-secondary {
  background: transparent;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.mono-btn-secondary:hover {
  border-color: rgba(212, 175, 55, 0.8);
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Floating Badge */
.mono-badge-float {
  position: relative;
  animation: badge-float-mono 5s infinite ease-in-out;
}

@media (max-width: 1100px) {
  .mono-badge-float {
    margin: 0 auto;
  }
}

@keyframes badge-float-mono {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.mono-badge {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(250,250,250,0.95) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.badge-line {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
}

.badge-big {
  font-size: 2.8rem;
  font-weight: 200;
  color: #D4AF37;
  line-height: 1;
  margin: 0.25rem 0;
}

.badge-prize {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  letter-spacing: 0.05em;
}

/* Prizes Section */
.mono-prizes {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.mono-section-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.9);
  margin: 0 0 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  letter-spacing: 0.05em;
}

.section-accent {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(212, 175, 55, 0.8);
  letter-spacing: 0.15em;
}

/* Prizes Grid */
.mono-prizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (max-width: 1100px) {
  .mono-prizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mono-prizes-grid {
    grid-template-columns: 1fr;
  }
  .mono-prize-card.featured {
    grid-column: span 1;
  }
}

/* Prize Cards */
.mono-prize-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(250,250,250,0.95) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 1.5rem 1rem;
  transition: all 0.5s var(--ease-soft);
  overflow: hidden;
}

.mono-prize-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mono-prize-card.featured {
  grid-column: span 1;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.mono-prize-card.highlight {
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.98) 100%);
  border-color: rgba(212, 175, 55, 0.3);
}

.prize-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.mono-prize-card:hover .prize-glass {
  opacity: 1;
}

.prize-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.prize-number {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(212, 175, 55, 0.8);
  font-weight: 500;
}

.prize-number-small {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(212, 175, 55, 0.8);
  display: block;
  margin-bottom: 0.5rem;
}

.prize-icon-mono {
  display: none;
}

.prize-image {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
}

.featured .prize-image {
  height: 150px;
  margin-bottom: 1rem;
}

.prize-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  margin: 0 0 0.3rem;
  letter-spacing: 0.02em;
}

.featured .prize-title {
  font-size: 1.15rem;
  font-weight: 500;
}

.prize-meta {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
  font-weight: 300;
}

/* Terms Section */
.mono-terms {
  margin-top: 2rem;
}

.terms-mono-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.terms-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.terms-icon {
  font-size: 1.2rem;
  color: rgba(212, 175, 55, 0.8);
}

.terms-header h3 {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.terms-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.terms-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.terms-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(212, 175, 55, 0.5);
}

.terms-period {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.period-text {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(212, 175, 55, 0.8);
  text-transform: uppercase;
}

/* ============================================
   MOBIL DIZAYN TƏKMILLƏŞDIRMƏLƏRI
   ============================================ */

/* 768px və aşağı - Tablet və mobil */
@media (max-width: 768px) {
  /* Shell və konteyner */
  .shell {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
  
  /* Header mobil */
  .site-header {
    padding: 0.5rem 0;
  }
  
  .site-header__logo img {
    max-height: 32px;
  }
  
  /* Mobil menyu açarları üçün böyük toxunma sahələri */
  .site-nav__menu-btn,
  [data-search-open] {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Düymələr üçün optimal toxunma sahəsi */
  .btn,
  .admin-btn,
  .product-tab,
  .quick-action-btn,
  button[type="submit"] {
    min-height: 44px;
    font-size: 1rem;
  }
  
  /* Form elementləri üçün böyük inputlar */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  select,
  textarea {
    min-height: 44px;
    font-size: 16px; /* iOS zoom problemini aradan qaldırır */
    padding: 0.75rem;
  }
  
  /* Məhsul grid mobil */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .product-card__thumb {
    height: 160px;
  }
  
  .product-card__title {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .product-card__price {
    font-size: 0.95rem;
  }
  
  /* Məhsul detay səhifəsi mobil */
  .product-detail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-detail__media {
    max-width: 100%;
  }
  
  .product-detail__main {
    padding: 0;
  }
  
  .product-detail__title {
    font-size: 1.4rem;
  }
  
  /* Variant seçimi mobil */
  .variant-row {
    padding: 0.875rem;
    min-height: 44px;
  }
  
  /* Səbət mobil */
  .cart-table {
    font-size: 0.9rem;
  }
  
  .cart-table td,
  .cart-table th {
    padding: 0.75rem 0.5rem;
  }
  
  /* Checkout mobil */
  .checkout__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Footer mobil */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  /* Tab bar mobil */
  .mobile-tabbar {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  
  /* Hero mobil */
  .hero {
    padding: 2rem 0 1.5rem;
  }
  
  .hero__title {
    font-size: 1.75rem;
  }
  
  .hero__lead {
    font-size: 1rem;
  }
  
  /* Admin panel mobil */
  .admin-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .admin-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Form grid mobil */
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  /* Kateqoriya grid mobil */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  /* Haqqımızda səhifəsi mobil */
  .about-page__grid {
    grid-template-columns: 1fr;
  }
  
  .about-page__aside {
    order: -1;
  }
  
  .about-hero {
    padding: 1.5rem;
  }
  
  .about-lead {
    font-size: 1rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  /* Kampaniya kartları mobil */
  .prizes-grid-premium {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .prize-card-premium {
    padding: 1.25rem;
  }
  
  /* Banner slider mobil */
  .banner-slide {
    height: 300px;
  }
  
  /* Səbət sayğacı */
  .site-header__cart .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }
}

/* 480px və aşağı - Kiçik mobil */
@media (max-width: 480px) {
  .shell {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .product-card {
    border-radius: 6px;
  }
  
  .product-card__thumb {
    height: 140px;
  }
  
  .product-card__title {
    font-size: 0.8rem;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
  }
  
  .product-card__price {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Header kiçik mobil */
  .site-header__logo {
    font-size: 1.25rem;
  }
  
  .site-header__logo img {
    max-height: 28px;
  }
  
  /* Tab bar kiçik */
  .mobile-tabbar__item {
    padding: 0.5rem;
  }
  
  .mobile-tabbar__label {
    font-size: 0.7rem;
  }
  
  /* Footer kiçik */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  /* Səbət kiçik */
  .cart-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cart-item__media {
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
  }
  
  /* Admin cədvəl kiçik */
  .admin-table {
    font-size: 0.8rem;
  }
  
  .admin-table td,
  .admin-table th {
    padding: 0.5rem;
  }
  
  /* Modal pəncərələr kiçik */
  .modal-overlay {
    padding: 0.5rem;
  }
  
  .modal {
    max-height: 95vh;
  }
  
  /* Hero kiçik */
  .hero__title {
    font-size: 1.5rem;
  }
  
  .hero__lead {
    font-size: 0.9rem;
  }
  
  /* Məhsul detay kiçik */
  .product-detail__title {
    font-size: 1.2rem;
  }
  
  .product-detail__price {
    font-size: 1.25rem;
  }
  
  /* Form etiketləri */
  .form-row label {
    font-size: 0.9rem;
  }
}

/* 360px və aşağı - Çox kiçik ekranlar */
@media (max-width: 360px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card__thumb {
    height: 200px;
  }
}

/* iOS Safe Area dəstəyi */
@supports (padding-top: env(safe-area-inset-top)) {
  .site-header {
    padding-top: max(0.5rem, env(safe-area-inset-top));
  }
  
  .mobile-tabbar {
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
  
  .site-main {
    padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0) + 1rem);
  }
}

/* Touch cihazlar üçün hover olmayan interfeys */
@media (hover: none) and (pointer: coarse) {
  .product-card:hover .product-card__thumb img,
  .category-card:hover img {
    transform: none;
  }
  
  .btn:hover,
  .admin-btn:hover {
    transform: none;
  }
  
  /* Touch üçün böyük toxunma sahələri */
  a, button {
    touch-action: manipulation;
  }
}

/* Landscape mod mobil */
@media (max-height: 500px) and (orientation: landscape) {
  .mobile-tabbar {
    display: none;
  }
  
  .site-main {
    padding-bottom: 1rem;
  }
}

/* Dark mode mobil dəstəyi */
@media (prefers-color-scheme: dark) {
  @media (max-width: 768px) {
    .mobile-tabbar {
      background: rgba(10, 10, 10, 0.95);
      border-top-color: rgba(255,255,255,0.1);
    }
  }
}
