:root {
  --primary: #0f1419;
  --accent: #3d5a73;
  --accent-soft: #eef3f7;
  --secondary: #243545;
  --bg: #fbfcfd;
  --bg-soft: #f1f4f7;
  --bg-light: #f1f4f7;
  --text: #151b21;
  --text-light: #66707a;
  --border: #dde3e9;
  --sale: #a33b2d;
  --error: #a33b2d;
  --success: #2f6b4f;
  --shadow: 0 12px 28px rgba(15, 20, 25, 0.07);
  --radius: 2px;
  --transition: all 0.25s ease;
  --font: "Manrope", sans-serif;
  --display: "Libre Baskerville", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* Announcement */
.announcement-bar {
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.announcement-text { text-align: center; }

/* Header — single aligned row */
header {
  background: rgba(255,255,255,0.96);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-bar {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.header-left,
.header-right {
  display: flex;
  align-items: center;
  min-height: 72px;
}
.header-left { justify-content: flex-start; gap: 10px; }
.header-right { justify-content: flex-end; gap: 18px; }
.logo {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--primary);
  text-align: left;
}
.header-email,
.header-phone {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.header-email:hover,
.header-phone:hover { color: var(--accent); }
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 1.05rem;
  color: var(--primary);
}
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--accent); color: #fff;
  font-size: 0.62rem; min-width: 16px; height: 16px; border-radius: 999px;
  display: none; align-items: center; justify-content: center; font-weight: 700; padding: 0 4px;
}
.mobile-menu-btn {
  display: none; background: none; border: none; font-size: 1.15rem; cursor: pointer; color: var(--primary); width: 40px; height: 40px;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nav-bar ul {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.nav-bar a {
  display: inline-flex;
  align-items: center;
  height: 72px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); position: relative;
}
.nav-bar a:hover, .nav-bar a.active { color: var(--primary); opacity: 0.7; }
.nav-bar a::after {
  content: ""; position: absolute; left: 0; bottom: 22px; width: 0; height: 1px; background: var(--primary); transition: var(--transition);
}
.nav-bar a:hover::after, .nav-bar a.active::after { width: 100%; }
.nav-bar a.active { opacity: 1; }
#main-nav { display: none; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; max-width: 1400px; margin: 0 auto; min-height: 72px;
}
.checkout-header-right { display: flex; align-items: center; gap: 20px; }
.back-to-cart, .secure-badge { font-size: 0.85rem; color: var(--primary); }
.back-to-cart:hover { opacity: 0.7; }

/* Mobile nav */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1090;
}
.mobile-nav-overlay.active { display: block; }
#main-nav.active {
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 340px);
  background: #fff; z-index: 1100; padding: 24px 20px; box-shadow: var(--shadow);
}
#main-nav ul { display: grid; gap: 4px; margin-top: 28px; }
#main-nav a {
  display: block; padding: 12px 4px; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary);
}
.mobile-nav-close {
  position: absolute; top: 16px; right: 16px; border: none; background: none; font-size: 1.2rem; cursor: pointer;
}

/* Hero Swiper — separate PC / mobile banners */
.hero-swiper-wrap {
  position: relative;
  background: #111;
}
.hero-swiper {
  width: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  height: 70vh;
  min-height: 520px;
  max-height: 760px;
}
.hero-slide-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
}
.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 48px 24px 56px;
  background: linear-gradient(90deg, rgba(10,14,20,0.45) 0%, rgba(10,14,20,0.12) 55%, transparent 100%);
  pointer-events: none;
}
.hero-slide-content {
  max-width: 520px;
  margin-left: max(0px, calc((100vw - 1320px) / 2));
}
.hero-slide-content .hero-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.92;
  font-family: var(--font);
}
.hero-slide-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero-slide-content .btn {
  pointer-events: auto;
}
.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
  width: 8px;
  height: 8px;
}
.hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #fff;
  width: 44px;
  height: 44px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  border-radius: 999px;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}
.hero-swiper .swiper-button-prev { left: 16px; }
.hero-swiper .swiper-button-next { right: 16px; }

