/* =========================================================
   shop.css — Luxury Marine Showroom
   Loads AFTER main.css + teklif.css on shop pages
   ========================================================= */

:root {
  --lux-gold:   #c9a84c;
  --lux-goldd:  #b8943f;
  --lux-text:   #1a1a1a;
  --lux-muted:  #6b6b6b;
  --lux-faint:  #a8a8a8;
  --lux-bdr:    #e8e8e8;
  --lux-bdr2:   #f2f2f2;
  --lux-bg:     #fafafa;
  --lux-white:  #ffffff;
  --lux-t:      280ms cubic-bezier(.25,.46,.45,.94);
}

/* -- HERO ------------------------------------------------- */
.lux-hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 88vh;
  background: var(--lux-white);
}

.lux-hero--compact {
  min-height: 46vh;
}

.lux-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 5vw;
}

.lux-hero--compact .lux-hero__content {
  justify-content: flex-end;
  padding-bottom: 52px;
}

.lux-eyebrow {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 20px;
}

.lux-hero__h1 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--lux-text);
  margin: 0 0 22px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.lux-hero--compact .lux-hero__h1 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.lux-hero__sub {
  font-size: 0.9375rem;
  color: var(--lux-muted);
  line-height: 1.72;
  margin: 0 0 36px;
  max-width: 420px;
}

.lux-hero__divider {
  width: 36px;
  height: 1px;
  background: var(--lux-gold);
  margin-bottom: 32px;
}

.lux-hero__stats {
  display: flex;
  gap: 36px;
}

.lux-stat span {
  display: block;
  font-size: 1.625rem;
  font-weight: 200;
  color: var(--lux-text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 5px;
}

.lux-stat em {
  font-style: normal;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-faint);
}

.lux-hero__media {
  overflow: hidden;
  background: var(--lux-bg);
  position: relative;
}

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

/* -- STICKY FILTER STRIP ---------------------------------- */
.lux-filter {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lux-bdr);
}

.lux-filter__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 52px;
  gap: 0;
}

.lux-filter__cats {
  display: flex;
  align-items: center;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.lux-filter__cats::-webkit-scrollbar { display: none; }

.lux-filter__cat {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 18px;
  font-size: 0.8125rem;
  color: var(--lux-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--lux-t), border-color var(--lux-t);
}
.lux-filter__cat:first-child { padding-left: 0; }
.lux-filter__cat:hover       { color: var(--lux-text); }
.lux-filter__cat.active      { color: var(--lux-gold); border-bottom-color: var(--lux-gold); }

.lux-filter__right {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 20px;
  border-left: 1px solid var(--lux-bdr);
  flex-shrink: 0;
}

.lux-filter__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--lux-gold);
  border: 1px solid var(--lux-gold);
  padding: 3px 8px;
  letter-spacing: 0.04em;
}
.lux-filter__tag a {
  color: var(--lux-faint);
  text-decoration: none;
  line-height: 1;
  transition: color var(--lux-t);
}
.lux-filter__tag a:hover { color: var(--lux-gold); }

.lux-filter__search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lux-filter__search input {
  width: 0;
  max-width: 0;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 0.8125rem;
  color: var(--lux-text);
  padding: 3px 0;
  outline: none;
  transition: max-width 300ms ease, border-color 300ms ease, padding 300ms ease;
  overflow: hidden;
}
.lux-filter__search.open input {
  max-width: 180px;
  width: 180px;
  border-bottom-color: var(--lux-gold);
}
.lux-filter__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lux-muted);
  display: flex;
  align-items: center;
  padding: 0;
  transition: color var(--lux-t);
}
.lux-filter__search-btn:hover { color: var(--lux-gold); }

/* -- CATEGORY SHOWCASE ------------------------------------ */
.lux-cats {
  max-width: 1480px;
  margin: 0 auto;
  padding: 56px 40px 48px;
}

.lux-cats__header {
  margin-bottom: 20px;
}

.lux-cats__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lux-faint);
}

.lux-cats__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 3px;
}

.lux-cat {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--lux-bg);
}

