:root {
  --bg: #0a0a0a;
  --red: #e4002b;
  --red-dark: #b80022;
  --text: #ffffff;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --header-bg: #000000;
  --footer-bg: #000000;
  --category-bg: #111111;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

/* Top bar */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-align: center;
  padding: 10px 16px;
  color: #fff;
}
.topbar a { color: var(--red); font-weight: 700; margin-left: 10px; }
.topbarGlow {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}
.topbarRain {
  position: absolute;
  inset: -4px -10px;
  pointer-events: none;
  overflow: hidden;
  border-radius: 4px;
  background-image:
    radial-gradient(circle, rgba(255, 215, 120, 0.95) 0.6px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0.5px, transparent 1px),
    radial-gradient(circle, rgba(228, 0, 43, 0.75) 0.5px, transparent 1px),
    radial-gradient(circle, rgba(255, 215, 120, 0.7) 0.4px, transparent 0.9px);
  background-size: 38px 52px, 52px 64px, 44px 58px, 60px 70px;
  background-position: 0 -52px, 18px -64px, 8px -58px, 30px -70px;
  animation: topbarSparkleRain 2.8s linear infinite;
  opacity: 0.75;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.topbarText {
  position: relative;
  z-index: 1;
}
@keyframes topbarSparkleRain {
  to {
    background-position: 0 52px, 18px 64px, 8px 58px, 30px 70px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .topbarRain { animation: none; opacity: 0.35; }
}

/* Header */
.header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logoMarkRg {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, #9a7209 0%, #ffd700 42%, #f5e6a8 58%, #c9a227 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(212, 175, 55, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 215, 0, 0.5);
}
.logoRgR {
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  color: #1a0f00;
  line-height: 1;
  letter-spacing: -1px;
}
.logoRgG {
  font-size: 14px;
  font-weight: 800;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  color: #2a1800;
  margin-left: -1px;
  margin-top: 2px;
}
.logoMarkImg {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}
.logoText { font-size: 22px; font-weight: 800; letter-spacing: 0.5px; }
.logoText span { color: var(--red); }
.logoTag {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}
.headerContact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.headerContactLabel { white-space: nowrap; }
.headerContact a { color: #fff; font-weight: 600; white-space: nowrap; }
.headerContact a:hover { color: var(--red); }
.headerIcons { display: flex; align-items: center; gap: 14px; }
.headerIcons a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 16px;
  background: rgba(255,255,255,0.03);
}
.headerIcons a.wa { background: var(--red); border-color: var(--red); font-size: 11px; font-weight: 800; }

/* Navbar */
.mainNav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.navLink {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.navLink:hover, .navLink.open { color: #fff; background: rgba(255,255,255,0.06); }
.navAdmin { color: var(--red) !important; }
.navDropdown { position: relative; }
.navDropdownMenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  box-shadow: var(--shadow);
  z-index: 60;
  margin-top: 4px;
}
.navDropdownItem {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  border-radius: 8px;
  color: var(--muted);
}
.navDropdownItem:hover { background: rgba(255,255,255,0.06); color: #fff; }
.headerRight { display: flex; align-items: center; gap: 16px; }
.headerWa {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--red);
  border: 1px solid var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.headerWa:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}
.headerWaIcon {
  width: 22px;
  height: 22px;
  fill: #fff;
  display: block;
}

/* Hero — split like reference */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.heroCarousel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.heroSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.heroSlide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.heroSlide.leaving {
  opacity: 0;
  transform: translateX(-30px);
}
.heroDots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.heroDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.heroDot.active { background: var(--red); }
.heroImage {
  background-size: cover;
  background-position: center top;
  min-height: 380px;
}
.heroContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  background: var(--header-bg);
}
.heroEyebrow {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.heroHeadline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--red);
  margin: 0 0 8px;
}
.heroAccent {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.heroSub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btnRed {
  background: var(--red);
  color: #fff;
}
.btnRed:hover { background: var(--red-dark); }
.btnOutline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.btnOutline:hover { border-color: #fff; }
.btnSmall { padding: 10px 18px; font-size: 13px; }
.btnBlock { width: 100%; }

/* Products */
.productsSection {
  padding: 48px 0 64px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.sectionHead {
  text-align: center;
  margin-bottom: 32px;
}
.sectionHead h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.sectionHead p { color: var(--muted); font-size: 14px; margin: 0; }

.productGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.productCard {
  background: var(--category-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.productCard:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 0, 43, 0.45);
  box-shadow: 0 20px 50px rgba(228, 0, 43, 0.12);
}
.productImg {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}
.productCard:hover .productImg { transform: scale(1.04); }
.productBody { padding: 16px; }
.productName { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.productDetails {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  min-height: 38px;
  margin-bottom: 12px;
}
.productPrice {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
}
.productActions {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.productActionsRow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.productImgClick { cursor: pointer; }

/* Collections */
.collectionsPreview {
  padding: 48px 0;
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
}
.collectionsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.collectionCard {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.collectionCard:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 0, 43, 0.4);
}
.collectionCard h3 { margin: 0 0 8px; font-size: 16px; }
.collectionCard p { color: var(--muted); font-size: 13px; margin: 0 0 12px; line-height: 1.5; }
.collectionLink { color: var(--red); font-size: 13px; font-weight: 700; }

/* Footer / contact */
.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: var(--footer-bg);
}
.footerInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer h3 { margin: 0 0 10px; font-size: 18px; }
.footer p { color: var(--muted); line-height: 1.6; font-size: 14px; margin: 0; }
.footer a { color: var(--red); font-weight: 600; }
.footBottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

/* Modal */
.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
}
.modal {
  width: min(520px, 100%);
  background: #141414;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.modalTitle { font-weight: 800; font-size: 16px; }
.modalClose {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}
.modalBody { padding: 18px; }
.field { display: block; margin-bottom: 12px; }
.fieldLabel { font-size: 12px; color: var(--muted); margin-bottom: 6px; display: block; }
.req { color: var(--red); }
.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.input:focus { border-color: var(--red); }
.input:disabled,
.select:disabled,
textarea.input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.modalClose:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.modalActions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.alert {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.alert.error { background: rgba(228,0,43,0.15); border: 1px solid rgba(228,0,43,0.35); }
.alert.ok { background: rgba(40,160,80,0.15); border: 1px solid rgba(40,160,80,0.35); }
.alert.info { background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--muted); }

.orderSuccess {
  text-align: center;
  padding: 12px 4px 4px;
  animation: successIn 0.35s ease;
}
.successIcon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: #6ee7a0;
  background: rgba(40, 160, 80, 0.18);
  border: 2px solid rgba(40, 160, 80, 0.45);
  box-shadow: 0 0 0 8px rgba(40, 160, 80, 0.08);
}
.successTitle {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.successText {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
@keyframes successIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Admin */
.adminShell { min-height: 100vh; padding: 24px 0 48px; background: #0a0a0a; }
.adminCard {
  max-width: 420px;
  margin: 60px auto;
  padding: 24px;
  background: #141414;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.adminTop {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.adminTitle { font-size: 20px; font-weight: 800; }
.adminActions { display: flex; gap: 10px; flex-wrap: wrap; }
.adminGrid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.adminPanel {
  background: #141414;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.adminPanelWide { grid-column: 1 / -1; }
.panelTitle { font-weight: 800; margin-bottom: 12px; font-size: 15px; }
.productEditor {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}
.productEditor:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.orderItem {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 14px;
}
.orderItemUnread {
  background: rgba(228, 0, 43, 0.06);
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 10px;
}
.orderItemTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.orderBadges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.orderBadgeUnread {
  background: rgba(228, 0, 43, 0.2);
  color: #ff8a9a;
  border: 1px solid rgba(228, 0, 43, 0.45);
}
.orderBadgePending {
  background: rgba(255, 193, 7, 0.15);
  color: #ffd666;
  border: 1px solid rgba(255, 193, 7, 0.35);
}
.orderMeta {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
}
.orderDate {
  font-size: 12px;
}
.orderInboxHint {
  margin: 0 0 14px;
  line-height: 1.45;
}
.orderNotice {
  margin: 0 0 14px;
}
.orderFlags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.orderFlag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.orderFlag input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}
.orderDeleteBtn {
  margin-left: auto;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.select {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0a0a0a;
  color: #fff;
}
.muted { color: var(--muted); font-size: 13px; }
.link { color: var(--red); text-decoration: underline; }
.smallLink { font-size: 13px; display: inline-block; margin-top: 12px; }

/* Reviews */
.reviewsSection {
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.reviewCard {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.reviewStars { color: var(--red); font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.reviewText { color: rgba(255,255,255,0.88); line-height: 1.55; font-size: 14px; margin: 0 0 14px; }
.reviewName { font-weight: 700; font-size: 14px; color: var(--muted); }

/* Admin extras */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.badge.on { background: rgba(40,160,80,0.2); color: #6ee7a0; border: 1px solid rgba(40,160,80,0.35); }
.badge.off { background: rgba(255,255,255,0.06); color: var(--muted); border: 1px solid var(--line); }
.adminRow { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.uploadBox { margin-top: 8px; }
.uploadPreview {
  width: 100%;
  max-width: 200px;
  height: 120px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  margin-top: 8px;
}
.fileInput {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.hint { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Verified badge */
.verifiedBadge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(40,160,80,0.2);
  color: #6ee7a0;
  border: 1px solid rgba(40,160,80,0.35);
}

/* Star rating */
.starRating { display: flex; gap: 4px; }
.starBtn {
  background: none;
  border: none;
  font-size: 22px;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.starBtn.filled { color: var(--red); }
.starRating.readonly .starBtn { cursor: default; }

/* Review & comment forms */
.reviewForm, .commentForm {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-top: 12px;
}
.reviewFormHint { font-size: 13px; color: var(--muted); margin: 0 0 12px; line-height: 1.5; }
.siteReviewFormSection {
  margin-top: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.siteReviewFormTitle { text-align: center; margin-bottom: 16px; font-size: 20px; }

/* Product modal reviews */
.productModalImg {
  height: 200px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
}
.productModalDetails { color: var(--muted); font-size: 14px; line-height: 1.5; }
.productModalPrice { font-size: 22px; font-weight: 800; color: var(--red); margin: 12px 0; }
.productReviewsBlock { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.productReviewsTitle { margin: 0 0 12px; font-size: 16px; }
.productReviewItem {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}
.productReviewFormWrap { margin-top: 16px; }
.productReviewFormWrap h5 { margin: 0 0 8px; font-size: 14px; }

/* Page shell */
.pageShell { min-height: 100vh; background: var(--bg); color: var(--text); }
.pageSection {
  padding: 40px 0 64px;
  border-top: 1px solid var(--line);
}
.backLink {
  display: inline-block;
  color: var(--red);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Articles */
.articlesGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.articleCard {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.articleCard:hover { transform: translateY(-4px); border-color: rgba(228,0,43,0.35); }
.articleCardLink { display: block; }
.articleCardImg {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.articleCardBody { padding: 20px; }
.articleDate { font-size: 12px; color: var(--muted); }
.articleCardTitle { margin: 8px 0; font-size: 20px; font-weight: 800; line-height: 1.3; }
.articleCardExcerpt { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0 0 12px; }
.articleReadMore { color: var(--red); font-size: 13px; font-weight: 700; }

.articleHero {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.articleHeroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.articleTitle { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin: 8px 0; line-height: 1.15; }
.articleExcerpt { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 60ch; margin: 0; }
.articleContent { padding: 40px 16px; max-width: 720px; }
.articlePara { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.9); margin: 0 0 20px; }

.btnMiniReview {
  width: 100%;
  margin-top: 8px;
  padding: 5px 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.2px;
}
.btnMiniReview:hover { color: var(--red); }


/* Articles — title list design */
.articlesContainer { max-width: 860px; }
.articleList { display: flex; flex-direction: column; gap: 14px; }
.articleListItem {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.articleListItem:hover {
  transform: translateX(4px);
  border-color: rgba(228, 0, 43, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.articleListLink { display: block; padding: 22px 24px; }
.articleListTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.articleLangBadge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(228, 0, 43, 0.12);
  color: var(--red);
  border: 1px solid rgba(228, 0, 43, 0.3);
}
.articleListDate { font-size: 12px; color: var(--muted); }
.articleListTitle {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.articleListPreview {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.articleListCta { color: var(--red); font-size: 13px; font-weight: 700; }
.articlesEmpty {
  text-align: center;
  padding: 48px 24px;
  background: var(--category-bg);
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
}
.articleDetailPage {
  max-width: 800px;
  margin: 0 auto;
  padding: 8px 16px 48px;
}
.articleDetailHeader { margin-bottom: 20px; }
.articleDetailTitle {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  margin: 10px 0;
}
.articleDetailLead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
.articleDetailCover {
  height: 260px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}
.articleDetailBody { padding-bottom: 28px; }
.articleUrdu .articlePara,
.articleUrdu .articleDetailTitle,
.articleUrdu .articleDetailLead,
.articleUrdu .articleListTitle {
  font-family: "Segoe UI", "Jameel Noori Nastaleeq", "Noto Nastaliq Urdu", Tahoma, Arial, sans-serif;
  line-height: 1.95;
}
.adminArticlesHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.articlesAdminEmpty {
  text-align: center;
  padding: 32px 16px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  margin-bottom: 16px;
}
.btnFab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(228, 0, 43, 0.35);
  transition: transform 0.15s;
}
.btnFab:hover { transform: scale(1.06); }

/* Comments */
.commentsSection { padding: 0 16px 48px; max-width: 720px; }
.commentsTitle { font-size: 20px; margin-bottom: 16px; }
.commentsList { margin-bottom: 20px; }
.commentItem {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.commentAuthor { font-weight: 700; font-size: 14px; }
.commentDate { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.commentText { margin: 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.88); }
.commentFormWrap h4 { margin: 0 0 12px; font-size: 16px; }

/* Videos */
.videoSectionBlock { margin-bottom: 48px; }
.videoSectionBlock:last-child { margin-bottom: 0; }
.videoGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.videoCard {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.videoEmbedWrap {
  position: relative;
  width: 100%;
  background: #000;
}
.videoEmbedWrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.aspectLandscape { padding-top: 56.25%; }
.aspectPortrait { padding-top: 177.78%; max-width: 320px; margin: 0 auto; }
.videoCard.portrait { max-width: 360px; }
.videoCardBody { padding: 16px; }
.videoAspectBadge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(228,0,43,0.15);
  color: var(--red);
  margin-bottom: 8px;
}
.videoTitle { margin: 0 0 12px; font-size: 16px; font-weight: 700; }
.videoComments { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }

/* Admin tabs */
.adminTabs {
  max-width: 1200px;
  margin: 0 auto 16px;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.adminTab {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #141414;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.adminTab.active { background: var(--red); border-color: var(--red); color: #fff; }
.adminGridSingle { grid-template-columns: 1fr !important; }
.adminAlert { max-width: 1200px; margin: 0 auto 12px; padding: 0 16px; }
.colorField { display: flex; gap: 10px; align-items: center; }
.colorField input[type="color"] {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  background: transparent;
}
.colorField .input { flex: 1; }
.videoAdminSection { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.videoAdminSection h4 { margin: 0 0 12px; }
.commentEditor { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); }
.selectBlock { width: 100%; padding: 12px 14px; }

/* Order success & cooldown */
.orderSuccessId {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin: 16px 0;
  text-align: center;
}
.orderSuccessIdLabel {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.orderSuccessId strong {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--red);
}
.successTrackHint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px;
}
.orderSuccessActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.orderCooldownBanner p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.cooldownTimer {
  color: #fff;
  font-weight: 800;
}

/* Track order page */
.trackPageInner { max-width: 720px; }
.trackForm {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
}
.trackEmpty { text-align: center; padding: 24px 0; }
.trackOrdersList { display: flex; flex-direction: column; gap: 18px; }
.trackOrderCard {
  background: var(--category-bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.trackOrderTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.trackOrderId { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.trackOrderProduct { font-size: 18px; }
.trackOrderPrice { color: var(--red); font-weight: 800; margin-top: 4px; }
.trackOrderDate { font-size: 13px; color: var(--muted); margin: 10px 0 16px; }
.trackStatusBadge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(228,0,43,0.15);
  color: var(--red);
  border: 1px solid rgba(228,0,43,0.35);
  white-space: nowrap;
}
.trackStatusBadge.status-delivered {
  background: rgba(40,160,80,0.2);
  color: #6ee7a0;
  border-color: rgba(40,160,80,0.35);
}
.trackStatusBadge.status-shipped {
  background: rgba(255,193,7,0.15);
  color: #ffd666;
  border-color: rgba(255,193,7,0.35);
}
.trackOrderNote {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
}
.trackingTimeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.trackingStep {
  text-align: center;
  opacity: 0.35;
}
.trackingStep.done { opacity: 1; }
.trackingStep.current .trackingDot {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(228,0,43,0.2);
}
.trackingDot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  margin: 0 auto 8px;
}
.trackingStepLabel {
  font-size: 10px;
  line-height: 1.35;
  color: var(--muted);
}
.trackingStep.done .trackingStepLabel { color: rgba(255,255,255,0.85); }

@media (max-width: 900px) {
  .trackingTimeline { grid-template-columns: 1fr; }
  .trackingStep { display: flex; align-items: center; gap: 10px; text-align: left; }
  .trackingDot { margin: 0; flex-shrink: 0; }
}
  .reviewsGrid { grid-template-columns: 1fr; }
  .collectionsGrid { grid-template-columns: repeat(2, 1fr); }
  .articlesGrid { grid-template-columns: 1fr; }
  .videoGrid { grid-template-columns: 1fr; }
  .mainNav { order: 3; width: 100%; justify-content: center; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .heroImage { min-height: 280px; }
  .heroContent { padding: 32px 24px; }
  .productGrid { grid-template-columns: repeat(2, 1fr); }
  .footerInner { grid-template-columns: 1fr; }
  .adminGrid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .productGrid { grid-template-columns: 1fr; }
  .collectionsGrid { grid-template-columns: 1fr; }
  .headerContact { display: none; }
  .mainNav { gap: 2px; }
  .navLink { padding: 6px 8px; font-size: 12px; }
}