/* Legacy hero kept for safety if referenced elsewhere */
.hero {
  position: relative; min-height: min(78vh, 720px); display: grid; place-items: end start; overflow: hidden;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,14,20,0.55) 0%, rgba(10,14,20,0.18) 55%, rgba(10,14,20,0.05) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: #fff; max-width: 560px; padding: 72px 24px 72px;
  margin-left: max(0px, calc((100vw - 1320px) / 2));
}
.hero-tag {
  display: inline-block; margin-bottom: 14px; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; opacity: 0.9;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 14px; color: #fff; }
.hero p { font-size: 1.02rem; color: rgba(255,255,255,0.88); margin-bottom: 28px; max-width: 420px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1px solid transparent; cursor: pointer; transition: var(--transition);
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.85); }
.btn-ghost:hover { background: #fff; color: var(--primary); }
.btn-outline { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-outline.dark,
.cart-summary .btn-outline,
.checkout-page .btn-outline {
  color: var(--primary);
  border-color: var(--border);
}
.btn-outline.dark:hover,
.cart-summary .btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.7rem; }

/* Sections */
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header-row {
  display: flex; align-items: end; justify-content: space-between; gap: 16px; text-align: left; margin-bottom: 28px;
}
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 8px; }
.section-header p { color: var(--text-light); font-size: 0.95rem; }
.section-tag {
  display: block; margin-bottom: 8px; font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); font-weight: 600; font-family: var(--font);
}
.text-link {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  border-bottom: 1px solid var(--primary); padding-bottom: 2px;
}
.text-link:hover { color: var(--accent); border-color: var(--accent); }

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.categories-grid-4 { grid-template-columns: repeat(4, 1fr); }
.category-card {
  position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: var(--bg-soft);
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55) 100%);
}
.category-content {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 18px; color: #fff; z-index: 1;
}
.category-content h3 { font-size: 1.35rem; margin-bottom: 4px; }
.shop-link { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-card { display: flex; flex-direction: column; gap: 12px; }
.product-image { position: relative; overflow: hidden; background: var(--bg-soft); aspect-ratio: 3 / 4; }
.product-media { display: block; width: 100%; height: 100%; position: relative; }
.product-media img {
  width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s ease, transform 0.45s ease;
}
.product-media .img-hover {
  position: absolute; inset: 0; opacity: 0;
}
.product-card:hover .img-primary { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-primary,
.product-card:hover .img-hover { transform: scale(1.03); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: #fff; color: var(--primary); font-size: 0.65rem; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 700; padding: 6px 9px;
}
.badge.sale { background: var(--sale); color: #fff; }
.quick-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  border: none; background: #fff; color: var(--primary); padding: 12px;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  cursor: pointer; opacity: 0; transform: translateY(8px); transition: var(--transition);
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--primary); color: #fff; }
.product-info { display: grid; gap: 4px; }
.product-cat {
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); font-weight: 600;
}
.product-info h3 { font-family: var(--font); font-size: 0.92rem; font-weight: 500; line-height: 1.35; }
.product-info h3 a:hover { color: var(--accent); }
.price { font-size: 0.92rem; font-weight: 600; }
.price .original, .price-display .original {
  margin-left: 8px; color: var(--text-light); font-weight: 400; text-decoration: line-through; font-size: 0.86rem;
}

/* Promo band */
.promo-band { background: var(--accent-soft); padding: 42px 0; }
.promo-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.promo-band h2 { font-size: 1.7rem; margin-bottom: 6px; }
.promo-band p { color: var(--text-light); }

/* Features */
.features {
  border-top: 1px solid var(--border);
  padding-bottom: 48px;
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-item { text-align: center; padding: 8px 10px; }
.feature-item .icon {
  width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 999px; background: var(--bg-soft);
  display: grid; place-items: center; color: var(--accent);
}
.feature-item h4 { font-family: var(--font); font-size: 0.92rem; margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.feature-item p { color: var(--text-light); font-size: 0.88rem; }

/* Newsletter */
.newsletter {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 56px 20px;
  margin: 0;
}
.newsletter h2 { color: #fff; margin-bottom: 10px; font-size: 2rem; }
.newsletter p { color: rgba(255,255,255,0.78); margin-bottom: 22px; }
.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.25);
}
.newsletter-form input {
  flex: 1; border: none; background: transparent; color: #fff; padding: 14px 16px; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
  border: none; background: #fff; color: var(--primary); padding: 0 22px;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; cursor: pointer;
}

/* Page banner / shop */
.page-banner { background: var(--bg-soft); padding: 42px 0 30px; border-bottom: 1px solid var(--border); }
.page-banner h1 { font-size: 2rem; margin-bottom: 8px; }
.breadcrumb { color: var(--text-light); font-size: 0.86rem; }
.breadcrumb a:hover { color: var(--accent); }
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 36px 0 64px; }
.shop-sidebar .filter-group { margin-bottom: 28px; }
.shop-sidebar h3 {
  font-family: var(--font); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px; font-weight: 700;
}
.shop-sidebar a, .shop-sidebar label {
  display: block; padding: 7px 0; color: var(--text-light); font-size: 0.9rem;
}
.shop-sidebar a.active, .shop-sidebar a:hover { color: var(--primary); font-weight: 600; }
.shop-sidebar label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 22px;
}
.result-count { color: var(--text-light); font-size: 0.88rem; }
.shop-toolbar select {
  border: 1px solid var(--border); background: #fff; padding: 10px 12px; min-width: 180px;
}
.empty-state { padding: 40px 0; color: var(--text-light); }