.lux-cat--hero {
  grid-row: span 2;
}

.lux-cat__img {
  position: absolute;
  inset: 0;
}
.lux-cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.25,.46,.45,.94), filter 600ms ease;
  filter: brightness(0.78) saturate(0.85);
}
.lux-cat:hover .lux-cat__img img {
  transform: scale(1.05);
  filter: brightness(0.68) saturate(1.1);
}

.lux-cat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
}

.lux-cat__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px 20px;
  z-index: 1;
}

.lux-cat__name {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 4px;
}
.lux-cat--hero .lux-cat__name {
  font-size: 1.625rem;
  font-weight: 300;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.lux-cat__arrow {
  display: inline-block;
  color: var(--lux-gold);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform var(--lux-t), opacity var(--lux-t);
}
.lux-cat:hover .lux-cat__arrow {
  opacity: 1;
  transform: translateX(0);
}

.lux-cat__count {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* -- PRODUCT CHAPTERS ------------------------------------- */
.lux-chapters {
  max-width: 1480px;
  margin: 0 auto;
  padding: 8px 40px 80px;
}

.lux-chapter {
  margin-bottom: 64px;
}

.lux-chapter__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 3px;
  border-bottom: 1px solid var(--lux-bdr);
}

.lux-chapter__num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lux-gold);
}

.lux-chapter__title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-text);
}

.lux-chapter__count {
  font-size: 0.6875rem;
  color: var(--lux-faint);
}

.lux-chapter__more {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--lux-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--lux-t);
}
.lux-chapter__more:hover { color: var(--lux-gold); }

.lux-chapter__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3px;
}

/* -- PRODUCT CARD ----------------------------------------- */
.shop-card-wrap {
  position: relative;
  overflow: hidden;
  background: var(--lux-white);
}

.lux-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.lux-card__img {
  aspect-ratio: 3/4;
  background: var(--lux-bg);
  overflow: hidden;
  position: relative;
}

.lux-chapter__grid .shop-card-wrap:first-child .lux-card__img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 320px;
}

.lux-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  box-sizing: border-box;
  display: block;
  transition: transform 500ms cubic-bezier(.25,.46,.45,.94);
}

.shop-card-wrap:hover .lux-card__img img {
  transform: scale(1.04);
}

.lux-card__body {
  padding: 12px 14px 14px;
  background: var(--lux-white);
  border-top: 1px solid var(--lux-bdr2);
}

.lux-card__brand {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 5px;
}

.lux-card__name {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--lux-text);
  line-height: 1.4;
  margin: 0;
}

/* teklif.css compat — keep vm-btn slide-up behavior */
.shop-card__vm-btn {
  width: 100%;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-white);
  background: var(--lux-gold);
  border: none;
  padding: 10px;
  cursor: pointer;
  display: block;
  transition: background var(--lux-t);
}
.shop-card__vm-btn:hover { background: var(--lux-goldd); }

/* -- BRAND STRIP ------------------------------------------ */
.lux-brands {
  border-top: 1px solid var(--lux-bdr);
  border-bottom: 1px solid var(--lux-bdr);
  padding: 40px 0;
  background: var(--lux-white);
}

.lux-brands__label {
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lux-faint);
  margin-bottom: 28px;
}

.lux-brands__track {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 40px;
}
.lux-brands__track::-webkit-scrollbar { display: none; }

.lux-brands__logo {
  flex-shrink: 0;
  opacity: 0.3;
  text-decoration: none;
  transition: opacity var(--lux-t);
  display: flex;
  align-items: center;
}
.lux-brands__logo:hover { opacity: 1; }

.lux-brands__logo img {
  height: 24px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  display: block;
}

.lux-brands__name {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lux-text);
}

/* -- SPECIALIST CTA --------------------------------------- */
.lux-specialist {
  padding: 80px 40px;
  background: var(--lux-bg);
  border-top: 1px solid var(--lux-bdr);
}

.lux-specialist__inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.lux-specialist__text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 200;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--lux-text);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
}

.lux-specialist__text p {
  font-size: 0.9375rem;
  color: var(--lux-muted);
  margin: 0;
  max-width: 440px;
  line-height: 1.68;
}

