:root {
  --bg: #0b0b0c;
  --bg-soft: #141417;
  --paper: #fbf7ef;
  --paper-2: #f3eadc;
  --text: #161616;
  --muted: #6d655b;
  --gold: #c99a44;
  --gold-soft: #ead2a4;
  --line: rgba(22, 22, 22, 0.12);
  --white-line: rgba(255, 255, 255, 0.12);
  --danger: #b42318;
  --success: #147a4a;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--text);
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-fade {
  animation: pageFade 420ms ease both;
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.92);
  color: white;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-line);
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 18px;
  font-size: 12px;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--white-line);
  white-space: nowrap;
  overflow: hidden;
}

.navbar {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0a0a0a, #29210f);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 154, 68, 0.7);
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 12px 32px rgba(201, 154, 68, 0.15);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 18px;
}

.brand-text small {
  color: #b8b0a3;
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: #e7dfd2;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.86;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-soft);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-button,
.cart-button,
.ghost-button,
.primary-link,
.secondary-link,
.detail-button,
.wide-button,
.small-button {
  border: 0;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.icon-button,
.ghost-button,
.secondary-link {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid var(--white-line);
}

.cart-button,
.primary-link,
.wide-button {
  background: linear-gradient(135deg, var(--gold), #f3d28a);
  color: #15100a;
  box-shadow: 0 14px 35px rgba(201, 154, 68, 0.22);
}

.icon-button:hover,
.cart-button:hover,
.ghost-button:hover,
.primary-link:hover,
.secondary-link:hover,
.detail-button:hover,
.wide-button:hover,
.small-button:hover {
  transform: translateY(-1px);
}

.icon-button strong,
.cart-button strong {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 22px 40px;
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 34px;
  padding: 54px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 154, 68, 0.2), transparent 30%),
    linear-gradient(135deg, #0b0b0c 0%, #1b1710 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -140px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(201, 154, 68, 0.16);
  filter: blur(20px);
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 900;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 16px 0 18px;
  max-width: 780px;
}

.hero p {
  color: #d8d0c4;
  font-size: 17px;
  line-height: 1.7;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-inline: 20px;
}

.hero-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-card {
  position: absolute;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.visual-card-main {
  width: min(360px, 92%);
  height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75)),
    radial-gradient(circle at 50% 20%, rgba(201, 154, 68, 0.42), transparent 32%),
    linear-gradient(135deg, #2b2925, #080808);
}

.visual-card-main span {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card-main strong {
  margin-top: 8px;
  font-size: 44px;
  letter-spacing: -0.05em;
}

.visual-card-small {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  background: rgba(251, 247, 239, 0.12);
  color: var(--gold-soft);
  font-weight: 900;
}

.visual-card-small.one { left: 8px; top: 42px; }
.visual-card-small.two { right: 2px; bottom: 54px; }

.gold-orbit {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201, 154, 68, 0.28);
  border-radius: 50%;
  animation: slowRotate 16s linear infinite;
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0;
}

.trust-strip article,
.filters-card,
.product-card,
.style-section,
.cart-panel,
.profile-panel,
.empty-state,
.mode-screen {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(13, 13, 13, 0.06);
}

.trust-strip article {
  padding: 20px;
  display: grid;
  gap: 8px;
}

.trust-strip strong {
  font-size: 15px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.products-shell {
  padding: 28px 0;
}

.section-head,
.filter-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 6px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.05em;
}

.section-head .ghost-button {
  color: var(--text);
  background: white;
  border-color: var(--line);
}

.filters-card {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(130px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 16px;
}

.filters-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filters-card input,
.filters-card select,
.form-grid input,
.form-grid select,
.form-grid textarea,
.discount-row input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf3;
  color: var(--text);
  padding: 10px 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.filters-card input:focus,
.filters-card select:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.discount-row input:focus {
  border-color: rgba(201, 154, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(201, 154, 68, 0.16);
}

.check-line {
  display: flex !important;
  align-items: center;
  grid-template-columns: none !important;
  gap: 10px !important;
  min-height: 44px;
  color: var(--text) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.check-line input {
  width: 18px;
  min-height: 18px;
}

.filter-summary {
  margin: 12px 0 20px;
  color: var(--muted);
  font-weight: 800;
}

.filter-summary button {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 900;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  animation: cardIn 360ms ease both;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-media {
  position: relative;
  height: 330px;
  background: linear-gradient(135deg, #ded4c7, #fffaf3);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 450ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.045);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(22, 22, 22, 0.28);
  font-weight: 1000;
  font-size: 42px;
  letter-spacing: -0.05em;
}

.favorite-toggle {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.favorite-toggle.active {
  background: var(--gold);
  color: #111;
}

.product-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  gap: 8px;
}

.badge {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #160f02;
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 1000;
}

.badge.low {
  background: #fecdca;
  color: #7a271a;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 8px 0 10px;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.new-price,
.normal-price {
  font-size: 22px;
  font-weight: 1000;
  color: #111;
}

.new-price {
  color: #a15c00;
}

.chip-row,
.size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0;
}

.color-chip,
.size-chip {
  border: 1px solid var(--line);
  background: #fffaf3;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.size-chip.disabled {
  opacity: 0.36;
  text-decoration: line-through;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.detail-button,
.small-button {
  background: #151515;
  color: white;
  border: 0;
}

.small-button.secondary,
.detail-button.secondary {
  background: #fffaf3;
  color: #111;
  border: 1px solid var(--line);
}

.style-section {
  margin-top: 26px;
  padding: 30px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  align-items: center;
}

.style-section h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.05em;
}

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

.site-footer {
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 22px 44px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.58);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeOnly 180ms ease both;
}

@keyframes fadeOnly {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.hidden {
  display: none;
}

.modal-card {
  width: min(1060px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: var(--paper);
  border-radius: 30px;
  position: relative;
  box-shadow: var(--shadow);
  animation: modalIn 220ms ease both;
}

@keyframes modalIn {
  from { transform: translateY(12px) scale(0.985); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.close-button,
.close-drawer {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: #111;
  color: white;
  font-size: 24px;
  display: grid;
  place-items: center;
}

.close-button {
  position: sticky;
  top: 14px;
  float: right;
  margin: 14px 14px -56px 0;
  z-index: 2;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  padding: 22px;
}

.gallery-main {
  height: 580px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ded4c7, #fffaf3);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.gallery-thumbs button {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border: 2px solid transparent;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

.gallery-thumbs button.active {
  border-color: var(--gold);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-panel {
  padding: 18px 10px 10px;
}

.product-info-panel h2 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-description {
  color: var(--muted);
  line-height: 1.7;
}

.option-title {
  display: block;
  margin: 20px 0 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-button {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf3;
  padding: 9px 13px;
  font-weight: 900;
}

.option-button.active {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.option-button:disabled {
  opacity: 0.36;
  text-decoration: line-through;
  cursor: not-allowed;
}

.qty-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.qty-row input {
  width: 94px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 12px;
  background: #fffaf3;
}

.delivery-note {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(201, 154, 68, 0.12);
  color: #4b3716;
  font-size: 13px;
  line-height: 1.5;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(0,0,0,0.45);
  animation: fadeOnly 180ms ease both;
}

.drawer-overlay.hidden {
  display: none;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(520px, 100%);
  height: 100vh;
  background: var(--paper);
  box-shadow: -24px 0 70px rgba(0,0,0,0.24);
  transform: translateX(104%);
  transition: transform 240ms ease;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #0f0f10;
  color: white;
}

.drawer-head h2 {
  margin: 6px 0 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.drawer-content {
  padding: 18px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffaf3;
  margin-bottom: 12px;
}

.cart-item-image {
  width: 82px;
  height: 96px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-2);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.cart-qty button,
.remove-item {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-weight: 900;
}

.remove-item {
  color: var(--danger);
}

.cart-summary,
.checkout-box,
.profile-box,
.order-history {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.56);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: var(--muted);
}

.summary-line strong {
  color: var(--text);
}

.summary-line.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
  color: var(--text);
  font-size: 20px;
  font-weight: 1000;
}

.discount-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 12px;
}

.discount-message,
.checkout-message,
.profile-message {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.discount-message.ok,
.checkout-message.ok,
.profile-message.ok {
  color: var(--success);
  font-weight: 800;
}

.discount-message.err,
.checkout-message.err,
.profile-message.err {
  color: var(--danger);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid label,
.consent-list label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.form-grid textarea {
  resize: vertical;
  min-height: 80px;
}

.consent-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.consent-list label {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--text);
  line-height: 1.45;
  font-weight: 700;
}

.consent-list input {
  margin-top: 2px;
}

.consent-list a {
  color: #875a09;
  text-decoration: underline;
}

.wide-button {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  border-radius: 16px;
}

.empty-state,
.mode-screen {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

.mode-screen {
  min-height: 520px;
}

.mode-screen h2 {
  color: var(--text);
  font-size: clamp(34px, 5vw, 64px);
  margin: 10px 0;
  letter-spacing: -0.05em;
}

.mode-screen.emergency {
  background: linear-gradient(135deg, #240b0b, #111);
  color: white;
}

.mode-screen.emergency h2 {
  color: white;
}

.skeleton-card {
  min-height: 450px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #eee4d6, #fffaf3, #eee4d6);
  background-size: 200% 100%;
  animation: skeleton 1.2s linear infinite;
}

@keyframes skeleton {
  to { background-position: -200% 0; }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 200;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  background: #111;
  color: white;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
  font-weight: 800;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 180;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(17,17,17,0.94);
  color: white;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 4px 0 0;
  color: #d8d0c4;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .announcement { justify-content: flex-start; overflow-x: auto; }
  .nav-links { display: none; }
  .navbar { align-items: flex-start; }
  .nav-actions { flex-wrap: wrap; justify-content: flex-end; }
  .hero { grid-template-columns: 1fr; padding: 34px; }
  .hero-visual { min-height: 320px; }
  .visual-card-main { height: 320px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .filters-card { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .gallery-main { height: min(520px, 70vw); }
  .style-section { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .navbar { padding: 12px; gap: 12px; }
  .brand { min-width: auto; }
  .brand-text small { display: none; }
  .nav-actions { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
  .icon-button, .cart-button { padding: 10px 8px; font-size: 12px; }
  main { padding: 14px; }
  .hero { border-radius: 24px; padding: 26px; min-height: auto; }
  .hero h1 { font-size: 40px; }
  .trust-strip, .filters-card, .form-grid, .site-footer { grid-template-columns: 1fr; }
  .section-head, .filter-summary, .site-footer { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { height: 390px; }
  .product-actions { grid-template-columns: 1fr; }
  .drawer { width: 100%; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item > .remove-item { grid-column: 2; width: auto; }
  .cookie-banner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

/* Venera Collection final store adjustments */
.logo-mark {
  padding: 0;
  overflow: hidden;
  background: #0f0f10;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text strong {
  letter-spacing: 0.02em;
}

.mode-full-screen {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 64px 18px;
}

.mode-card {
  width: min(720px, 100%);
  border-radius: 34px;
  padding: 46px;
  text-align: center;
  color: #f8efe1;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 154, 68, 0.18), transparent 38%),
    linear-gradient(145deg, #0b0b0c, #171717);
  border: 1px solid rgba(201, 154, 68, 0.35);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.mode-card h1 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.04em;
}

.mode-card p {
  margin: 0 auto;
  max-width: 520px;
  color: #d8cdbc;
  line-height: 1.7;
}

.brand-mini {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.store-mode-active .site-footer {
  display: none;
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .mode-card {
    padding: 34px 22px;
  }
}


/* Müşteri hızlı menüsü */
.customer-quickbar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 170;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 28px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(11, 11, 12, 0.92);
  border: 1px solid rgba(234, 210, 164, 0.35);
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
}

.customer-quickbar button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff7e8;
  font-weight: 900;
  transition: background 160ms ease, transform 160ms ease;
}

.customer-quickbar button:hover {
  background: rgba(234, 210, 164, 0.12);
  transform: translateY(-1px);
}

.customer-quickbar strong {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
}

body {
  padding-bottom: 86px;
}

@media (max-width: 640px) {
  .customer-quickbar {
    bottom: 10px;
    width: calc(100% - 18px);
    border-radius: 24px;
    grid-template-columns: repeat(4, 1fr);
  }

  .customer-quickbar button {
    min-height: 48px;
    font-size: 12px;
  }
}

/* Venera overlay fix: hızlı menü drawer/sepet/profil üstünü kapatmasın */
.drawer-overlay {
  z-index: 500 !important;
}

.drawer {
  z-index: 510 !important;
}

.drawer-content {
  padding-bottom: 128px !important;
}

.customer-quickbar {
  z-index: 120 !important;
}

body.no-scroll .customer-quickbar {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
}

@media (max-width: 640px) {
  .drawer-content {
    padding-bottom: 148px !important;
  }
}

/* Venera order-history status fix */
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.order-history-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.68);
}

.order-history-card.danger {
  border-color: rgba(138, 34, 34, 0.24);
  background: rgba(255, 244, 244, 0.78);
}

.order-history-card.ok {
  border-color: rgba(42, 115, 74, 0.22);
  background: rgba(245, 255, 249, 0.78);
}

.order-history-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.order-history-top small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.order-status {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(201, 161, 78, 0.15);
  color: #7b5b13;
}

.order-status.ok {
  background: rgba(42, 115, 74, 0.14);
  color: #20603b;
}

.order-status.danger {
  background: rgba(138, 34, 34, 0.12);
  color: #8a2222;
}

.order-items-mini {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.summary-line.compact {
  font-size: 15px;
  margin-top: 10px;
}


.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-social {
  margin-top: 14px;
}

.profile-social {
  margin-top: 12px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(201, 154, 68, 0.12);
  border: 1px solid rgba(201, 154, 68, 0.28);
  color: #191511;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-footer .social-pill {
  color: #f5ead5;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.social-pill:hover {
  transform: translateY(-1px);
  background: rgba(201, 154, 68, 0.2);
  border-color: rgba(201, 154, 68, 0.5);
}

.social-pill span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f4d48f);
  color: #17110a;
  font-size: 11px;
  letter-spacing: -0.02em;
}

.social-panel {
  margin-top: 14px;
}

/* Venera v7: hero sosyal alan + ürün reklam kaydırıcısı */
.hero-social {
  margin-top: 24px;
  justify-content: flex-start;
}

.hero-social.empty {
  display: none;
}

.promo-visual {
  min-height: 520px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.promo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #0a0a0a, #211a10);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  cursor: pointer;
}

.promo-carousel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(234, 210, 164, 0.24);
  border-radius: 33px;
  pointer-events: none;
  z-index: 5;
}

.promo-track {
  display: flex;
  height: 100%;
  min-height: 520px;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.promo-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.promo-slide-fallback {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  font-size: clamp(100px, 16vw, 220px);
  font-family: Georgia, serif;
  color: rgba(234, 210, 164, 0.55);
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 154, 68, 0.25), transparent 34%),
    linear-gradient(135deg, #111, #1b1710);
}

.promo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.7)),
    linear-gradient(90deg, rgba(0,0,0,0.72), transparent 50%);
}

.promo-overlay {
  position: absolute;
  left: 28px;
  bottom: 30px;
  right: 130px;
  z-index: 2;
  color: #fff;
}

.promo-overlay span {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.promo-overlay strong {
  display: block;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(0,0,0,0.38);
}

.promo-price {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 950;
  letter-spacing: -0.04em;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.promo-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.promo-carousel:hover .promo-arrow,
.promo-carousel:focus-within .promo-arrow {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.promo-arrow:hover {
  background: rgba(201, 154, 68, 0.82);
}

.promo-prev { left: 18px; }
.promo-next { right: 18px; }

.promo-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.promo-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.45);
  transition: width 180ms ease, background 180ms ease;
}

.promo-dots button.active {
  width: 24px;
  background: var(--gold);
}

@media (max-width: 980px) {
  .hero-social {
    justify-content: center;
  }

  .promo-visual,
  .promo-carousel,
  .promo-track,
  .promo-slide,
  .promo-slide img,
  .promo-slide-fallback {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .promo-visual,
  .promo-carousel,
  .promo-track,
  .promo-slide,
  .promo-slide img,
  .promo-slide-fallback {
    min-height: 340px;
  }

  .promo-overlay {
    left: 18px;
    bottom: 64px;
    right: 18px;
  }

  .promo-price {
    right: 18px;
    bottom: 18px;
    font-size: 17px;
  }

  .promo-arrow {
    opacity: 1;
    pointer-events: auto;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

/* Venera v8: sosyal medya alanı daha belirgin + gerçek ikon görünümü */
.hero-social-box {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  align-items: start;
}

.hero-social-box.empty,
.social-showcase.empty {
  display: none;
}

.follow-title,
.social-showcase > div > strong {
  display: block;
  color: var(--gold-soft);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
}

.social-showcase {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.7fr;
  gap: 22px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 42px);
  border-radius: 0 0 30px 30px;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 154, 68, 0.18), transparent 32%),
    linear-gradient(135deg, #171310, #070707 72%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.social-showcase .eyebrow {
  color: rgba(255, 255, 255, 0.64);
  margin-bottom: 5px;
}

.home-social,
.hero-social {
  gap: 12px;
}

.social-pill {
  min-height: 46px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #120f0b;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  text-decoration: none;
}

.social-pill em {
  font-style: normal;
  color: inherit;
}

.hero-social .social-pill,
.home-social .social-pill {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(244, 212, 143, 0.62);
  color: #15110d;
}

.social-pill:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.social-pill .social-icon,
.social-pill span.social-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #111;
  color: #fff;
  overflow: hidden;
}

.social-pill .social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-pill.instagram .social-icon {
  background: radial-gradient(circle at 30% 115%, #fdf497 0 18%, #fd5949 43%, #d6249f 62%, #285AEB 100%);
}

.social-pill.whatsapp .social-icon {
  background: #25d366;
}

.social-pill.tiktok .social-icon {
  background: #050505;
}

.social-pill.facebook .social-icon {
  background: #1877f2;
}

.social-pill.youtube .social-icon {
  background: #ff0033;
}

.social-pill.x .social-icon {
  background: #000;
}

.site-footer .social-pill,
.profile-social .social-pill {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(201, 154, 68, 0.4);
  color: #14110d;
}

@media (max-width: 780px) {
  .social-showcase {
    grid-template-columns: 1fr;
    text-align: center;
    border-radius: 0 0 24px 24px;
  }

  .home-social,
  .hero-social {
    justify-content: center;
  }
}


/* Venera v9: sosyal medya ikonları daha parlak ve ana sayfada daha görünür */
.hero-social-box {
  margin-top: 30px !important;
  padding: 18px 18px 20px !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(201,154,68,0.16)) !important;
  border: 1px solid rgba(244,212,143,0.38) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,0.28) !important;
  backdrop-filter: blur(16px) !important;
}

.follow-title,
.social-showcase > div > strong {
  color: #ffd86f !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-weight: 1000 !important;
  text-shadow: 0 0 18px rgba(255,216,111,0.28), 0 10px 34px rgba(0,0,0,0.5) !important;
}

.home-social,
.hero-social,
.footer-social,
.profile-social {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
}

.social-pill,
.hero-social .social-pill,
.home-social .social-pill,
.site-footer .social-pill,
.profile-social .social-pill {
  min-height: 52px !important;
  padding: 10px 18px 10px 10px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fffaf0, #f7d992) !important;
  border: 1px solid rgba(255,255,255,0.88) !important;
  color: #12100c !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  box-shadow: 0 16px 42px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.95) !important;
  opacity: 1 !important;
  filter: none !important;
}

.social-pill:hover,
.hero-social .social-pill:hover,
.home-social .social-pill:hover {
  transform: translateY(-3px) !important;
  background: linear-gradient(135deg, #ffffff, #ffe29a) !important;
  box-shadow: 0 22px 58px rgba(0,0,0,0.32), 0 0 22px rgba(255,216,111,0.24) !important;
}

.social-pill .social-icon,
.social-pill span.social-icon,
.social-pill span:not([id]) {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 999px !important;
  color: #fff !important;
  display: inline-grid !important;
  place-items: center !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22) !important;
}

.social-pill .social-icon svg,
.social-pill span.social-icon svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.15 !important;
}

.social-showcase {
  margin-top: 0 !important;
  border-radius: 0 0 36px 36px !important;
  background: radial-gradient(circle at 15% 15%, rgba(255,216,111,0.18), transparent 34%), linear-gradient(135deg, #21170d, #060606 78%) !important;
  border-top: 1px solid rgba(255,255,255,0.16) !important;
  border-bottom: 1px solid rgba(244,212,143,0.22) !important;
}

@media (max-width: 780px) {
  .social-pill,
  .hero-social .social-pill,
  .home-social .social-pill {
    min-height: 48px !important;
    font-size: 14px !important;
  }
}