/* Product detail */
.product-detail {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; padding: 20px 0 64px;
}
.product-gallery .main-image { background: var(--bg-soft); overflow: hidden; }
.product-gallery .main-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.thumbnails img {
  aspect-ratio: 1; object-fit: cover; cursor: pointer; border: 1px solid transparent; opacity: 0.75;
}
.thumbnails img.active, .thumbnails img:hover { opacity: 1; border-color: var(--primary); }
.product-details h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 6px 0 12px; }
.price-display { font-size: 1.25rem; font-weight: 600; margin-bottom: 16px; }
.description { color: var(--text-light); margin-bottom: 24px; }
.size-selector, .quantity-selector, .color-selector { margin-bottom: 20px; }
.size-selector label, .quantity-selector label, .color-selector label {
  display: block; margin-bottom: 10px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-options button {
  min-width: 44px; height: 42px; padding: 0 12px; border: 1px solid var(--border); background: #fff; cursor: pointer;
}
.size-options button.active, .size-options button:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.quantity-selector { display: flex; align-items: center; gap: 10px; }
.quantity-selector button {
  width: 40px; height: 40px; border: 1px solid var(--border); background: #fff; cursor: pointer;
}
.quantity-selector input {
  width: 56px; height: 40px; text-align: center; border: 1px solid var(--border);
}
.add-to-cart-section { margin: 22px 0; }
.product-meta { border-top: 1px solid var(--border); padding-top: 18px; color: var(--text-light); font-size: 0.88rem; }
.product-meta p { margin-bottom: 6px; }

/* Content pages */
.content-page { padding: 48px 0 72px; max-width: 820px; }
.content-page h1 { margin-bottom: 18px; }
.content-page h2 { font-size: 1.25rem; margin: 28px 0 10px; font-family: var(--font); letter-spacing: 0.02em; }
.content-page p, .content-page li { color: var(--text-light); margin-bottom: 10px; }
.content-page ul { padding-left: 18px; list-style: disc; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.contact-info-box { background: var(--bg-soft); padding: 20px; }
.contact-info-box h3 { font-family: var(--font); font-size: 0.95rem; margin-bottom: 8px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 16px 0;
  font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; gap: 12px;
}
.faq-answer { display: none; padding: 0 0 16px; color: var(--text-light); }
.faq-item.active .faq-answer { display: block; }

/* Cart / checkout basics */
.container.cart-page, .container.checkout-page { padding: 28px 20px 64px; }
.cart-content { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 28px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px 8px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
.cart-item-info { display: flex; gap: 12px; align-items: center; }
.cart-item-info img { width: 72px; height: 90px; object-fit: cover; }
.cart-qty { display: inline-flex; align-items: center; gap: 6px; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.cart-qty input { width: 36px; text-align: center; border: 1px solid var(--border); height: 28px; }
.cart-summary, .checkout-summary { background: var(--bg-soft); padding: 22px; }
.empty-cart { text-align: center; padding: 60px 20px; }

/* Footer */
footer {
  background: #111;
  color: rgba(255,255,255,0.78);
  padding: 56px 0 28px;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 36px 48px;
  align-items: start;
}
.footer-brand .logo { color: #fff; display: inline-block; margin-bottom: 12px; }
.footer-brand p { max-width: 320px; font-size: 0.92rem; }
.footer-contact { margin-top: 14px; line-height: 1.7; }
.footer-contact a { color: #fff; opacity: 0.9; }
.footer-contact a:hover { opacity: 1; text-decoration: underline; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { color: #fff; opacity: 0.8; }
.footer-social a:hover { opacity: 1; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.footer-links h4 {
  color: #fff; font-family: var(--font); font-size: 0.74rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-links a { display: block; padding: 5px 0; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; margin-top: 8px; font-size: 0.82rem;
}
.payment-icons { display: flex; gap: 10px; font-size: 1.35rem; color: #fff; }

/* Responsive */
@media (max-width: 1100px) {
  .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .categories-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .header-bar { grid-template-columns: auto 1fr auto; }
  .nav-bar ul { gap: 16px; }
}
@media (max-width: 900px) {
  .mobile-menu-btn { display: inline-grid; place-items: center; }
  .nav-bar { display: none; }
  .header-bar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 16px;
  }
  .header-left, .header-right { min-height: 64px; }
  .announcement-bar { justify-content: center; padding: 9px 14px; }
  .shop-layout, .product-detail, .cart-content { grid-template-columns: 1fr; }
  .shop-sidebar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .product-grid, .product-grid-3, .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 68vh; place-items: end stretch; }
  .hero-content { margin-left: 0; padding: 48px 20px; }
  .hero-swiper .swiper-slide {
    height: 78vh;
    min-height: 560px;
    max-height: none;
  }
  .hero-slide-overlay {
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 36px 20px 48px;
    background: linear-gradient(180deg, transparent 35%, rgba(10,14,20,0.55) 100%);
  }
  .hero-slide-content { margin-left: 0; }
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next { display: none; }
  .quick-add { opacity: 1; transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .categories-grid, .categories-grid-4, .features-grid, .footer-links, .shop-sidebar { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { padding: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .announcement-text { font-size: 0.65rem; line-height: 1.4; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-section, .contact-grid, .values-grid { grid-template-columns: 1fr; }
  .order-summary-toggle { display: flex; }
  .order-summary-box {
    position: static;
    margin: 0 0 24px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border: 1px solid var(--border);
    border-top: none;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .order-summary-box.open { max-height: 600px; padding: 20px; }
  .cart-table thead { display: none; }
  .cart-table tbody { display: block; }
  .cart-table tr {
    display: flex; flex-wrap: wrap; align-items: center;
    padding: 20px 0; border-bottom: 1px solid var(--border);
  }
  .cart-table td { border: none; padding: 0; }
  .cart-table td:first-child { width: 100%; margin-bottom: 14px; }
  .cart-total-cell { display: none; }
  .back-to-cart span, .secure-badge span { display: none; }
}

/* ==================== RESTORED PAGE STYLES ==================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 20px 0 50px;
}
.checkout-form { min-width: 0; }
.checkout-success {
  padding: 80px 20px;
  text-align: center;
}
.checkout-success-inner {
  max-width: 420px;
  margin: 0 auto;
}
.checkout-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 16px;
}
.checkout-success h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.checkout-success p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.5;
}
.checkout-section { margin-bottom: 36px; }
.checkout-section h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
  letter-spacing: 0.02em;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.order-summary-wrapper { min-width: 0; }
.order-summary-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--primary);
}
.order-summary-toggle .toggle-left { display: flex; align-items: center; gap: 8px; }
.order-summary-toggle .toggle-arrow { font-size: 0.7rem; transition: transform 0.3s ease; }
.order-summary-toggle.active .toggle-arrow { transform: rotate(180deg); }
.order-summary-toggle .toggle-total { font-weight: 700; font-size: 1.05rem; }
.order-summary-box {
  background: var(--bg-soft);
  padding: 28px;
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
}
.order-summary-box h3,
.order-totals,
.order-items { font-size: 0.92rem; }
.order-items { margin-bottom: 16px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.summary-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}
.shipping-option,
.payment-note {
  border: 1px solid var(--border);
  padding: 14px 16px;
  background: #fff;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}
.checkbox-group input { margin-top: 3px; }
.checkout-secure-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cart-content { align-items: start; }
.cart-item-info h4 {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.cart-item-info .variant { font-size: 0.8rem; color: var(--text-light); }
.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.78rem;
  text-decoration: underline;
}
.remove-btn:hover { color: var(--error); }
.cart-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font);
}
.cart-summary .summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.88rem; }
.cart-summary .summary-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

.policy-page { max-width: 800px; margin: 0 auto; padding: 48px 20px 72px; }
.policy-page h1 { font-size: 2rem; margin-bottom: 10px; }
.policy-page .last-updated { font-size: 0.84rem; color: var(--text-light); margin-bottom: 32px; }
.policy-page h2 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 12px; font-family: var(--font); }
.policy-page h3 { font-size: 1.02rem; margin-top: 20px; margin-bottom: 8px; font-family: var(--font); }
.policy-page p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; color: var(--text); }
.policy-page ul, .policy-page ol { padding-left: 22px; margin-bottom: 14px; }
.policy-page ul { list-style: disc; }
.policy-page ol { list-style: decimal; }
.policy-page li { font-size: 0.92rem; line-height: 1.8; margin-bottom: 6px; color: var(--text-light); }
.policy-page a { color: var(--accent); text-decoration: underline; }

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}
.about-section img { width: 100%; height: 460px; object-fit: cover; }
.about-content h2 { font-size: 2rem; margin-bottom: 16px; }
.about-content p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0 48px;
  text-align: center;
}
.value-item h3 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font); }
.value-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0 64px;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-info-box { margin-bottom: 22px; background: transparent; padding: 0; }
.contact-info-box h3 {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.contact-info-box p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

.faq-list { max-width: 760px; margin: 0 auto; padding: 24px 0 64px; }
.faq-question .icon { font-size: 1.1rem; transition: transform 0.3s ease; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer p { margin: 0; line-height: 1.8; }

.shop-products { min-width: 0; }
.footer-links-col { min-width: 0; }

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-wrapper { order: -1; }
  .order-summary-toggle { display: flex; }
  .about-section,
  .contact-grid,
  .values-grid { grid-template-columns: 1fr; }
  .about-section img { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
}

/* THEME:Ralhi */
/* Ralhi — clean editorial, left-anchored hero */
.announcement-bar { letter-spacing: 0.12em; background: #0f1419; }
.logo { letter-spacing: 0.04em; font-size: 1.55rem; }
.hero-slide-overlay {
  align-items: flex-end; justify-content: flex-start;
  background: linear-gradient(90deg, rgba(15,20,25,0.55) 0%, rgba(15,20,25,0.12) 50%, transparent 100%);
}
.hero-slide-content { text-align: left; }
.category-card { border-radius: 2px; }
.promo-band { background: #0f1419; }
.newsletter { background: #3d5a73; }
.btn-primary { border-radius: 2px; }
.product-card .quick-add { border-radius: 2px; }

/* THEME-FIX:ralhi.com */
.promo-band { background: #0f1419 !important; color: #fff; }
.promo-band h2, .promo-band p { color: #fff; }
.newsletter { background: #3d5a73 !important; }

/* PRODUCT-GRID-FIX: equal gaps + aligned card bottoms */
.product-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.product-grid-4 { gap: 24px; }
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0; /* prevent grid blowout / uneven columns */
}
.product-image {
  flex: 0 0 auto;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
  padding: 10px 0 0;
  min-height: 96px;
}
.product-info h3 {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
.product-info .price {
  margin-top: auto;
  padding-top: 4px;
}


/* ORDER-SUCCESS-PAGE */
.order-success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 72px;
}
.order-success-panel {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.order-success-panel > i {
  font-size: 3.2rem;
  color: var(--success);
  margin-bottom: 18px;
  display: block;
}
.order-success-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.order-number-line {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 14px !important;
  letter-spacing: 0.02em;
}
.order-number-line strong {
  font-family: var(--font);
  letter-spacing: 0.06em;
}
.order-success-panel > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.order-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.order-success-actions .btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}
.order-success-actions .btn-outline:hover {
  border-color: var(--primary);
  background: var(--bg-soft);
}


/* CART-CARDS-FIX */
.cart-page {
  padding-top: 28px;
  padding-bottom: 72px;
}
.cart-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}
.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.cart-line {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
}
.cart-line-media {
  display: block;
  width: 104px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-line-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.cart-line-copy { min-width: 0; flex: 1; }
.cart-line-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--text);
}
.cart-line-meta {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-light);
}
.cart-line-price {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
}
.cart-line-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.cart-qty button {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
}
.cart-qty button:hover { background: var(--bg-soft); }
.cart-qty input {
  width: 44px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  background: #fff;
  font-weight: 600;
}
.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 8px 0;
}
.remove-btn:hover { color: var(--error); }
.cart-summary {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 96px;
}
.cart-summary h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cart-summary .summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.cart-summary .summary-row.total {
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  margin-bottom: 4px;
}
.cart-summary .btn-block {
  width: 100%;
  margin-top: 12px;
}
.cart-summary .btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
}
.cart-summary .btn-outline:hover {
  border-color: var(--primary);
}
.empty-cart {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 480px;
  margin: 8px auto 0;
  padding: 48px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.empty-cart h2 { margin-bottom: 10px; }
.empty-cart p { color: var(--text-light); margin-bottom: 22px; }

@media (max-width: 900px) {
  .cart-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cart-summary { position: static; }
}

@media (max-width: 640px) {
  .cart-page { padding-top: 20px; padding-bottom: 56px; }
  .page-banner { padding: 28px 0 20px; }
  .cart-line {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
  }
  .cart-line-media {
    width: 84px;
    height: 108px;
    border-radius: 8px;
  }
  .cart-line-top {
    flex-direction: column;
    gap: 8px;
  }
  .cart-line-price {
    font-size: 1rem;
  }
  .cart-line-actions {
    gap: 12px;
  }
  .cart-qty button,
  .cart-qty input {
    height: 38px;
  }
  .cart-qty button { width: 38px; }
}


/* MOBILE-SAFE-SPACING — do not zero out container side padding */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container.cart-page,
.container.checkout-page {
  padding-top: 28px;
  padding-bottom: 64px;
  padding-left: 20px;
  padding-right: 20px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  padding: 8px 0 24px;
}
.checkout-form {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.checkout-section {
  margin-bottom: 28px;
}
.checkout-section:last-of-type {
  margin-bottom: 18px;
}
.checkout-section h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 10px;
}
.form-group textarea {
  min-height: 96px;
}
.order-summary-wrapper {
  min-width: 0;
}
.order-summary-toggle {
  border-radius: 12px;
  padding: 16px 18px;
}
.order-summary-box {
  border-radius: 0 0 12px 12px;
  padding: 22px;
}
.order-success-page {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.page-banner .container {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .order-summary-wrapper { order: -1; }
  .order-summary-toggle { display: flex; }
  .order-summary-box {
    position: static;
    margin: 0;
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px) {
  .container,
  .page-banner .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .container.cart-page,
  .container.checkout-page {
    padding-top: 18px;
    padding-bottom: 48px;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .header-inner {
    padding: 14px 16px;
  }
  .header-bar {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .checkout-form {
    padding: 18px 16px;
    border-radius: 12px;
  }
  .checkout-section {
    margin-bottom: 24px;
  }
  .checkout-section h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group label {
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 46px;
    font-size: 16px; /* prevent iOS zoom */
    border-radius: 10px;
  }
  .bank-transfer-option {
    padding: 14px !important;
  }
  .order-summary-toggle {
    margin-bottom: 0;
  }
  .order-summary-box {
    max-height: none !important;
    overflow: visible !important;
    padding: 18px 16px !important;
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--border);
    border-top: none;
  }
  .order-summary-box:not(.open) {
    display: none;
  }
  .order-summary-box.open {
    display: block;
    max-height: none !important;
  }
  .cart-content {
    gap: 16px;
  }
  .cart-line {
    padding: 16px !important;
  }
  .page-banner {
    padding: 26px 0 18px;
  }
  .page-banner h1 {
    font-size: 1.55rem;
  }
  .shop-layout {
    padding-left: 0;
    padding-right: 0;
  }
  .product-detail {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .newsletter .container,
  .promo-band .container,
  .section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .order-success-page {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .order-success-panel {
    padding: 8px 4px;
  }
  .order-success-actions {
    flex-direction: column;
  }
  .order-success-actions .btn {
    width: 100%;
  }
}


/* HARDEN-MOBILE-GUTTERS */
/* overflow-x moved — was breaking sticky */
.checkout-page,
.cart-page,
.order-success-page {
  box-sizing: border-box;
}
.checkout-layout,
.cart-content,
.checkout-form,
.order-summary-wrapper {
  max-width: 100%;
  min-width: 0;
}
.checkout-form,
.order-summary-box,
.cart-line,
.cart-summary {
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .checkout-layout { padding: 4px 0 16px !important; gap: 14px !important; }
  .checkout-form { padding: 18px 16px !important; }
  .form-row { gap: 0 !important; }
  .form-group { margin-bottom: 14px !important; }
  .order-summary-toggle { padding: 14px 16px !important; }
  .order-summary-box { padding: 16px !important; margin: 0 !important; }
  .order-summary-box:not(.open) { display: none !important; max-height: none !important; padding: 0 !important; }
  .cart-summary { padding: 18px 16px !important; }
  .product-grid,
  .product-grid-3,
  .product-grid-4 { gap: 14px 12px !important; }
  .product-info { padding: 0 2px; }
  .hero-content,
  .hero-slide-overlay { padding-left: 16px !important; padding-right: 16px !important; }
  .content-page { padding-left: 0 !important; padding-right: 0 !important; }
  .section { padding: 40px 0; }
}

/* CART-SLIDE — neohubclothes-style side cart */
.cart-veil {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 10070;
}
.cart-veil.open { display: block; animation: cartVeilFade .2s; }
@keyframes cartVeilFade { from { opacity: 0; } to { opacity: 1; } }
html.cart-slide-open,
body.cart-slide-open {
  overflow: hidden;
  height: 100%;
}
.cart-slide {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 10071;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
  transition: right .3s cubic-bezier(.4,0,.2,1);
}
.cart-slide.open { right: 0; }
.cart-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-slide-head h6 {
  margin: 0;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cart-slide-head h6 #sidebarCount {
  font-weight: 500;
  color: var(--text-light);
  margin-left: 4px;
}
.cart-close-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
}
.cart-close-btn:hover { background: var(--bg-soft); }
.cart-slide-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px;
}
.cart-slide-foot {
  flex-shrink: 0;
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px) + 14px);
  border-top: 1px solid var(--border);
}
.cart-slide--empty .cart-slide-body {
  flex: 0 1 auto;
  overflow-y: visible;
}
.cart-slide-foot--inline {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px) + 8px);
  border-top: 1px solid var(--border);
}
.cart-side-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-side-item a { color: inherit; }
.cart-side-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bg-soft);
}
.cart-side-item__meta { flex: 1; min-width: 0; }
.cart-side-item__name {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  display: block;
}
.cart-side-item__var {
  font-size: .72rem;
  color: var(--text-light);
  margin-top: 2px;
}
.cart-side-item__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-side-line-total {
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
}
.cart-side-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.cart-side-qty__btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  color: var(--primary);
  padding: 0;
}
.cart-side-qty__btn:hover { background: var(--bg-soft); }
.cart-side-qty__val {
  min-width: 28px;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
}
.cart-side-remove {
  font-size: .72rem;
  background: none;
  border: none;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cart-side-remove:hover { color: var(--primary); }
.cart-side-remove-all {
  width: 100%;
  font-size: .75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 12px;
  cursor: pointer;
  color: var(--primary);
  letter-spacing: .04em;
  margin-top: 4px;
}
.cart-side-remove-all:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
}
.btn-cart-primary,
.btn-cart-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
}
.btn-cart-primary {
  background: var(--primary);
  color: #fff !important;
  border: 1px solid var(--primary);
  margin-top: 8px;
}
.btn-cart-primary:hover { opacity: .9; }
.btn-cart-outline {
  background: #fff;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  margin-top: 8px;
}
.btn-cart-outline:hover { background: var(--bg-soft); }
.cart-slide-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  margin-bottom: 4px;
}
.cart-slide-subtotal span:first-child { color: var(--text-light); }
.cart-slide-empty {
  text-align: center;
  padding: 32px 16px 8px;
  color: var(--text-light);
}
.cart-slide-empty i {
  font-size: 2.5rem;
  opacity: .2;
  display: block;
  margin-bottom: 12px;
}
.cart-slide-empty .empty-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
}
.header-cart {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.toast-stack {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10080;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast-af {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: .85rem;
  min-width: 220px;
  max-width: 320px;
}
.toast-af.success { border-left: 3px solid var(--success); }
.toast-af.danger { border-left: 3px solid var(--error); }
.toast-af .ta-x {
  margin-left: auto;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-light);
}
@media (max-width: 640px) {
  .cart-slide { width: 100%; right: -100%; }
}

/* CHECKOUT-SP — Shopify / neohubclothes inspired */
.checkout-sp {
  --sp-bg: #fafafa;
  --sp-panel: #ffffff;
  --sp-aside: #f5f5f5;
  --sp-border: #e5e5e5;
  --sp-text: #202223;
  --sp-muted: #6d7175;
  --sp-sub: #8c9196;
  --sp-accent: #1773b0;
  --sp-accent-hover: #135e90;
  --sp-radius: 8px;
  font-family: var(--font);
  color: var(--sp-text);
  background: var(--sp-bg);
  width: 100%;
  min-height: calc(100vh - 72px);
  box-sizing: border-box;
}
.checkout-sp a:not(.checkout-sp__back-btn) { color: var(--sp-accent); }
.checkout-sp a:not(.checkout-sp__back-btn):hover { text-decoration: underline; }
.checkout-sp__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--sp-panel);
  border-bottom: 1px solid var(--sp-border);
  box-sizing: border-box;
}
.checkout-sp__back-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--sp-text) !important;
  text-decoration: none !important;
  background: #fff;
  border: 1px solid #c9cccf;
  border-radius: 6px;
}
.checkout-sp__back-btn:hover {
  background: #f6f6f7;
  border-color: #8c9196;
  text-decoration: none !important;
}
.checkout-sp__split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: start;
}
.checkout-sp__form-col {
  background: var(--sp-panel);
  padding: 1.75rem 1.25rem 3rem;
  min-width: 0;
}
.checkout-sp__aside-col {
  background: var(--sp-aside);
  padding: 1.5rem 1.25rem 2.5rem;
  min-width: 0;
  position: sticky;
  top: 0;
  align-self: start;
}
.checkout-sp__section-title {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sp-muted);
  margin: 0 0 1rem;
  font-family: var(--font);
}
.checkout-sp__card {
  border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius);
  background: var(--sp-panel);
  padding: 1.15rem;
  margin-bottom: 1.35rem;
}
.checkout-sp .form-group { margin-bottom: 14px; }
.checkout-sp .form-group:last-child { margin-bottom: 0; }
.checkout-sp .form-group label,
.checkout-sp .form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--sp-text);
  margin-bottom: .35rem;
  text-transform: none;
  letter-spacing: 0;
}
.checkout-sp .form-group input,
.checkout-sp .form-group select,
.checkout-sp .form-group textarea,
.checkout-sp .form-control {
  width: 100%;
  font-size: max(16px, .9375rem);
  padding: .65rem .85rem;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  min-height: 46px;
}
.checkout-sp .form-group input:focus,
.checkout-sp .form-group select:focus,
.checkout-sp .form-group textarea:focus {
  border-color: var(--sp-accent);
  box-shadow: 0 0 0 1px var(--sp-accent);
}
.checkout-sp .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkout-sp__req { color: #d72c0d; font-weight: 700; margin-left: .15em; }
.checkout-sp__pay-list { padding: 0; overflow: hidden; }
.checkout-sp__pay-option {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid var(--sp-border);
  -webkit-tap-highlight-color: transparent;
}
.checkout-sp__pay-option:last-child { border-bottom: none; }
.checkout-sp__pay-option.is-checked { background: #f0f4f8; }
.checkout-sp__pay-option input { margin-top: .2rem; accent-color: var(--sp-text); }
.checkout-sp__pay-icon { flex-shrink: 0; font-size: 1.15rem; margin-top: .1rem; }
.checkout-sp__pay-title { font-weight: 600; font-size: .9375rem; }
.checkout-sp__pay-desc {
  font-size: .8125rem;
  color: var(--sp-muted);
  margin-top: .15rem;
  line-height: 1.4;
}
.checkout-sp__ship-note {
  padding: .9rem 1rem;
  font-size: .875rem;
  background: #fafafa;
  border: 1px solid var(--sp-border);
  border-radius: 6px;
}
.checkout-sp__ship-note strong { color: #008060; }
.checkout-sp__trust {
  margin-top: 1rem;
  padding: .85rem 1rem;
  background: #f0f7fc;
  border-radius: 6px;
  font-size: .75rem;
  color: var(--sp-muted);
  border: 1px solid #d3e7f5;
}
.checkout-sp__line {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px solid var(--sp-border);
}
.checkout-sp__line:last-of-type { border-bottom: none; }
.checkout-sp__thumb-wrap { position: relative; flex-shrink: 0; }
.checkout-sp__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--sp-border);
  background: #fff;
}
.checkout-sp__qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-size: .7rem;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
  color: #fff;
  background: var(--sp-muted);
  border-radius: 999px;
  border: 2px solid var(--sp-aside);
}
.checkout-sp__line-body { flex: 1; min-width: 0; }
.checkout-sp__line-name { font-size: .875rem; font-weight: 500; line-height: 1.35; }
.checkout-sp__line-var { font-size: .75rem; color: var(--sp-muted); margin-top: .2rem; }
.checkout-sp__line-price { font-size: .875rem; font-weight: 500; white-space: nowrap; }
.checkout-sp__row {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  padding: .35rem 0;
}
.checkout-sp__row--muted { color: var(--sp-muted); }
.checkout-sp__row--success { color: #008060; }
.checkout-sp__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  margin-top: .5rem;
  border-top: 1px solid var(--sp-border);
  font-size: 1.125rem;
  font-weight: 600;
}
.checkout-sp__total-currency {
  font-size: .75rem;
  font-weight: 500;
  color: var(--sp-muted);
  margin-right: .35rem;
  text-transform: uppercase;
}
.checkout-sp__btn {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff !important;
  background: var(--sp-accent);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
}
.checkout-sp__btn:hover:not(:disabled) { background: var(--sp-accent-hover); }
.checkout-sp__btn:disabled { opacity: .65; cursor: wait; }
.checkout-sp__legal {
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--sp-muted);
  text-align: center;
  line-height: 1.5;
}
.checkout-sp__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  margin: 0 0 4px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.checkout-sp__agree input { margin-top: 4px; }
.checkout-sp__summary-toggle {
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: inherit;
}
.checkout-sp__summary-toggle-label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sp-muted);
}
.checkout-sp__summary-chevron {
  transition: transform .2s ease;
  color: var(--sp-muted);
}
.checkout-sp__summary-toggle.is-open .checkout-sp__summary-chevron {
  transform: rotate(180deg);
}
.checkout-sp__summary-panel { display: block; }
.checkout-sp__summary-panel.is-collapsed { display: none; }
.checkout-sp__aside-total {
  font-weight: 700;
  font-size: 1rem;
}
body.is-checkout-page {
  background: #fafafa;
}
body.is-checkout-page header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}
body.is-checkout-page footer { display: none; }
@media (min-width: 992px) {
  .checkout-sp__bar { padding: 1rem 3rem 1.5rem; }
  .checkout-sp__form-col {
    padding: 2.5rem 3rem 4rem;
    border-right: 1px solid var(--sp-border);
    min-height: calc(100vh - 80px);
  }
  .checkout-sp__aside-col { padding: 2rem 2rem 3rem; }
}
@media (max-width: 991px) {
  .checkout-sp__split {
    grid-template-columns: 1fr;
  }
  .checkout-sp__aside-col {
    order: -1;
    position: static;
    border-bottom: 1px solid var(--sp-border);
  }
  .checkout-sp__summary-toggle { display: flex; }
  .checkout-sp__summary-panel.is-collapsed { display: none; }
  .checkout-sp__form-col { padding: 1.5rem 1.15rem 2.5rem; }
  .checkout-sp .form-row { grid-template-columns: 1fr; }
}