.lux-specialist__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.lux-specialist__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--lux-t), color var(--lux-t), border-color var(--lux-t);
}

.lux-specialist__cta--primary {
  background: var(--lux-text);
  color: #fff;
  padding: 16px 32px;
}
.lux-specialist__cta--primary:hover { background: var(--lux-gold); }

.lux-specialist__cta--wa {
  color: #25d366;
  padding: 0;
  border-bottom: 1px solid transparent;
}
.lux-specialist__cta--wa:hover { border-bottom-color: #25d366; }

/* -- FILTER VIEW (category / search results) -------------  */
.lux-filter-view {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.lux-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--lux-faint);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lux-breadcrumb a {
  color: var(--lux-muted);
  text-decoration: none;
  transition: color var(--lux-t);
}
.lux-breadcrumb a:hover { color: var(--lux-gold); }
.lux-breadcrumb__sep   { color: var(--lux-bdr); }

.lux-view-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lux-bdr);
  gap: 16px;
}
.lux-view-header h1 {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 200;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--lux-text);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.lux-view-count {
  font-size: 0.8125rem;
  color: var(--lux-faint);
  white-space: nowrap;
}

/* Category desc */
.lux-cat-desc {
  font-size: 0.9375rem;
  color: var(--lux-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 760px;
}
.lux-cat-desc--bottom {
  margin-top: 56px;
  margin-bottom: 0;
  padding-top: 40px;
  border-top: 1px solid var(--lux-bdr);
}

/* Sub-categories grid */
.lux-subcats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 3px;
  margin-bottom: 40px;
}

.lux-subcat {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--lux-white);
  overflow: hidden;
}

.lux-subcat__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--lux-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lux-subcat__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  transition: transform 400ms ease;
}
.lux-subcat:hover .lux-subcat__img img { transform: scale(1.04); }

.lux-subcat__body {
  padding: 10px 12px 12px;
  border-top: 1px solid var(--lux-bdr2);
}
.lux-subcat__name {
  display: block;
  font-size: 0.8125rem;
  color: var(--lux-text);
  margin-bottom: 2px;
  line-height: 1.3;
}
.lux-subcat__cnt {
  font-size: 0.6875rem;
  color: var(--lux-faint);
}

/* Brand tabs */
.lux-brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--lux-bdr);
}
.lux-brand-tab {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  font-size: 0.8125rem;
  color: var(--lux-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--lux-t), border-color var(--lux-t);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.lux-brand-tab:hover       { color: var(--lux-text); }
.lux-brand-tab.active      { color: var(--lux-gold); border-bottom-color: var(--lux-gold); }

/* Results grid */
.lux-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

/* -- EMPTY ------------------------------------------------ */
.lux-empty {
  padding: 80px 0;
  text-align: center;
}
.lux-empty p {
  font-size: 1rem;
  color: var(--lux-muted);
  margin-bottom: 20px;
}
.lux-empty a {
  font-size: 0.8125rem;
  color: var(--lux-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--lux-gold);
  padding-bottom: 2px;
}

/* -- PAGINATION ------------------------------------------- */
.lux-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 56px;
}
.lux-pag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-size: 0.8125rem;
  color: var(--lux-muted);
  background: var(--lux-white);
  border: 1px solid var(--lux-bdr);
  text-decoration: none;
  transition: border-color var(--lux-t), color var(--lux-t);
}
.lux-pag-btn:hover,
.lux-pag-btn--active {
  border-color: var(--lux-gold);
  color: var(--lux-gold);
}
.lux-pag-ellipsis {
  font-size: 0.8125rem;
  color: var(--lux-faint);
  padding: 0 4px;
}

/* -- PRODUCT DETAIL (shop-product.php) -------------------- */
.page--shop-product {
  background: var(--lux-white);
}

