/* ===== ICONS ===== */
.i {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1;
}
.i + span, span + .i, .i + strong { margin-left: 6px; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s; }
a:hover { color: #d4af37; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  width: 100%;
  background: #fff;
  outline: none;
  transition: border .15s;
}
input:focus, select:focus, textarea:focus { border-color: #1a1a1a; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: #777; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* ===== HEADER ===== */
.header { border-bottom: 1px solid #f0f0f0; background: #fff; position: sticky; top: 0; z-index: 100; }
.header-top {
  background: #1a1a1a;
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.header-top .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.ht-item { display: inline-flex; align-items: center; gap: 6px; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.language-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.38);
  background: rgba(255,255,255,.08);
  opacity: .7;
  padding: 2px;
  transition: width .15s, height .15s, opacity .15s, transform .15s, border-color .15s, background .15s;
}
.language-link:hover {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.16);
}
.language-link.active {
  width: 34px;
  height: 34px;
  opacity: 1;
  border-color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.2);
}
.language-link img {
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.language-link.active img {
  width: 28px;
  height: 28px;
}

.header-main { padding: 18px 0; }
.header-main .container { display: flex; align-items: center; gap: 30px; }
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  white-space: nowrap;
}
.search-form { flex: 1; display: flex; max-width: 500px; margin: 0 auto; }
.search-form input { border-radius: 30px 0 0 30px; border-right: none; }
.search-form button {
  background: #1a1a1a;
  color: #fff;
  padding: 0 24px;
  border-radius: 0 30px 30px 0;
  font-size: 16px;
}
.search-form button:hover { background: #d4af37; color: #1a1a1a; }
.header-actions { display: flex; gap: 16px; align-items: center; }
.mobile-menu-btn,
.mobile-nav-head,
.submenu-toggle,
.nav-backdrop {
  display: none;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s;
}
.account-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
}
.account-link:hover { background: #fafafa; }
.cart-link:hover { background: #fafafa; }
.cart-badge {
  background: #d4af37;
  color: #1a1a1a;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

.main-nav {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  position: relative;
  z-index: 90;
}
.main-nav > .container > ul {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.main-nav > .container > ul > li {
  position: relative;
}
.nav-row {
  display: block;
}
.main-nav > .container > ul > li > a,
.nav-row > a {
  display: block;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.main-nav > .container > ul > li:hover > a,
.main-nav > .container > ul > li:hover > .nav-row > a {
  background: #fff;
  color: #d4af37;
}
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .12s ease, transform .12s ease, visibility .12s;
  z-index: 100;
  pointer-events: none;
}
@media (min-width: 969px) {
  body.nav-open {
    overflow: auto;
  }
  .main-nav {
    display: block;
    transform: none !important;
  }
  .main-nav .mobile-nav-head,
  .main-nav .submenu-toggle,
  .nav-backdrop {
    display: none !important;
  }
  .main-nav > .container > ul > li.is-open > a,
  .main-nav > .container > ul > li.is-open > .nav-row > a {
    background: transparent;
    color: inherit;
  }
  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.submenu li { list-style: none; }
.submenu li a {
  display: block;
  padding: 9px 18px;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}
.submenu li a:hover { background: #fafafa; color: #d4af37; }

/* ===== FLASH ===== */
.flash {
  padding: 12px 18px;
  margin: 16px 0;
  border-radius: 6px;
  font-size: 14px;
}
.flash-success { background: #e6f7e6; color: #2d7a2d; border: 1px solid #b3e0b3; }
.flash-error { background: #fde6e6; color: #b30000; border: 1px solid #f5b3b3; }
.flash ul { padding-left: 20px; list-style: disc; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-alt { background: #fafafa; }
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all .15s;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary { background: #1a1a1a; color: #fff; }
.btn-primary:hover { background: #d4af37; color: #1a1a1a; }
.btn-outline { border-color: #1a1a1a; color: #1a1a1a; }
.btn-outline:hover { background: #1a1a1a; color: #fff; }
.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-block { display: block; width: 100%; }
.btn-link { background: none; color: #666; padding: 8px 16px; font-weight: 400; text-transform: none; }
.btn-link:hover { color: #1a1a1a; }
.btn-icon {
  padding: 6px 10px;
  color: #999;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.btn-icon:hover { color: #b30000; background: #fafafa; }
.btn-with-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.category-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid #f0f0f0;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.category-card img { aspect-ratio: 1; object-fit: cover; }
.category-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  color: #999;
}
.category-card h3 {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 24px;
  width: 100%;
  min-width: 0;
}
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid #f0f0f0;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.product-image { aspect-ratio: 1; position: relative; overflow: hidden; background: #f8f8f8; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: #ccc; background: #f0f0f0;
}
.badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-sale { background: #dc2626; color: #fff; }
.badge-new { background: #1a1a1a; color: #fff; right: 12px; left: auto; }
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}
.product-brand { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.product-name {
  min-height: 39px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  margin: 6px 0 10px;
  line-height: 1.3;
}
.product-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
  min-width: 0;
  min-height: 25px;
  margin-top: auto;
}
.price, .price-sale { font-size: 17px; font-weight: 700; color: #1a1a1a; }
.price-sale { color: #dc2626; }
.price-regular { font-size: 14px; text-decoration: line-through; color: #999; font-weight: 400; }

/* ===== HOME HERO / FEATURES ===== */
.home-hero {
  padding: 0;
  background: #05080d;
}
.home-hero-inner {
  width: 100%;
}
.home-hero-frame {
  position: relative;
  width: 100%;
}
.quick-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100% - 36px));
  z-index: 2;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
}
.quick-category-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  background: rgba(255,255,255,0.56);
  color: #111;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.quick-category-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.78);
  color: #111;
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
}
.quick-category-sale {
  background: rgba(179,25,66,0.92);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.quick-category-sale:hover { background: rgba(143,18,51,0.96); color: #fff; }
.home-hero-image {
  width: 100%;
  min-height: clamp(360px, 42vw, 640px);
  height: clamp(360px, 42vw, 640px);
  overflow: hidden;
  border-radius: 0;
  background: #05080d;
}
.home-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.section-products-tabs { padding-top: 54px; }
.product-tabs-head {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.product-tab {
  min-width: 120px;
  padding: 11px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}
.product-tab.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.product-tab[data-tab="sale"].active {
  background: #dc2626;
  border-color: #dc2626;
}
.product-tab-panel { display: none; }
.product-tab-panel.active { display: block; }

.features { padding: 12px 0; background: #fff; border-top: 1px solid #f0f0f0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 7px;
  text-align: left;
  padding: 7px 6px;
  min-width: 0;
}
.feature-icon {
  width: 28px; height: 28px;
  flex: 0 0 28px;
  display: flex; align-items: center; justify-content: center;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  color: #1a1a1a;
}
.feature h3 { font-size: 11px; margin-bottom: 0; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feature p { font-size: 10px; color: #777; line-height: 1.15; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.popular-searches {
  padding: 34px 0 10px;
  background: #fff;
}
.popular-searches-head {
  max-width: 780px;
  margin-bottom: 18px;
}
.popular-searches-head h2 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.popular-searches-head p {
  color: #555;
  line-height: 1.7;
}
.popular-search-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.popular-search-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fafafa;
  font-size: 14px;
  font-weight: 700;
}
.popular-search-grid a:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* ===== PAGE CONTENT ===== */
.page-content { padding: 40px 0 60px; }
.page-title { font-size: 36px; margin-bottom: 24px; font-weight: 700; letter-spacing: -0.5px; }
.page-subtitle {
  max-width: 760px;
  margin: -10px 0 24px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  color: #444;
}
.breadcrumbs { font-size: 13px; color: #999; margin-bottom: 16px; }
.breadcrumbs a:hover { color: #d4af37; }

.subcategories-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.subcategories-bar a {
  padding: 8px 16px;
  background: #fafafa;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}
.subcategories-bar a:hover { background: #1a1a1a; color: #fff; }

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.toolbar-info { color: #666; font-size: 14px; }
.toolbar-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.toolbar-sort select {
  width: auto;
  min-width: 140px;
  padding: 8px 14px;
}
.toolbar-reset {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  font-size: 13px;
  color: #555;
  background: #fff;
}
.toolbar-reset:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.category-seo-copy {
  max-width: 860px;
  margin-top: 38px;
  color: #333;
}
.category-seo-copy p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.75;
}
.category-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.category-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background: #fafafa;
  font-size: 14px;
  font-weight: 500;
}
.category-seo-links a:hover {
  border-color: #1a1a1a;
  background: #1a1a1a;
  color: #fff;
}
.category-faq {
  max-width: 860px;
  margin-top: 38px;
}
.category-faq h2 {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}
.category-faq-list {
  display: grid;
  gap: 10px;
}
.category-faq-item {
  border: 1px solid #ececec;
  border-radius: 6px;
  background: #fff;
}
.category-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 600;
}
.category-faq-item summary::-webkit-details-marker { display: none; }
.category-faq-item p {
  padding: 0 18px 16px;
  color: #555;
  line-height: 1.7;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

.seo-landing-header {
  max-width: 900px;
}
.seo-landing-copy,
.seo-landing-sections {
  max-width: 900px;
}
.seo-landing-copy p,
.seo-landing-sections p {
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}
.seo-landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 38px;
}
.seo-landing-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  background: #fafafa;
  font-size: 14px;
  font-weight: 700;
}
.seo-landing-links a:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.seo-landing-products {
  margin: 36px 0 44px;
}
.seo-landing-products h2,
.seo-landing-sections h2 {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}
.seo-landing-sections article {
  padding-top: 26px;
  border-top: 1px solid #eeeeee;
}
.seo-landing-sections article + article {
  margin-top: 8px;
}

/* ===== BLOG ===== */
.blog-header {
  max-width: 760px;
  margin-bottom: 28px;
}
.blog-header h1,
.blog-post-header h1 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.blog-header p,
.blog-post-header p {
  color: #666;
  font-size: 17px;
  line-height: 1.7;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  min-width: 0;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.blog-card-image {
  display: block;
  aspect-ratio: 1.35;
  background: #f5f5f5;
  overflow: hidden;
}
.blog-card-image img,
.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 18px;
}
.blog-card time,
.blog-post-header time {
  display: block;
  color: #888;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card h2 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.blog-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
.blog-read-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.blog-post {
  max-width: 940px;
}
.blog-post-header {
  max-width: 780px;
  margin-bottom: 26px;
}
.blog-hero-image {
  aspect-ratio: 16 / 8.5;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #f5f5f5;
}
.blog-content {
  max-width: 760px;
}
.blog-content h2 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 34px 0 12px;
}
.blog-content h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 26px 0 10px;
}
.blog-content p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.pagination a {
  padding: 8px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.pagination a.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.pagination a:hover:not(.active) { background: #fafafa; }

/* ===== SHARE ACTIONS ===== */
.share-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}
.share-label {
  color: #777;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.share-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  transition: border-color .15s, transform .15s, background .15s, color .15s;
}
.share-btn:hover {
  transform: translateY(-1px);
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.share-facebook:hover { color: #1877f2; border-color: #1877f2; }
.share-whatsapp:hover { color: #128c7e; border-color: #128c7e; }
.share-native:hover { color: #c13584; border-color: #c13584; }
.share-copy:hover { background: #1a1a1a; color: #fff; }
.share-status {
  min-width: 82px;
  color: #2d7a2d;
  font-size: 12px;
  font-weight: 700;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.main-image {
  aspect-ratio: 1;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.thumbnails { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumbnails img {
  width: 70px; height: 70px;
  border-radius: 4px;
  cursor: pointer;
  object-fit: cover;
  border: 2px solid transparent;
}
.thumbnails img:hover { border-color: #d4af37; }

.product-details h1 { font-size: 32px; margin: 8px 0; line-height: 1.2; }
.product-meta { color: #666; font-size: 13px; margin-bottom: 18px; }
.product-price-detail {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 18px 0 24px;
  padding: 16px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.product-price-detail .price, .product-price-detail .price-sale { font-size: 28px; }
.discount-badge {
  background: #d4af37; color: #1a1a1a;
  padding: 4px 10px; border-radius: 4px;
  font-size: 13px; font-weight: 700;
}
.product-short-desc { color: #555; margin-bottom: 24px; }
.product-rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -8px 0 24px;
  font-size: 14px;
}
.product-rating-summary a {
  color: #444;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #d1d5db;
  line-height: 1;
}
.review-stars .filled { color: #d4af37; }

.add-to-cart-form .form-group { margin-bottom: 20px; }
.add-to-cart-form label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.option-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.option-btn {
  padding: 8px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: all .15s;
}
.option-btn:hover { border-color: #1a1a1a; }
.option-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.quantity-input {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
}
.quantity-input button { padding: 8px 14px; font-size: 18px; font-weight: 600; }
.quantity-input input { border: none; width: 60px; text-align: center; padding: 8px 0; }
.variation-stock { padding: 10px; background: #fafafa; border-radius: 4px; font-size: 13px; margin-bottom: 16px; }

.product-description {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}
.product-description h2 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}
.product-description h3 {
  margin: 26px 0 12px;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0;
}
.product-description p {
  margin-bottom: 16px;
  color: #333;
  line-height: 1.8;
}
.product-description ul {
  margin: 0 0 18px 20px;
  list-style: disc;
}
.product-description li {
  margin-bottom: 8px;
  color: #333;
  line-height: 1.65;
}
.product-description .product-tagline {
  padding: 16px 18px;
  border-left: 4px solid #1a1a1a;
  background: #fafafa;
  font-weight: 600;
}
.product-seo-content {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid #f0f0f0;
}
.product-seo-content h2 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}
.product-seo-content p {
  margin-bottom: 14px;
  color: #333;
  line-height: 1.75;
}
.product-seo-content ul {
  margin: 4px 0 18px 20px;
  list-style: disc;
}
.product-seo-content li {
  margin-bottom: 7px;
  color: #333;
  line-height: 1.55;
}
.product-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-seo-links a {
  padding: 7px 10px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
}
.product-seo-links a:hover {
  border-color: #1a1a1a;
}
.product-reviews {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid #ececec;
}
.reviews-head h2 {
  margin-bottom: 6px;
  font-size: 26px;
  letter-spacing: 0;
}
.reviews-head p {
  color: #666;
  margin-bottom: 22px;
}
.review-list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.review-card {
  padding: 18px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
}
.review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.review-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  letter-spacing: 0;
}
.review-card p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 8px;
}
.review-card small {
  color: #777;
}
.review-form {
  max-width: 720px;
  padding: 22px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fafafa;
}
.review-form h3 {
  margin-bottom: 4px;
  font-size: 21px;
}
.review-form > p {
  color: #666;
  margin-bottom: 18px;
}
.review-form label span {
  color: #777;
  font-weight: 400;
}
.review-form textarea {
  min-height: 120px;
  resize: vertical;
}
.rating-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.rating-input input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rating-input label {
  margin: 0;
  color: #d1d5db;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
  color: #d4af37;
}
.product-set-offers {
  margin: 28px 0;
  padding-top: 22px;
  border-top: 1px solid #f0f0f0;
}
.product-set-offers h2 {
  font-size: 18px;
  margin-bottom: 14px;
}
.product-set-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
}
.product-set-images {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}
.product-set-images img {
  width: 54px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f7f7;
}
.product-set-images span {
  font-weight: 800;
  color: #666;
}
.product-set-body strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.product-set-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.45;
  margin-bottom: 10px;
}
.product-set-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.product-set-price span {
  font-size: 18px;
  font-weight: 800;
  color: #b30000;
}
.product-set-price small {
  color: #999;
  text-decoration: line-through;
}

/* ===== CART ===== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}
.cart-items { background: #fff; border: 1px solid #f0f0f0; border-radius: 8px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 100px 100px 40px;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image { width: 100px; height: 100px; border-radius: 6px; overflow: hidden; background: #f8f8f8; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h4 { font-size: 15px; margin-bottom: 6px; }
.cart-item-meta { font-size: 13px; color: #666; }
.cart-item-meta span { margin-right: 12px; }
.cart-item-price { font-size: 14px; color: #666; margin-top: 4px; }
.cart-item-qty input { width: 60px; text-align: center; padding: 6px; }
.cart-item-remove { justify-self: end; }
.cart-line-total-label { display: none; }

.cart-summary {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { margin-bottom: 16px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.summary-row.total {
  font-size: 18px;
  border-bottom: none;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid #1a1a1a;
}

/* ===== CHECKOUT ===== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}
.checkout-form { background: #fff; padding: 30px; border: 1px solid #f0f0f0; border-radius: 8px; }
.checkout-form h3 { margin: 24px 0 16px; padding-bottom: 8px; border-bottom: 2px solid #1a1a1a; }
.checkout-form h3:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 14px; }
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.checkbox-option input { width: auto; }
.checkout-coupon-fields {
  display: none;
  margin-top: 12px;
}
.checkout-coupon:has(input[name="use_coupon"]:checked) .checkout-coupon-fields {
  display: block;
}
.checkout-summary { background: #fafafa; padding: 24px; border-radius: 8px; position: sticky; top: 100px; }
.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #eee;
}
.payment-method { padding: 16px; background: #fafafa; border-radius: 6px; }
.radio-option { display: flex; align-items: center; gap: 10px; cursor: pointer; }

/* ===== THANK YOU ===== */
.thank-you {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 80px; height: 80px;
  background: #2d7a2d; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.order-summary-card {
  background: #fafafa;
  padding: 24px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: left;
}
.order-items-table { width: 100%; margin: 16px 0; border-collapse: collapse; }
.order-items-table th, .order-items-table td { padding: 8px 12px; text-align: left; border-bottom: 1px solid #eee; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info { background: #fafafa; padding: 30px; border-radius: 8px; }
.contact-info p { margin: 10px 0; }
.contact-form { background: #fff; padding: 30px; border: 1px solid #f0f0f0; border-radius: 8px; }
.contact-form h3 { margin-bottom: 20px; }

.content-block { max-width: 800px; line-height: 1.8; }
.content-block-wide { max-width: 980px; }
.content-block h2 { margin: 30px 0 10px; font-size: 22px; }
.content-block h3 { margin: 24px 0 12px; }
.content-block ul { padding-left: 20px; margin: 12px 0; }

.check-list { padding-left: 0 !important; list-style: none !important; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 8px;
  border-left: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  transform: rotate(-45deg);
}

.info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.info-line .i { color: #d4af37; }
.radio-option {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
}

.company-box {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #e8e2d2;
  border-radius: 8px;
  background: #fbfaf6;
}
.company-box h2 { margin-top: 0; }
.company-box p { margin: 7px 0; }

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
}
.brand-list-item {
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
}
.brand-list-item h2 {
  margin: 0 0 8px;
  font-size: 18px;
}
.brand-list-item p {
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
}
.brand-list-item small {
  color: #8a6d1d;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 26px 0 14px;
  margin-top: 54px;
}
.footer-minimal {
  display: grid;
  gap: 14px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand h3 {
  font-size: 18px;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
}
.footer p {
  color: #aaa;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
.footer a {
  color: #aaa;
}
.footer a:hover {
  color: #d4af37;
}
.footer-meta,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-meta {
  color: #9d9d9d;
  font-size: 12px;
  line-height: 1.5;
}
.footer-links {
  padding-top: 3px;
}
.footer-links a {
  font-size: 13px;
  color: #d7d7d7;
}
.footer-bottom {
  border-top: 1px solid #2d2d2d;
  margin-top: 18px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #888;
}
.footer-admin-link {
  color: #777;
  font-size: 12px;
}
.footer-admin-link:hover {
  color: #d4af37;
}

.legal-page {
  max-width: 820px;
}
.legal-page section {
  margin-top: 24px;
}
.legal-page h2 {
  font-size: 18px;
  margin-bottom: 8px;
}
.legal-page p {
  color: #555;
  line-height: 1.75;
}

.coupon-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.48);
}
.coupon-popup.is-visible { display: flex; }
.coupon-popup-box {
  position: relative;
  width: min(92vw, 380px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.coupon-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #f5f5f5;
}
.coupon-popup-box strong { display: block; font-size: 22px; margin-bottom: 8px; line-height: 1.2; }
.coupon-popup-box p { color: #555; margin-bottom: 18px; line-height: 1.5; }
.coupon-profile-action { margin-top: 4px; }
.coupon-popup-note {
  display: block;
  margin-top: 12px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
}
.coupon-popup-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
}
.coupon-claim-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.coupon-claim-form input {
  min-height: 46px;
  text-align: center;
  border-color: #d8d8d8;
}
.coupon-claim-result {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.coupon-claim-result span,
.coupon-claim-result small {
  color: #6b7280;
}
.coupon-claim-result strong {
  margin: 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px dashed #1a1a1a;
  background: #f9fafb;
  font-size: 20px;
  letter-spacing: 1.5px;
}
.coupon-claim-result.is-error {
  color: #991b1b;
  border-color: #fecaca;
  background: #fef2f2;
}

.auth-page {
  display: flex;
  justify-content: center;
}
.auth-card {
  width: min(100%, 520px);
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}
.auth-card h1 {
  font-size: 30px;
  margin-bottom: 8px;
}
.auth-card > p {
  color: #666;
  margin-bottom: 22px;
}
.auth-switch {
  margin-top: 18px;
  text-align: center;
}
.auth-switch a {
  font-weight: 800;
}
.auth-coupon-note {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid #fee2e2;
  border-radius: 8px;
  background: #fff7f7;
  text-align: left;
}
.auth-coupon-note strong {
  color: #b91c1c;
}
.auth-coupon-note span {
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}
.profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.profile-head .page-title {
  margin-bottom: 4px;
}
.profile-head p {
  color: #666;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
}
.profile-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #fde68a;
  border-radius: 8px;
  background: #fffbeb;
}
.profile-alert p {
  margin-top: 3px;
  color: #92400e;
  font-size: 13px;
}
.profile-alert-success {
  justify-content: flex-start;
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}
.profile-panel {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}
.profile-panel h3 {
  margin-bottom: 16px;
}
.profile-security-action {
  margin-top: 10px;
}
.profile-coupon,
.profile-order {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
}
.profile-coupon strong {
  font-size: 18px;
  letter-spacing: 1px;
}
.profile-coupon span,
.profile-order small {
  color: #666;
  font-size: 13px;
}
.profile-coupon small {
  color: #065f46;
  font-weight: 700;
}
.profile-order {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}
.profile-order-image {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-order-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-order-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.profile-order-copy strong {
  line-height: 1.35;
}
.profile-order-total {
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero h1 { font-size: 38px; }
  .product-detail { grid-template-columns: 1fr; gap: 30px; }
  .cart-layout, .checkout-layout, .contact-layout { grid-template-columns: 1fr; }
  .brand-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-top .container {
    justify-content: center;
    gap: 8px 12px;
  }
  .language-switcher {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    order: 3;
  }
  .header-main { padding: 10px 0; }
  .header-main .container {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 10px;
  }
  .header-actions {
    margin-left: 0;
    order: 3;
    gap: 6px;
    flex-shrink: 0;
  }
  .logo { display: none; }
  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 1;
    width: 40px;
    height: 44px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    color: #1a1a1a;
    margin-left: 0;
  }
  .search-form {
    order: 2;
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    margin: 0;
  }
  .search-form input { min-height: 44px; }
  .search-form button {
    width: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .account-link {
    display: none;
  }
  .cart-link {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
    border: 1px solid #e8e8e8;
    background: #fff;
  }
  .cart-link span:not(.cart-badge) {
    display: none;
  }
  .cart-badge {
    position: absolute;
    top: -6px;
    right: -5px;
    min-width: 18px;
    padding: 1px 5px;
    font-size: 10px;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-hero-image {
    height: clamp(330px, 54vw, 560px);
    min-height: 330px;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-alert {
    align-items: stretch;
    flex-direction: column;
  }
  .profile-order {
    grid-template-columns: 1fr;
  }
  .profile-order-image {
    width: 72px;
    height: 72px;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    background: #fff;
    border: 0;
    box-shadow: none;
    overflow-y: auto;
    z-index: 220;
    transform: translateX(105%);
    transition: transform .22s ease;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .main-nav { transform: translateX(0); }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.42);
    z-index: 210;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  body.nav-open .nav-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .main-nav > .container {
    padding: 0;
  }
  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  .mobile-nav-head strong {
    font-size: 18px;
  }
  .mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: #1a1a1a;
    background: #fafafa;
  }
  .main-nav > .container > ul {
    display: block;
    padding: 8px 0 24px;
  }
  .main-nav > .container > ul > li {
    border-bottom: 1px solid #f4f4f4;
  }
  .main-nav > .container > ul > li > a,
  .nav-row > a {
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: 0.2px;
    white-space: normal;
  }
  .nav-row {
    display: flex;
    align-items: stretch;
  }
  .nav-row > a {
    flex: 1;
  }
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    color: #1a1a1a;
    border-left: 1px solid #f0f0f0;
  }
  .has-submenu.is-open .submenu-toggle .i {
    transform: rotate(180deg);
  }
  .main-nav > .container > ul > li.is-open > a,
  .main-nav > .container > ul > li.is-open > .nav-row > a {
    background: #fff;
    color: #d4af37;
  }
  .submenu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: #fafafa;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  .has-submenu.is-open > .submenu {
    display: block;
  }
  .submenu li a {
    padding: 13px 20px 13px 34px;
    white-space: normal;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
  }
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 28px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 24px; }
  .page-content { padding-top: 26px; padding-bottom: 44px; }
  .page-title { font-size: 28px; margin-bottom: 16px; letter-spacing: 0; }
  .page-subtitle { margin-top: -4px; margin-bottom: 20px; font-size: 17px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-info { padding: 12px 10px; }
  .product-name { font-size: 13px; line-height: 1.32; }
  .price, .price-sale { font-size: 14px; }
  .price-regular { font-size: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .cart-items {
    display: grid;
    gap: 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 85px minmax(0, 1fr);
    grid-template-areas:
      "image info"
      "image qty"
      "image total";
    gap: 8px 14px;
    align-items: start;
    padding: 12px 42px 12px 12px;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  }
  .cart-item:last-child { border-bottom: 1px solid #ececec; }
  .cart-item-image {
    grid-area: image;
    width: 85px;
    height: 110px;
    border-radius: 8px;
  }
  .cart-item-info {
    grid-area: info;
    min-width: 0;
    padding-top: 2px;
  }
  .cart-item-info h4 {
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 7px;
  }
  .cart-item-info h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 12px;
    line-height: 1.35;
  }
  .cart-item-meta span { margin-right: 0; }
  .cart-item-price {
    margin-top: 8px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 15px;
  }
  .cart-item-qty {
    grid-area: qty;
    display: flex;
    align-items: center;
    margin-top: 2px;
  }
  .cart-item-qty input {
    width: 58px;
    height: 34px;
    border-radius: 7px;
    border: 1px solid #dedede;
    font-weight: 700;
  }
  .cart-item-total {
    grid-area: total;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 4px;
    color: #666;
    font-size: 12px;
  }
  .cart-item-total strong {
    color: #1a1a1a;
    font-size: 15px;
  }
  .cart-line-total-label { display: inline; }
  .cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
  }
  .cart-item-remove .btn-icon {
    width: 30px;
    height: 30px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 999px;
  }
  .brand-list { grid-template-columns: 1fr; }
  .footer {
    padding: 22px 0 14px;
    margin-top: 34px;
  }
  .footer-brand {
    display: block;
  }
  .footer-brand h3 {
    margin-bottom: 5px;
  }
  .footer-meta {
    display: grid;
    gap: 4px;
    font-size: 11px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .footer-bottom {
    display: block;
    margin-top: 14px;
    padding-top: 10px;
  }
  .product-details h1 { font-size: 22px; }
  .product-price-detail .price, .product-price-detail .price-sale { font-size: 22px; }
  .product-set-card { grid-template-columns: 1fr; }
  .product-set-images { justify-content: start; grid-template-columns: 54px auto 54px; }
  .header-top .container { font-size: 11px; gap: 7px 10px; }
  .language-link { width: 26px; height: 26px; }
  .language-link.active { width: 32px; height: 32px; }
  .language-link img { width: 20px; height: 20px; }
  .language-link.active img { width: 26px; height: 26px; }
  .logo { font-size: 22px; }
  .header-main .container { gap: 12px; }
  .home-hero { padding: 0; }
  .home-hero-image {
    min-height: 320px;
    height: 58vh;
    max-height: 520px;
    aspect-ratio: auto;
    border-radius: 0;
  }
  .quick-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: calc(100% - 28px);
  }
  .toolbar {
    align-items: stretch;
    gap: 10px;
    flex-direction: column;
  }
  .toolbar-sort {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
  }
  .toolbar-sort select {
    width: 100%;
    min-width: 0;
    font-size: 13px;
  }
  .toolbar-reset {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .category-seo-copy {
    margin-top: 28px;
  }
  .category-seo-copy p {
    font-size: 15px;
    line-height: 1.7;
  }
  .category-seo-links {
    display: grid;
    grid-template-columns: 1fr;
  }
  .category-seo-links a {
    justify-content: center;
  }
  .category-faq {
    margin-top: 30px;
  }
  .category-faq h2 {
    font-size: 21px;
  }
  .quick-category-card { min-height: 66px; font-size: 14px; min-width: 0; box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
  .features { padding: 8px 0; }
  .features-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; }
  .feature { display: grid; justify-items: center; text-align: center; gap: 3px; padding: 5px 2px; }
  .feature-icon { width: 22px; height: 22px; flex-basis: 22px; }
  .feature h3 { font-size: 9px; max-width: 100%; }
  .feature p { display: none; }
  .product-tabs-head { justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .product-tab { min-width: 104px; padding: 10px 14px; }
  .blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-header h1, .blog-post-header h1 { font-size: 30px; }
  .blog-header p, .blog-post-header p { font-size: 15px; }
  .blog-card-body { padding: 14px; }
  .blog-card h2 { font-size: 17px; }
  .blog-hero-image { aspect-ratio: 1.25; margin-bottom: 24px; }
  .blog-content h2 { font-size: 23px; margin-top: 28px; }
  .blog-content h3 { font-size: 18px; }
  .blog-content p { font-size: 15px; line-height: 1.75; }
  .share-actions {
    gap: 6px;
    margin: 12px 0 16px;
  }
  .share-label {
    width: 100%;
  }
  .share-btn {
    width: 36px;
    height: 36px;
  }
  .share-status {
    flex: 1;
    min-width: 110px;
  }
  .cart-link span:not(.cart-badge) { display: none; }
  .mobile-menu-btn { width: 42px; height: 42px; }
  .checkout-form,
  .contact-form,
  .contact-info,
  .cart-summary,
  .checkout-summary {
    padding: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .products-grid {
    gap: 8px;
  }
  .product-info {
    padding: 10px 8px;
  }
}