/* CATEGORY-MOBILE-FIX — 2x2 on phone, readable labels */
.categories-grid,
.categories-grid-4 {
  display: grid;
  gap: 16px;
}
.categories-grid { grid-template-columns: repeat(3, 1fr); }
.categories-grid-4 { grid-template-columns: repeat(4, 1fr); }
.category-card {
  min-width: 0;
  aspect-ratio: 3 / 4;
}
.category-content {
  padding: 18px 16px;
  text-align: left;
}
.category-content h3 {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  margin-bottom: 4px;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.shop-link {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .categories-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-content {
    padding: 16px 14px;
  }
  .category-content h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .category-section .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .categories-grid,
  .categories-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .category-card {
    aspect-ratio: 3 / 4;
    border-radius: 14px;
  }
  .category-content {
    padding: 14px 12px !important;
  }
  .category-content h3 {
    font-size: 1.05rem !important;
    letter-spacing: 0.01em;
  }
  .shop-link {
    font-size: 0.65rem !important;
    letter-spacing: 0.1em;
  }
}

/* HEADER-LAYOUT:ralhi — magazine: brand row + underline nav */
.hdr-ralhi {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hdr-ralhi .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 28px 10px;
  min-height: 64px;
}
.hdr-ralhi .logo {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 1;
  text-align: left;
}
.hdr-ralhi .header-top-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hdr-ralhi .header-text-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hdr-ralhi .header-text-link:hover { color: var(--primary); }
.hdr-ralhi .nav-bar--underline {
  display: block;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}
.hdr-ralhi .nav-bar--underline ul {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hdr-ralhi .nav-bar--underline a {
  height: auto;
  padding: 14px 16px 14px 0;
  margin-right: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.hdr-ralhi .nav-bar--underline a::after {
  bottom: 8px;
  background: var(--accent);
  height: 2px;
}
body .announcement-bar {
  background: #0f1419;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}
@media (max-width: 900px) {
  .hdr-ralhi .nav-bar--underline { display: none; }
  .hdr-ralhi .header-text-link { display: none; }
  .hdr-ralhi .header-top { padding: 14px 16px; }
  .hdr-ralhi .logo { text-align: center; font-size: 1.45rem; }
  .hdr-ralhi .mobile-menu-btn { display: inline-grid; place-items: center; }
}

/* CHECKOUT-ASIDE-STICKY */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
}
.checkout-sp,
.checkout-sp__split {
  overflow: visible !important;
}
@media (min-width: 992px) {
  .checkout-sp__aside-col {
    position: sticky !important;
    top: 88px !important;
    align-self: start !important;
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.is-checkout-page .checkout-sp__aside-col {
    top: 80px !important;
  }
}
@media (max-width: 991px) {
  .checkout-sp__aside-col {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* PRODUCT-DETAIL-PROMO — neohub-inspired */
.pd-page .page-banner { padding: 22px 0 !important; }
.pd-gallery {
  position: relative;
}
.pd-gallery .main-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 10px;
}
.pd-gallery .main-image img {
  width: 100%;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.pd-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--sale);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 4px;
  pointer-events: none;
}
.pd-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.pd-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
}
.pd-pill--hot {
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}
.pd-pill--view {
  color: var(--text-light);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.pd-rating .stars { color: #f59e0b; letter-spacing: 1px; }
.pd-rating .count { color: var(--text-light); font-size: 0.75rem; }
.pd-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.pd-price-row .now {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.pd-price-row .was {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.pd-save-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--sale);
  color: #fff;
  padding: 3px 8px;
  letter-spacing: 0.04em;
  border-radius: 3px;
}
.pd-promo-strip {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.pd-promo-strip .row-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}
.pd-promo-strip i {
  color: var(--accent);
  margin-top: 2px;
  width: 16px;
  text-align: center;
}
.pd-urgency {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--sale);
  font-weight: 600;
}
.pd-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0 8px;
}
.pd-trust-item {
  text-align: center;
  padding: 12px 8px;
  background: var(--bg-soft);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.pd-trust-item i {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.pd-trust-item span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.3;
}
.pd-cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.pd-cta-row .quantity-selector {
  margin: 0;
  flex-shrink: 0;
}
.pd-cta-row #addProductToCart {
  flex: 1;
  margin: 0;
  min-height: 48px;
}
.pd-buy-now {
  width: 100%;
  min-height: 46px;
  margin-bottom: 18px;
  border: 1.5px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-radius: 8px;
  cursor: pointer;
}
.pd-buy-now:hover { background: var(--bg-soft); }
.pd-acc {
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.pd-acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
}
.pd-acc-panel {
  display: none;
  padding: 0 0 14px;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}
.pd-acc-panel.open { display: block; }
.pd-acc-panel .ship-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.pd-sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10040;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  transform: translateY(110%);
  transition: transform 0.25s ease;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
}
.pd-sticky-atc.is-on {
  transform: translateY(0);
}
.pd-sticky-atc__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd-sticky-atc__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-soft);
  flex-shrink: 0;
}
.pd-sticky-atc__meta { flex: 1; min-width: 0; }
.pd-sticky-atc__price {
  font-weight: 800;
  font-size: 1rem;
  display: block;
}
.pd-sticky-atc__sale {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.75rem;
}
.pd-sticky-atc__sale .was {
  text-decoration: line-through;
  color: var(--text-light);
}
.pd-sticky-atc__sale .off {
  color: #fff;
  background: var(--sale);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 700;
}
.pd-sticky-atc__btn {
  flex-shrink: 0;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .pd-trust { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .pd-price-row .now { font-size: 1.4rem; }
  .pd-cta-row { flex-direction: column; align-items: stretch; }
  .pd-cta-row .quantity-selector { justify-content: center; }
}

/* PD-PROMO-THEME:ralhi — editorial minimal, sharp corners */
.pd-page .pd-sale-badge {
  top: 0; left: 0; border-radius: 0;
  background: #0f1419; padding: 8px 12px;
  font-size: 0.62rem; letter-spacing: 0.14em;
}
.pd-page .pd-proof { gap: 8px; margin-bottom: 18px; }
.pd-page .pd-pill {
  border-radius: 0; padding: 6px 10px;
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600;
}
.pd-page .pd-pill--hot {
  background: #0f1419; color: #fff; border: none;
}
.pd-page .pd-pill--hot i { display: none; }
.pd-page .pd-pill--view {
  background: transparent; border: 1px solid var(--border); color: var(--text);
}
.pd-page .pd-rating .stars { color: #0f1419; }
.pd-page .pd-price-row .now {
  font-family: var(--display); font-size: 1.85rem; font-weight: 700;
}
.pd-page .pd-save-badge {
  border-radius: 0; background: #3d5a73; letter-spacing: 0.1em;
}
.pd-page .pd-promo-strip {
  background: #fff; border: 1px solid var(--border); border-left: 3px solid #0f1419;
  border-radius: 0; padding: 14px 16px; gap: 10px;
  grid-template-columns: 1fr;
}
.pd-page .pd-promo-strip .row-item { font-size: 0.8rem; }
.pd-page .pd-promo-strip i { color: #0f1419; }
.pd-page .pd-urgency {
  border: 1px solid #0f1419; background: #fbfcfd; padding: 8px 10px; color: #0f1419;
}
.pd-page .pd-trust {
  grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--border);
}
.pd-page .pd-trust-item {
  background: #fff; border: none; border-radius: 0;
  border-right: 1px solid var(--border); padding: 16px 8px;
}
.pd-page .pd-trust-item:last-child { border-right: none; }
.pd-page .pd-buy-now {
  border-radius: 0; border-width: 1px; letter-spacing: 0.14em;
}
.pd-page .pd-sticky-atc__btn { border-radius: 0; }
.pd-page .pd-acc-btn { letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; }