.prod-breadcrumb {
  background: var(--lux-white);
  border-bottom: 1px solid var(--lux-bdr);
  padding: 14px 0;
}
.prod-breadcrumb .container {
  max-width: 1480px;
  padding: 0 40px;
}
.prod-breadcrumb a,
.prod-breadcrumb span {
  font-size: 0.8125rem;
  color: var(--lux-muted);
  text-decoration: none;
}
.prod-breadcrumb a:hover { color: var(--lux-gold); }
.prod-breadcrumb .sep   { margin: 0 8px; color: var(--lux-bdr); }

.prod-wrap.container {
  max-width: 1480px;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}

.prod-gallery {
  position: sticky;
  top: 64px;
}

.prod-gallery__main {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.prod-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 32px;
  box-sizing: border-box;
  transition: transform 400ms ease;
}
.prod-gallery__main:hover img { transform: scale(1.03); }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--lux-white);
  border: 1px solid var(--lux-bdr);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--lux-muted);
  transition: border-color var(--lux-t), color var(--lux-t);
}
.gallery-nav:hover { border-color: var(--lux-gold); color: var(--lux-gold); }
.gallery-nav--prev { left: 12px; }
.gallery-nav--next { right: 12px; }

.prod-gallery__thumbs {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border: 1px solid var(--lux-bdr);
  padding: 6px;
  box-sizing: border-box;
  cursor: pointer;
  background: var(--lux-bg);
  transition: border-color var(--lux-t);
}
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--lux-gold); }

.prod-info__header {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--lux-bdr);
}
.prod-info__brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.prod-info__brand-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter var(--lux-t), opacity var(--lux-t);
}
.prod-info__brand-logo:hover { filter: grayscale(0%); opacity: 1; }
.prod-info__brand-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lux-gold);
  text-decoration: none;
}
.prod-info__name {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--lux-text);
  line-height: 1.2;
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 0;
}

.prod-attrs {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lux-bdr);
}
.prod-attrs__body {
  width: 100%;
}
.prod-attrs__body table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.prod-attrs__body th,
.prod-attrs__body td {
  padding: 9px 12px;
  font-size: 0.875rem;
  line-height: 1.5;
  vertical-align: top;
  border-bottom: 1px solid var(--lux-bdr2);
  text-align: left;
  word-break: break-word;
}
.prod-attrs__body th {
  width: 45%;
  font-weight: 500;
  color: var(--lux-muted);
  padding-left: 0;
}
.prod-attrs__body td {
  color: var(--lux-text);
  font-weight: 400;
}
.prod-attrs__body tr:last-child th,
.prod-attrs__body tr:last-child td { border-bottom: none; }

/* eski div bazlı attr satırları (legacy) */
.prod-attr-row { display: flex; flex-direction: column; gap: 2px; }
.prod-attr-row .label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lux-faint);
}
.prod-attr-row .value {
  font-size: 0.875rem;
  color: var(--lux-text);
}

.prod-info__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lux-bdr);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lux-white);
  background: var(--lux-gold);
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  transition: background var(--lux-t);
  box-sizing: border-box;
}
.btn-gold:hover { background: var(--lux-goldd); }

.prod-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lux-text);
  background: var(--lux-white);
  border: 1px solid var(--lux-bdr);
  padding: 13px 16px;
  text-decoration: none;
  transition: border-color var(--lux-t), color var(--lux-t);
  text-align: center;
}
.btn-outline:hover { border-color: var(--lux-gold); color: var(--lux-gold); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #25d366;
  background: var(--lux-white);
  border: 1px solid #25d366;
  padding: 13px 16px;
  text-decoration: none;
  transition: background var(--lux-t), color var(--lux-t);
}
.btn-whatsapp:hover { background: #25d366; color: var(--lux-white); }

.prod-info__note {
  font-size: 0.8125rem;
  color: var(--lux-faint);
  line-height: 1.6;
  margin: 0 0 24px;
}

/* ── Product Description Block ─────────────────────────────── */
.prod-desc-wrap {
  margin-top: 72px;
  padding: 72px 0 80px;
  background: var(--lux-bg);
  border-top: 1px solid var(--lux-bdr);
  border-bottom: 1px solid var(--lux-bdr);
}

/* İlk <p>: lead / giriş */
.prod-desc > p:first-child {
  font-size: 1rem;
  color: var(--lux-text);
  line-height: 1.82;
  margin: 0 0 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--lux-bdr);
  max-width: 680px;
}

