/* USAKING — Grailzee-inspired luxury theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --uk-bg: #ffffff;
  --uk-ink: #0a0a0a;
  --uk-muted: #6b6b6b;
  --uk-line: #e8e8e8;
  --uk-soft: #f5f5f5;
  --uk-serif: "Cormorant Garamond", Georgia, serif;
  --uk-sans: "Outfit", system-ui, sans-serif;
  --uk-max: 1280px;
}

html, body {
  background: var(--uk-bg) !important;
  color: var(--uk-ink);
  font-family: var(--uk-sans);
}

/* Hide blog/page sidebars sitewide — keep shop product filters */
.sidebar,
.aside,
.page-sidebar,
.layout-sidebar,
.blog-sidebar,
aside.blog-sidebar,
.article-with-sidebar .blog-sidebar,
.widget-area,
#secondary,
.col-sidebar,
.left-sidebar,
.right-sidebar,
aside.sidebar,
.filters-sidebar,
.category-sidebar {
  display: none !important;
  width: 0 !important;
  max-width: 0 !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

/* Blog list + article: full width after sidebar removed */
.blog-layout,
.home-blog-layout,
.article-with-sidebar .blog-layout,
.blog-browser .blog-layout,
.blog-browser:not(.article-with-sidebar) .blog-layout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
}
.blog-browser .article-main,
.article-with-sidebar .article-main,
.blog-browser .article,
.article.article-main {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}
.blog-browser.shell,
.blog-browser .shell {
  max-width: min(1400px, 100%) !important;
}
.blog-grid,
.home-blog-grid {
  width: 100% !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
.article-header,
.article .prose,
.article-main .prose,
.article-cover,
.article-main figure,
.article-main img {
  max-width: none !important;
  width: 100%;
}
.article-main img,
.article-cover img,
.article-main figure img {
  height: auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .blog-grid,
  .home-blog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
}
@media (max-width: 1100px) {
  .blog-grid,
  .home-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 760px) {
  .blog-grid,
  .home-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

/* Shop page: left Category + Price filters with counts */
.shop-layout {
  display: grid !important;
  grid-template-columns: 240px minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}
.shop-sidebar,
aside.shop-sidebar {
  display: grid !important;
  gap: 8px !important;
  position: static !important;
  top: auto !important;
  align-self: stretch !important;
  z-index: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
.shop-main {
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
}
.shop-filter-block {
  border: 1px solid var(--uk-line) !important;
  background: #fff !important;
}
.shop-filter-block > summary {
  font-family: var(--uk-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
.shop-filter-option {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #111 !important;
}
.shop-filter-option em {
  margin-left: auto !important;
  color: var(--uk-muted) !important;
  font-style: normal !important;
  font-size: 12px !important;
}
@media (max-width: 1100px) {
  .shop-layout {
    grid-template-columns: 1fr !important;
  }
  .shop-sidebar,
  aside.shop-sidebar {
    position: static !important;
    top: auto !important;
  }
}

.with-sidebar,
.layout-with-sidebar,
.content-with-sidebar,
.main-with-sidebar,
.has-sidebar {
  display: block !important;
}

.with-sidebar > .content,
.layout-with-sidebar > .content,
.main-content,
.content-area,
.col-main,
.posts-main {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 100% !important;
}

#lang-switch, .lang-switch { display: none !important; }

.uk-shell { max-width: var(--uk-max); margin: 0 auto; padding: 0 20px; }

/* Shop pager belongs under the grid, never as a product tile */
#shop-pager,
.shop-pagination {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  margin-bottom: 40px;
  grid-column: 1 / -1;
}
#product-grid > #shop-pager,
.product-grid > .shop-pagination {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* Shop grid: 4 columns × 15 rows = 60 products per page */
.shop-main .product-grid.product-catalog,
.shop-main .product-catalog {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Shop pagination — larger tap targets */
#shop-pager,
.shop-pagination {
  gap: 12px !important;
  margin-top: 36px !important;
  margin-bottom: 48px !important;
}
#shop-pager .blog-page-btn,
.shop-pagination .blog-page-btn {
  min-width: 52px !important;
  width: 52px !important;
  height: 52px !important;
  font-size: 17px !important;
  border-radius: 12px !important;
}
#shop-pager .blog-page-next,
.shop-pagination .blog-page-next {
  min-width: 56px !important;
  width: auto !important;
  padding: 0 16px !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}
#shop-pager .blog-page-ellipsis,
.shop-pagination .blog-page-ellipsis {
  font-size: 18px !important;
  padding: 0 6px !important;
}

/* Chrome */
.site-chrome { background: #fff; border-bottom: 1px solid var(--uk-line); }
.utility-bar { background: #0a0a0a; color: #fff; font-size: 12px; letter-spacing: .04em; }
.utility-bar a { color: #fff; }
/* Header logo only — never style product-card .brand */
a.brand,
.brand-logo,
.brand-name {
  font-family: var(--uk-serif) !important;
  font-weight: 500 !important;
  font-size: clamp(18px, 2.2vw, 26px) !important;
  letter-spacing: .12em !important;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-mark { display: none !important; }
@media (max-width: 1100px) {
  a.brand,
  .brand-logo,
  a.brand .brand-name,
  .brand-name {
    font-size: clamp(11px, 3.1vw, 14px) !important;
    letter-spacing: .06em !important;
    max-width: min(48vw, 168px) !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
    transform: none !important;
  }
}
@media (max-width: 800px) {
  a.brand,
  .brand-logo,
  a.brand .brand-name,
  .brand-name {
    font-size: clamp(10px, 2.8vw, 13px) !important;
    letter-spacing: .05em !important;
    max-width: min(46vw, 150px) !important;
  }
}

/* Remove decorative brand / category lines on product cards */
.product-card > .product-category,
.product-card .product-info > .brand,
.product-card .brand {
  display: none !important;
}
.main-nav .nav-link-text {
  font-family: var(--uk-sans);
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 500;
}
/* Mega menus: Rolex / Other Luxury Watches */
.site-header,
.site-chrome,
.main-nav { overflow: visible !important; }
.nav-item--mega { position: relative; overflow: visible; }
.nav-item--mega > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-item--mega > .nav-link .nav-link-text {
  letter-spacing: .1em;
  white-space: nowrap;
}
.nav-item--mega > .nav-link::after {
  content: "";
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .55;
  margin-top: 1px;
}
.nav-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 420px;
  width: max-content;
  max-width: min(92vw, 860px);
  padding: 10px 0 0;
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.nav-item--mega.is-open .nav-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-mega-inner {
  padding: 18px 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--uk-line);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  color: #111;
}
.nav-mega-all {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #111 !important;
  text-decoration: none;
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.nav-mega-grid--cols2 {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 6px 20px;
}
.nav-mega-grid a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #111 !important;
  font-size: 13px;
  text-decoration: none;
}
.nav-mega-grid a:hover { background: var(--uk-soft); }
.nav-mega-empty { margin: 0; font-size: 12px; color: var(--uk-muted); }
@media (max-width: 1100px) {
  .nav-item--mega > .nav-link::after { display: none; }
  .nav-mega-panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 8px 0 0 12px;
    min-width: 0;
    max-width: none;
  }
  .nav-mega-inner {
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
  }
  .nav-mega-grid--cols2 { grid-template-columns: 1fr; }
  .nav-mega-grid a { color: inherit !important; }
}

/* Hero — watchguys.com video-hero pattern */
.uk-hero.video-hero {
  position: relative;
  height: 100vh;
  height: calc(100dvh - 120px);
  min-height: 480px;
  overflow: hidden;
  background: #000;
  color: #fff;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uk-hero.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
.uk-hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  display: block;
  border: 0;
  max-width: none;
}
.uk-hero .hero-video::-webkit-media-controls,
.uk-hero .hero-video::-webkit-media-controls-start-playback-button,
.uk-hero .hero-video::-webkit-media-controls-panel {
  display: none !important;
}
.uk-hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(92vw, 900px);
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
  animation: ukFadeUp .9s ease both;
}
@keyframes ukFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.uk-hero-kicker {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin: 0 0 16px;
  opacity: .85;
}
.uk-hero h1 {
  font-family: var(--uk-serif);
  font-weight: 500;
  font-size: clamp(28px, 4.6vw, 56px);
  letter-spacing: .06em;
  line-height: 1.2;
  margin: 0 auto 18px;
  text-transform: uppercase;
  max-width: 18em;
  white-space: normal;
}
.uk-hero-lead {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .04em;
  max-width: 520px;
  margin: 0 auto 28px;
  opacity: .9;
}
.uk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.uk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  font-family: var(--uk-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.uk-btn:hover { transform: translateY(-1px); }
.uk-btn-solid { background: #fff; color: #0a0a0a; }
.uk-btn-solid:hover { background: #f0f0f0; }
.uk-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.uk-btn-ghost:hover { background: rgba(255,255,255,.1); }
.uk-btn-outline {
  background: transparent;
  color: var(--uk-ink);
  border-color: var(--uk-ink);
}
.uk-btn-outline:hover { background: var(--uk-ink); color: #fff; }
.uk-btn-dark { background: #0a0a0a; color: #fff; }
.uk-btn-dark:hover { background: #222; }

/* Sections */
/* Section gaps ~1/3 of previous (shortened by 2/3) */
.uk-section { padding: 24px 0; }
.uk-section-head {
  text-align: center;
  margin-bottom: 12px;
  animation: ukFadeUp .7s ease both;
}
.uk-section-head h2 {
  font-family: var(--uk-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.uk-section-head p {
  color: var(--uk-muted);
  margin: 0 0 8px;
  font-size: 14px;
}

/* Brand / category pills — wrap all categories across multiple rows */
.uk-brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 12px;
  padding: 18px 4px 28px;
  overflow: visible;
}
/* Floating pills — white bg, black text, thumbnail + soft shadow */
.uk-brand-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  will-change: transform;
  animation: uk-balloon-float var(--balloon-dur, 4.6s) ease-in-out infinite;
  animation-delay: var(--balloon-delay, 0s);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.uk-brand-pill:hover {
  border-color: rgba(0, 0, 0, .18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
}
.uk-brand-pill img,
.uk-brand-pill .uk-brand-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #f3f3f3;
}
.uk-brand-pill img {
  object-fit: cover;
  object-position: center;
}
.uk-brand-pill .uk-brand-dot {
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  color: #222;
  border: 1px solid rgba(0, 0, 0, .06);
}
.uk-brand-pill span {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #111;
}
@keyframes uk-balloon-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  25% { transform: translate3d(0, -9px, 0) rotate(1deg); }
  50% { transform: translate3d(0, -3px, 0) rotate(-.5deg); }
  75% { transform: translate3d(0, -12px, 0) rotate(1.2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .uk-brand-pill { animation: none; }
}

/* Rolex watches — ranked brand=rolex tiles + category label */
.uk-rolex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 14px;
}
.uk-rolex-tile {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  transition: transform .25s ease;
}
.uk-rolex-tile:hover { transform: translateY(-3px); }
.uk-rolex-tile-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
}
.uk-rolex-tile img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition: transform .45s ease;
  display: block;
}
.uk-rolex-tile:hover img { transform: scale(1.03); }
.uk-rolex-tile-cat {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .02em;
  color: #222;
  padding: 8px 4px 2px;
  font-weight: 500;
}

/* Featured products */
.uk-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.uk-product-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .25s ease;
}
.uk-product-card:hover { transform: translateY(-4px); }
.uk-product-media {
  position: relative;
  aspect-ratio: 1 / 1.15;
  background: var(--uk-soft);
  overflow: hidden;
  margin-bottom: 14px;
}
.uk-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.uk-product-card:hover .uk-product-media img { transform: scale(1.04); }
.uk-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1f8f4e;
  color: #fff;
  font-size: 10px;
  letter-spacing: .1em;
  padding: 4px 8px;
  text-transform: uppercase;
}
.uk-product-title {
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.4;
  margin: 0 0 8px;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uk-product-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.uk-price { font-weight: 600; font-size: 15px; }
.uk-compare {
  color: var(--uk-muted);
  text-decoration: line-through;
  font-size: 13px;
}
.uk-save {
  margin-left: auto;
  background: #0a0a0a;
  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Reviews vertical cards */
.uk-reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.uk-review-card {
  background: #fff;
  border: 1px solid var(--uk-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.uk-review-media {
  position: relative;
  background: #f3f3f3;
  overflow: hidden;
}
.uk-review-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.uk-review-play { display: none !important; }
.uk-review-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.uk-review-stars { color: #c9a227; letter-spacing: 1px; font-size: 13px; line-height: 1; }
.uk-review-stars .is-filled { color: #c9a227; }
.uk-review-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.uk-review-verified {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  color: #15803d;
}
.uk-review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.uk-review-date { font-size: 12px; color: var(--uk-muted); }
.uk-review-product {
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
  line-height: 1.35;
}
.uk-review-product:hover { text-decoration: underline; }
.uk-review-text {
  font-size: 13px;
  color: var(--uk-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uk-review-cta {
  margin-top: 4px;
  width: 100%;
  text-align: center;
}
a.uk-review-media { display: block; color: inherit; text-decoration: none; }

/* Blog */
.uk-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.uk-blog-card { text-decoration: none; color: inherit; display: block; }
.uk-blog-card:hover .uk-blog-media img { transform: scale(1.04); }
.uk-blog-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--uk-soft);
  margin-bottom: 12px;
}
.uk-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.uk-blog-card h3 {
  font-family: var(--uk-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 8px;
}
.uk-blog-card p {
  margin: 0;
  color: var(--uk-muted);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reviews page: masonry (堆积木) — natural heights, never stretch rows */
.wg-reviews-page .uk-review-cta,
.wg-reviews-card .uk-review-cta { margin-top: 10px; }
.wg-reviews-grid {
  display: block !important;
  column-count: 5 !important;
  column-gap: 16px !important;
  grid-template-columns: unset !important;
  gap: unset !important;
}
@media (max-width: 1200px) {
  .wg-reviews-grid { column-count: 4 !important; }
}
@media (max-width: 980px) {
  .wg-reviews-grid { column-count: 3 !important; }
}
@media (max-width: 720px) {
  .wg-reviews-grid { column-count: 2 !important; }
}
@media (max-width: 480px) {
  .wg-reviews-grid { column-count: 1 !important; }
}
.wg-reviews-card {
  display: inline-block !important;
  width: 100% !important;
  break-inside: avoid !important;
  margin: 0 0 16px !important;
  border: 1px solid var(--uk-line) !important;
  background: #fff !important;
  height: auto !important;
  min-height: 0 !important;
}
.wg-reviews-body {
  flex: none !important;
  height: auto !important;
}
/* Photos are stills — no video crop / play chrome */
.wg-reviews-photo {
  aspect-ratio: auto !important;
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: #f3f3f3 !important;
  overflow: hidden !important;
  position: relative !important;
}
.wg-reviews-photo::before,
.wg-reviews-photo::after,
.wg-reviews-photo .uk-review-play,
.wg-reviews-card .uk-review-play {
  display: none !important;
  content: none !important;
}
.wg-reviews-photo img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
}

/* Product cards: show full product photo (no crop) on pure white */
.product-card .product-image,
.product-grid .product-image,
.product-recommend-grid .product-image,
.home-shop-grid .product-image,
.product-page .product-image {
  aspect-ratio: 1 / 1 !important;
  background: #ffffff !important;
  overflow: hidden !important;
}
.product-card .product-image img,
.product-grid .product-image img,
.product-recommend-grid .product-image img,
.home-shop-grid .product-image img,
.product-page .product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
  transform: none !important;
}
.product-card:hover .product-image img {
  transform: none !important;
}

/* Product detail main image — PC: height 500px, show full photo */
@media (min-width: 901px) {
  .product-page .product-gallery-main,
  .product-page [data-product-gallery] .product-gallery-main,
  #local-product-page .product-gallery-main,
  .product-gallery .product-gallery-main,
  [data-product-gallery] .product-gallery-main {
    aspect-ratio: auto !important;
    width: 100% !important;
    height: 500px !important;
    max-height: 500px !important;
    background: #ffffff !important;
    overflow: hidden !important;
  }
  .product-page .product-gallery-main img,
  .product-page .product-gallery-zoom img,
  #local-product-page .product-gallery-main img,
  #local-product-page .product-gallery-zoom img,
  #local-product-cover,
  .product-gallery-main img,
  .product-gallery-zoom img,
  [data-product-gallery] .product-gallery-main img,
  [data-product-gallery] .product-gallery-zoom img {
    width: 100% !important;
    height: 500px !important;
    max-width: 100% !important;
    max-height: 500px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff !important;
    transform: none !important;
  }
}

.site-footer {
  background: #0a0a0a !important;
  color: #fff !important;
  margin-top: 40px;
}
.site-footer a { color: rgba(255,255,255,.8) !important; }

@media (max-width: 1100px) {
  .uk-product-grid,
  .uk-rolex-grid { grid-template-columns: repeat(3, 1fr); }
  .uk-reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .uk-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .uk-hero.video-hero {
    height: 100vh;
    height: calc(100dvh - 100px);
    min-height: 420px;
  }
  .uk-product-grid,
  .uk-rolex-grid { grid-template-columns: repeat(2, 1fr); gap: 12px 10px; }
  .uk-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .uk-blog-grid { grid-template-columns: 1fr 1fr; }
  .uk-section { padding: 16px 0; }
  .uk-section-head { margin-bottom: 10px; }
}

/* Product detail — matched customer reviews */
.uk-product-reviews {
  max-width: 1100px;
  margin: 40px auto 64px;
  padding: 0 20px;
}
.uk-product-reviews-head {
  text-align: center;
  margin-bottom: 22px;
}
.uk-product-reviews-head h2 {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.uk-product-reviews-head p {
  margin: 0 0 12px;
  color: #666;
}
.uk-product-reviews-grid {
  column-count: 3;
  column-gap: 16px;
}
@media (max-width: 900px) {
  .uk-product-reviews-grid { column-count: 2; }
}
@media (max-width: 640px) {
  .uk-product-reviews-grid { column-count: 1; }
}
.uk-product-review-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.uk-product-review-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #f5f5f5;
}
.uk-product-review-card > div { padding: 12px 14px 14px; }
.uk-product-review-card strong { display: inline-block; margin-right: 8px; }
.uk-product-review-card em {
  color: #1f8f4e;
  font-style: italic;
  font-size: 12px;
}
.uk-product-review-stars {
  color: #e8a020;
  margin: 6px 0;
  letter-spacing: 1px;
}
.uk-product-review-card time {
  display: block;
  color: #888;
  font-size: 12px;
  margin-bottom: 6px;
}
.uk-product-review-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #444;
}

/* Private Concierge (amazonb lux-cg) — products + articles */
#lux-concierge,
.lux-cg,
.lux-cg-frame {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
  clear: both !important;
  box-sizing: border-box !important;
}
#lux-concierge {
  margin: 18px 0 8px !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
#lux-concierge *,
#lux-concierge *::before,
#lux-concierge *::after {
  box-sizing: border-box !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  min-height: 0 !important;
}
#lux-concierge img {
  display: block !important;
  width: 112px !important;
  height: 112px !important;
  max-width: 112px !important;
  max-height: 112px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}
.lux-cg {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}
.lux-cg-frame {
  position: relative;
  overflow: hidden;
  height: auto !important;
  min-height: 0 !important;
  max-height: 360px;
  border: 1px solid #2a2620;
  color: #f3efe6;
  background: linear-gradient(165deg, #1a1815 0%, #12110f 55%, #0e0d0c 100%);
  box-shadow: 0 8px 22px rgba(18, 16, 12, .12);
}
.lux-cg-frame::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c4a574 20%, #e8d5a8 50%, #c4a574 80%, transparent);
}
.lux-cg-head {
  padding: 10px 16px 2px;
  text-align: center;
}
.lux-cg-kicker {
  margin: 0 0 2px;
  color: #c4a574;
  font-family: var(--sans, "Outfit", "Helvetica Neue", Arial, sans-serif);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.2;
}
.lux-cg-lead {
  margin: 0 auto;
  max-width: none;
  color: #f7f2e8;
  font-family: var(--display, "Cormorant Garamond", "Times New Roman", serif);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .01em;
}
.lux-cg-body {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  gap: 8px 14px !important;
  align-items: stretch !important;
  justify-items: stretch;
  padding: 8px 14px 12px !important;
  height: auto !important;
}
.lux-cg-channel {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  width: 100% !important;
  min-width: 0;
  height: auto !important;
  padding: 8px 10px 10px;
  border: 1px solid rgba(196, 165, 116, .28);
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  color: inherit;
}
a.lux-cg-channel:hover {
  border-color: rgba(196, 165, 116, .7);
  background: rgba(255, 255, 255, .06);
}
.lux-cg-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.lux-cg-badge--wx { background: #07c160; }
.lux-cg-qr {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  padding: 4px;
  background: #fff;
  flex: 0 0 auto !important;
}
.lux-cg-qr--dark { background: #0a0a0a; }
.lux-cg-id {
  color: #f3efe6;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .01em;
  text-align: center;
  word-break: break-all;
  line-height: 1.25;
}
.lux-cg-sub {
  color: rgba(243, 239, 230, .5);
  font-size: 9px;
  text-align: center;
  line-height: 1.25;
}
.lux-cg-mid {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0;
  width: 100% !important;
  min-width: 0;
  height: auto !important;
  padding: 6px 10px;
  text-align: center;
}
.lux-cg-mid-title {
  margin: 0 0 4px;
  color: #c4a574;
  font-family: var(--display, "Cormorant Garamond", "Times New Roman", serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.2;
  white-space: normal;
}
.lux-cg-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid !important;
  gap: 3px !important;
  width: 100% !important;
  max-width: none !important;
  align-content: start !important;
}
.lux-cg-list li {
  display: grid;
  gap: 0;
  padding: 3px 0;
  border-bottom: 1px solid rgba(196, 165, 116, .16);
  height: auto !important;
}
.lux-cg-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.lux-cg-list span {
  color: rgba(243, 239, 230, .55);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.2;
}
.lux-cg-list a,
.lux-cg-wx {
  color: #fff;
  font-family: var(--display, "Cormorant Garamond", "Times New Roman", serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  line-height: 1.25;
}
.lux-cg-list a:hover,
.lux-cg-wx:hover { color: #e8d5a8; }
.lux-cg-hint {
  margin: 6px 0 0;
  color: rgba(243, 239, 230, .55);
  font-size: 11px;
  letter-spacing: .02em;
  line-height: 1.3;
}
@media (max-width: 820px) {
  .lux-cg-frame { max-height: none; }
  .lux-cg-body {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 8px 10px 10px !important;
  }
  .lux-cg-head { padding: 10px 10px 2px; }
  .lux-cg-mid {
    grid-column: 1 / -1;
    order: -1;
    padding: 0 0 6px;
    border-bottom: 1px solid rgba(196, 165, 116, .2);
  }
  .lux-cg-qr,
  #lux-concierge img {
    width: 104px !important;
    height: 104px !important;
    max-width: 104px !important;
    max-height: 104px !important;
  }
  .lux-cg-qr { width: 104px; height: 104px; }
}
@media (max-width: 520px) {
  .lux-cg-body { grid-template-columns: 1fr 1fr !important; }
  .lux-cg-qr,
  #lux-concierge img {
    width: 96px !important;
    height: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
  }
  .lux-cg-qr { width: 96px; height: 96px; }
  .lux-cg-lead { font-size: 0.9rem; }
}

/* Shop: sidebar + products scroll together (no sticky split) */
.shop-layout {
  align-items: stretch !important;
}
.shop-sidebar,
aside.shop-sidebar,
.shop-layout .shop-sidebar {
  position: static !important;
  top: auto !important;
  align-self: stretch !important;
  max-height: none !important;
  overflow: visible !important;
}
.shop-sidebar .shop-filter-list {
  max-height: none !important;
  overflow: visible !important;
}
.shop-main {
  overflow: visible !important;
  max-height: none !important;
}