/* h3 başlıklar — mobil */
.prod-desc > h3 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin: 32px 0 8px;
}

/* Gövde paragraflar — mobil */
.prod-desc > p:not(:first-child),
.prod-desc > ul,
.prod-desc > ol {
  font-size: 0.9375rem;
  color: var(--lux-muted);
  line-height: 1.78;
  margin: 0;
}

/* ── Desktop: 2-kolon editorial grid ───────────────────────── */
@media (min-width: 1024px) {
  .prod-desc {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 64px;
    max-width: 900px;
  }

  /* Giriş paragrafı tam genişlik */
  .prod-desc > p:first-child {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  /* h3: sol etiket sütunu */
  .prod-desc > h3 {
    grid-column: 1;
    margin: 0;
    padding: 28px 0 28px;
    border-top: 1px solid var(--lux-bdr);
    text-align: right;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    color: var(--lux-gold);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 30px;
  }

  /* İçerik paragrafı: sağ sütun, aynı satır */
  .prod-desc > p:not(:first-child),
  .prod-desc > ul,
  .prod-desc > ol {
    grid-column: 2;
    padding: 28px 0;
    border-top: 1px solid var(--lux-bdr);
    font-size: 0.9375rem;
  }
}

.prod-faq {
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--lux-bdr);
}
.prod-faq > .container {
  max-width: 900px;
}
.prod-faq__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin: 0 0 32px;
}
.faq-item { border-bottom: 1px solid var(--lux-bdr2); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lux-text);
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--lux-faint);
  flex-shrink: 0;
  transition: transform var(--lux-t);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--lux-gold); }
.faq-a {
  display: none;
  padding: 0 0 14px;
  font-size: 0.875rem;
  color: var(--lux-muted);
  line-height: 1.72;
}
.faq-item.open .faq-a { display: block; }

.prod-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--lux-bdr);
}
.prod-related h2 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--lux-text);
  margin: 0 0 24px;
}
.shop-grid--related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--lux-bdr);
}

/* -- BRAND PAGE ------------------------------------------- */
.lux-brand-hero {
  background: var(--lux-white);
  border-bottom: 1px solid var(--lux-bdr);
}
.lux-brand-hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}
.lux-brand-hero__eyebrow {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lux-gold);
  border: 1px solid var(--lux-gold);
  padding: 3px 8px;
  margin-bottom: 18px;
}
.lux-brand-hero__name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.03em;
  color: var(--lux-text);
  margin: 0 0 14px;
  line-height: 1.05;
}
.lux-brand-hero__sub {
  font-size: 0.9375rem;
  color: var(--lux-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 28px;
}
.lux-brand-hero__count {
  font-size: 0.75rem;
  color: var(--lux-faint);
  margin: 0 0 24px;
  display: block;
  letter-spacing: 0.06em;
}
.lux-brand-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lux-brand-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  text-decoration: none;
  transition: background var(--lux-t), color var(--lux-t), border-color var(--lux-t);
}
.lux-brand-hero__cta--primary {
  background: var(--lux-gold);
  color: var(--lux-white);
  border: 1px solid var(--lux-gold);
}
.lux-brand-hero__cta--primary:hover { background: var(--lux-goldd); border-color: var(--lux-goldd); }
.lux-brand-hero__cta--wa {
  background: transparent;
  color: #25d366;
  border: 1px solid #25d366;
}
.lux-brand-hero__cta--wa:hover { background: #25d366; color: var(--lux-white); }

.lux-brand-hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lux-bdr);
  background: var(--lux-bg);
  padding: 48px;
}
.lux-brand-hero__logo-wrap img {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Brand category slider */
.lux-brand-cats {
  border-bottom: 1px solid var(--lux-bdr);
  background: var(--lux-bg);
  padding: 20px 0;
  overflow: hidden;
}
.lux-brand-cats__track {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 40px;
}
.lux-brand-cats__track::-webkit-scrollbar { display: none; }
.lux-brand-cat {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--lux-white);
  border: 1px solid var(--lux-bdr);
  padding: 14px 20px;
  text-decoration: none;
  min-width: 130px;
  transition: border-color var(--lux-t);
}
.lux-brand-cat:hover { border-color: var(--lux-gold); }
.lux-brand-cat img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter var(--lux-t);
}
.lux-brand-cat:hover img { filter: grayscale(0%); }
.lux-brand-cat__parent {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lux-faint);
}
.lux-brand-cat__name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--lux-text);
  text-align: center;
  line-height: 1.3;
}
.lux-brand-cat__count {
  font-size: 0.625rem;
  color: var(--lux-faint);
}

/* Brand product section */
.lux-brand-products {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.lux-brand-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--lux-bdr);
  margin-bottom: 3px;
}
.lux-brand-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--lux-muted);
}
.lux-brand-breadcrumb a { color: var(--lux-muted); text-decoration: none; }
.lux-brand-breadcrumb a:hover { color: var(--lux-gold); }

.lux-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--lux-bdr);
}

/* Brand desc */
.lux-brand-desc {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 40px 60px;
  font-size: 0.9375rem;
  color: var(--lux-muted);
  line-height: 1.75;
}

/* -- RESPONSIVE ------------------------------------------- */
@media (max-width: 1100px) {
  .lux-hero               { grid-template-columns: 1fr; min-height: auto; }
  .lux-hero__media        { height: 48vw; }
  .lux-hero__content      { padding: 56px 40px; max-width: 100%; }
  .lux-cats               { padding: 40px 24px 36px; }
  .lux-chapters           { padding: 0 24px 64px; }
  .lux-specialist         { padding: 56px 24px; }
  .lux-filter__inner      { padding: 0 24px; }
  .lux-filter-view        { padding: 32px 24px 64px; }
  .prod-wrap.container    { grid-template-columns: 1fr 360px; gap: 48px; padding: 40px 24px 80px; }
  .lux-brand-hero__inner  { padding: 48px 24px; }
  .lux-brand-products     { padding: 0 24px 64px; }
  .lux-brand-grid         { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .lux-cats__grid           { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .lux-cat--hero            { grid-row: span 1; }
  .lux-chapter__grid        { grid-template-columns: 1fr 1fr; }
  .lux-chapter__grid .shop-card-wrap:first-child .lux-card__img { min-height: auto; }
  .lux-results-grid         { grid-template-columns: repeat(2, 1fr); }
  .lux-specialist__inner    { flex-direction: column; align-items: flex-start; }
  .prod-wrap.container      { grid-template-columns: 1fr; gap: 32px; padding: 32px 20px 64px; }
  .prod-gallery             { position: static; }
  .shop-grid--related       { grid-template-columns: repeat(2, 1fr); }
  .lux-brand-hero__inner    { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .lux-brand-hero__logo-wrap{ display: none; }
  .lux-brand-cats__track    { padding: 0 20px; }
  .lux-brand-grid           { grid-template-columns: repeat(2, 1fr); }
  .lux-brand-products       { padding: 0 20px 48px; }
}

@media (max-width: 640px) {
  .lux-hero__content      { padding: 40px 20px; }
  .lux-hero__h1           { font-size: 2.25rem; }
  .lux-hero__stats        { gap: 24px; }
  .lux-hero--compact      { min-height: 36vh; }
  .lux-cats               { padding: 28px 16px; }
  .lux-cats__grid         { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .lux-chapters           { padding: 0 16px 40px; }
  .lux-chapter__grid      { grid-template-columns: 1fr 1fr; }
  .lux-results-grid       { grid-template-columns: 1fr 1fr; }
  .lux-specialist         { padding: 40px 16px; }
  .lux-specialist__actions{ flex-direction: column; align-items: flex-start; }
  .lux-filter-view        { padding: 24px 16px 48px; }
  .lux-filter__inner      { padding: 0 16px; }
  .prod-attrs__body       { grid-template-columns: 1fr; }
  .prod-cta-row           { grid-template-columns: 1fr; }
}
