/* ══════════ ROOT ══════════ */
:root {
  --topbar-bg: #0f0f0f;
  --topbar-txt: #b8b8b8;
  --topbar-acc: #b70616;
  --white: #ffffff;
  --off: #f8f5f0;
  --dark: #111010;
  --mid: #1e1d1c;
  --muted: #888580;
  --gold: #b70616;
  --accent: #e84c3d;
  --hdr-bg: #fff;
  --hdr-border: #ececec;
  --nav-bg: #1a1a1a;
  --nav-border: #b70616;
  --txt: #1a1a1a;
  --txt-mid: #666;
  --acc: #b70616;
  --acc-dark: #b70616;
  --acc-light: #fdf6e3;
  --dd-bg: #fff;
  --dd-shadow: 0 16px 48px rgba(0, 0, 0, .14);
  --badge-sale: #e63946;
  --badge-new: #2a9d8f;
  --fn-display: 'Playfair Display', serif;
  --fn-body: 'Plus Jakarta Sans', sans-serif;
  --r: 8px;
  --tr: .22s ease;
  --bg: #eef0f4;
  --surface: #ffffff;
  --ink: #18181b;
  --muted: #71717a;
  --border: #e4e4e7;
  --accent-lt: #eff6ff;
  --red: #dc2626;
  --green: #16a34a;
  --amber: #d97706;
  --row-alt: #fafaf9;
  --radius: 10px;
  --shadow: 0 1px 10px rgba(0, 0, 0, .07);

}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--fn-body);
  background: #f5f5f3;
}

a {
  text-decoration: none;
}

/* ══════════ TOP BAR ══════════ */
.top-bar {
  background: var(--topbar-bg);
  color: var(--topbar-txt);
  font-size: .72rem;
  letter-spacing: .04em;
  padding: 7px 0;
  border-bottom: 1px solid #222;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.marquee-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.marquee-track span i {
  color: var(--topbar-acc);
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.tb-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.tb-links a {
  color: var(--topbar-txt);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
  font-size: .72rem;
}

.tb-links a:hover {
  color: var(--topbar-acc);
}

.tb-div {
  width: 1px;
  height: 12px;
  background: #333;
}

.lang-sel {
  background: transparent;
  border: none;
  color: var(--topbar-txt);
  font-family: var(--fn-body);
  font-size: .72rem;
  cursor: pointer;
  outline: none;
}

.lang-sel option {
  background: #1a1a1a;
}

/* ══════════ HEADER ══════════ */
.site-header {
  background: var(--hdr-bg);
  border-bottom: 1px solid var(--hdr-border);
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  height: 68px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-word {
  font-family: var(--fn-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -.02em;
}

.logo-word span {
  color: var(--acc);
}

.logo-tag {
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--txt-mid);
  margin-top: 2px;
}

.hdr-search {
  flex: 1;
  max-width: 440px;
  position: relative;
}

.hdr-search input {
  width: 100%;
  height: 40px;
  border: 1.5px solid #ddd;
  border-radius: var(--r);
  padding: 0 46px 0 14px;
  font-family: var(--fn-body);
  font-size: .84rem;
  color: var(--txt);
  background: #fafafa;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.hdr-search input::placeholder {
  color: #aaa;
}

.hdr-search input:focus {
  border-color: var(--acc);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}

.hdr-search .s-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 44px;
  background: var(--acc);
  border: none;
  border-radius: 0 var(--r) var(--r) 0;
  color: #fff;
  cursor: pointer;
  font-size: .85rem;
  transition: background .2s;
}

.hdr-search .s-btn:hover {
  background: var(--acc-dark);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.ha-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: var(--r);
  color: var(--txt);
  text-decoration: none;
  position: relative;
  transition: background .18s, color .18s;
  font-family: var(--fn-body);
}

.ha-btn:hover {
  background: var(--acc-light);
  color: var(--acc);
}

.ha-btn i {
  font-size: 1.05rem;
}

.ha-label {
  font-size: .6rem;
  letter-spacing: .04em;
  font-weight: 500;
  text-transform: uppercase;
}

.ha-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--badge-sale);
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: .55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.ha-div {
  width: 1px;
  height: 26px;
  background: #e8e8e8;
  margin: 0 4px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--txt);
  font-size: 1.25rem;
  margin-left: 8px;
}

/* ══════════ DESKTOP NAV BAR ══════════ */
.nav-bar {
  background: var(--nav-bg);
  border-top: 3px solid var(--nav-border);
  position: relative;
  z-index: 1050;
}

.nav-wrap {
  padding: 0 20px;
}

.main-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

/* Mega items use nav-bar as positioning context */
.nav-item.has-mega {
  position: static;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 15px;
  height: 46px;
  color: #e0e0e0;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fn-body);
  text-decoration: none;
  transition: background .18s, color .18s;
}

.nav-link:hover {
  color: var(--acc);
}

.nav-link .caret {
  font-size: .58rem;
  opacity: .6;
  transition: transform .22s;
  margin-left: 2px;
}

.nav-item.open>.nav-link {
  background: rgba(201, 168, 76, .12);
  color: var(--acc);
}

.nav-item.open>.nav-link .caret {
  transform: rotate(180deg);
}

.nav-badge {
  font-size: .5rem;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-badge.sale {
  background: var(--badge-sale);
  color: #fff;
}

.nav-badge.new {
  background: var(--badge-new);
  color: #fff;
}

/* ══════════ DROPDOWN BASE ══════════ */
.dd-menu,
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dd-bg);
  border-top: 3px solid var(--acc);
  box-shadow: var(--dd-shadow);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
  z-index: 2000;
  pointer-events: none;
}

.nav-item.open>.dd-menu,
.nav-item.open>.mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ══════════ SIMPLE DROPDOWN (L2) ══════════ */
.dd-menu {
  min-width: 230px;
  list-style: none;
  padding: 8px 0;
}

.dd-menu>li {
  position: relative;
}

.dd-menu a,
.dd-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  width: 100%;
  color: var(--txt);
  font-size: .83rem;
  font-weight: 400;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--fn-body);
  cursor: pointer;
  transition: background .15s, color .15s, padding-left .15s;
}

.dd-menu a i,
.dd-menu button>i:first-child {
  color: var(--acc);
  width: 16px;
  flex-shrink: 0;
}

.dd-menu a:hover,
.dd-menu button:hover {
  background: var(--acc-light);
  color: var(--acc);
  padding-left: 24px;
}

.dd-caret {
  margin-left: auto;
  font-size: .6rem;
  opacity: .5;
  flex-shrink: 0;
}

.dd-menu hr {
  margin: 5px 18px;
  border-color: #f0f0f0;
}

/* ══════════ SUB-DROPDOWN (L3) ══════════ */
.sub-dd {
  position: absolute;
  top: -3px;
  left: 100%;
  min-width: 210px;
  list-style: none;
  padding: 8px 0;
  background: var(--dd-bg);
  border-top: 3px solid var(--acc);
  border-radius: 0 10px 10px 10px;
  box-shadow: var(--dd-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
  z-index: 2100;
  pointer-events: none;
}

.dd-menu>li.sub-open>.sub-dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.sub-dd a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  color: var(--txt);
  font-size: .81rem;
  background: none;
  transition: background .15s, color .15s, padding-left .15s;
}

.sub-dd a i {
  color: var(--acc);
  width: 14px;
  flex-shrink: 0;
  font-size: .8rem;
}

.sub-dd a:hover {
  background: var(--acc-light);
  color: var(--acc);
  padding-left: 22px;
}

/* ══════════ MEGA MENU ══════════ */
.mega-panel {
  /* anchored to .nav-bar because .has-mega is position:static */
  left: 0;
  right: 0;
  padding: 28px 32px;
}

.mega-col-title {
  font-family: var(--fn-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--acc-dark);
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #f0e8d0;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-links li {
  margin-bottom: 1px;
}

.mega-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--txt-mid);
  padding: 4px 0;
  transition: color .15s, gap .15s;
}

.mega-links a i {
  color: var(--acc);
  width: 13px;
  font-size: .72rem;
}

.mega-links a:hover {
  color: var(--acc);
  gap: 12px;
}

.mega-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.mega-tags a {
  font-size: .7rem;
  background: #f4f4f4;
  color: var(--txt-mid);
  padding: 4px 10px;
  border-radius: 20px;
  transition: background .15s, color .15s;
}

.mega-tags a:hover {
  background: var(--acc-light);
  color: var(--acc);
}

.mega-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2005 100%);
  border-radius: 10px;
  padding: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.mega-banner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .18);
}

.mb-tag {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--acc);
  font-weight: 600;
}

.mb-title {
  font-family: var(--fn-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.mb-sub {
  font-size: .76rem;
  color: #aaa;
  line-height: 1.45;
}

.mb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--acc);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--fn-body);
  width: fit-content;
  margin-top: 4px;
  transition: background .2s;
}

.mb-btn:hover {
  background: var(--acc-dark);
  color: #fff;
}

/* ══════════ MOBILE OVERLAY + DRAWER ══════════ */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1199;
  opacity: 0;
  transition: opacity .3s;
}

.mob-overlay.active {
  opacity: 1;
}

.mob-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  bottom: 0;
  width: 300px;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: left .3s ease;
  overflow-y: auto;
}

.mob-drawer.open {
  left: 0;
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  background: var(--nav-bg);
  border-bottom: 3px solid var(--nav-border);
  flex-shrink: 0;
}

.mob-logo {
  font-family: var(--fn-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.mob-logo span {
  color: var(--acc);
}

.mob-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 5px;
  transition: background .2s;
}

.mob-close-btn:hover {
  background: rgba(255, 255, 255, .1);
}

.mob-search-box {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background: #fafafa;
  flex-shrink: 0;
}

.mob-s-inner {
  position: relative;
}

.mob-s-inner input {
  width: 100%;
  height: 38px;
  border: 1.5px solid #ddd;
  border-radius: var(--r);
  padding: 0 40px 0 12px;
  font-family: var(--fn-body);
  font-size: .83rem;
  outline: none;
  transition: border-color .2s;
}

.mob-s-inner input:focus {
  border-color: var(--acc);
}

.mob-s-inner button {
  position: absolute;
  right: 0;
  top: 0;
  height: 38px;
  width: 40px;
  background: var(--acc);
  border: none;
  border-radius: 0 var(--r) var(--r) 0;
  color: #fff;
  cursor: pointer;
}

.mob-menu-list {
  list-style: none;
  padding: 6px 0;
  flex: 1;
}

.mob-menu-list>li {
  border-bottom: 1px solid #f2f2f2;
}

.mob-menu-list>li:last-child {
  border-bottom: none;
}

/* all clickable rows */
.mob-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--txt);
  font-size: .88rem;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--fn-body);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.mob-row:hover {
  background: var(--acc-light);
  color: var(--acc);
}

.mob-row.is-open {
  color: var(--acc);
  background: var(--acc-light);
}

.mob-row .ri {
  color: var(--acc);
  width: 18px;
  font-size: .9rem;
  flex-shrink: 0;
}

.mob-row .mc {
  margin-left: auto;
  font-size: .65rem;
  color: #aaa;
  transition: transform .22s;
  flex-shrink: 0;
}

.mob-row.is-open .mc {
  transform: rotate(90deg);
}

.mob-badge2 {
  font-size: .5rem;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: 700;
}

.mob-badge2.sale {
  background: var(--badge-sale);
  color: #fff;
}

.mob-badge2.new {
  background: var(--badge-new);
  color: #fff;
}

/* accordion panels */
.mob-acc {
  list-style: none;
  padding: 0;
  background: #fafafa;
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.mob-acc.open {
  max-height: 1400px;
}

.mob-acc>li {
  border-top: 1px solid #efefef;
}

.mob-acc .mob-row {
  padding: 10px 18px 10px 34px;
  font-size: .83rem;
  font-weight: 400;
  color: var(--txt-mid);
}

.mob-acc3 {
  list-style: none;
  padding: 0;
  background: #f1f1ef;
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.mob-acc3.open {
  max-height: 600px;
}

.mob-acc3>li {
  border-top: 1px solid #e8e8e8;
}

.mob-acc3 .mob-row {
  padding: 9px 18px 9px 50px;
  font-size: .78rem;
  color: #777;
}

/* bottom actions */
.mob-bottom {
  display: flex;
  justify-content: space-around;
  padding: 14px 10px;
  border-top: 1px solid #eee;
  background: #fff;
  flex-shrink: 0;
}

.mob-act {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--txt);
  font-family: var(--fn-body);
  font-size: .58rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  position: relative;
}

.mob-act i {
  font-size: 1.1rem;
}

.mob-act:hover {
  background: var(--acc-light);
  color: var(--acc);
}

.mob-act .ba {
  position: absolute;
  top: 2px;
  right: 6px;
  background: var(--badge-sale);
  color: #fff;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: .52rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* ══════════ RESPONSIVE ══════════ */
@media(max-width:991px) {
  .hdr-search {
    max-width: 260px;
  }

  .ha-label {
    display: none;
  }
}

@media(max-width:767px) {
  .tb-links {
    display: none;
  }

  .hdr-search {
    display: none;
  }

  .nav-bar {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* ─── HERO WRAPPER ───────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--dark);
}

/* ─── LEFT — IMAGE HALF ──────────────────────── */
.hero-img-half {
  position: relative;
  overflow: hidden;
}

.hero-img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.88) contrast(1.05);
  transition: transform 8s ease;
  animation: slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

/* Dark gradient overlay on image */
.hero-img-half::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, var(--dark) 100%),
    linear-gradient(to bottom, rgba(17, 16, 16, .35) 0%, transparent 30%, transparent 70%, rgba(17, 16, 16, .6) 100%);
}

/* Gold tag on image */
.img-tag {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 10;
  background: var(--gold);
  color: var(--dark);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  padding-right: 1.4rem;
}

/* Floating review pill */
.review-pill {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  z-index: 10;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 60px;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  animation: floatUp 3s ease-in-out infinite alternate;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.review-avatars {
  display: flex;
}

.review-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .3);
  margin-left: -8px;
  animation: none !important;
}

.review-avatars img:first-child {
  margin-left: 0;
}

.review-text {
  line-height: 1.3;
}

.review-text strong {
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.review-stars {
  font-size: .6rem;
  color: var(--gold);
  letter-spacing: .05em;
}

/* ─── RIGHT — CONTENT HALF ───────────────────── */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 4rem 4rem 3.5rem;
  position: relative;
}

/* Subtle noise texture background */
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201, 169, 110, .07) 0%, transparent 60%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeSlideUp .6s .2s forwards;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeSlideUp .7s .35s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-title .outline-text {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .4);
  color: transparent;
}

.hero-desc {
  font-size: .88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  max-width: 340px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeSlideUp .7s .5s forwards;
}

/* CTA Buttons */
.cta-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeSlideUp .7s .65s forwards;
  flex-wrap: wrap;
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border: 2px solid var(--white);
  transition: background .25s, color .25s, border-color .25s;
  border-radius: 0;
}

.btn-shop:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.btn-shop .icon-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--white);
  transition: background .25s;
  flex-shrink: 0;
}

.btn-shop:hover .icon-circle {
  background: var(--white);
  color: var(--dark);
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .65);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: color .2s, border-color .2s;
}

.btn-explore:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── PRODUCT CARDS ROW ──────────────────────── */
.products-row {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeSlideUp .7s .8s forwards;
}

.product-card {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .3s;
  display: block;
}

.product-card:hover {
  border-color: rgba(201, 169, 110, .45);
  transform: translateY(-4px);
  color: inherit;
}

.product-thumb {
  height: 130px;
  overflow: hidden;
  position: relative;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease;
  filter: brightness(.85);
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.product-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 16, 16, .7) 0%, transparent 60%);
}

.product-info {
  padding: .8rem .85rem;
}

.product-name {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: .25rem;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
}


/* ─── MARQUEE ────────────────────────────────── */
.marquee-bar {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: .6rem 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acc-light);
  padding: 0 2.5rem;
}

.marquee-track span i {
  margin-right: .5rem;
  font-size: 14px;
  opacity: 1.6;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-img-half {
    height: 55vh;
  }

  .hero-img-half::after {
    background: linear-gradient(to bottom, transparent 50%, var(--dark) 100%);
  }

  .hero-content {
    padding: 2.5rem 1.75rem 5rem;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-center {
    display: none;
  }

  .bottom-bar {
    padding: .8rem 1.5rem;
    flex-wrap: wrap;
    gap: .75rem;
  }

  .bar-divider {
    display: none;
  }

  .products-row {
    gap: .6rem;
  }

  .product-thumb {
    height: 100px;
  }
}

/* about-section  */

.about-section {
  padding: 60px 0;
  text-align: center;
}

.about-content span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
  background: var(--acc);
  padding: 5px 10px;
  border-radius: 50px;
  display: inline-table;
}

.about-content h1 {
  color: var(--acc);
  padding: 15px 0;
  font-weight: 900;
  margin: 0;
}

.about-content h1 em {
  font-weight: 900;
  color: var(--acc-dark);
}

/* product-section  */
/* ===== SECTION HEADER ===== */

.prod-head-wrap {
  max-width: 650px;
  margin: 0 auto 50px;
}

.prod-head-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 10px;
  background: var(--acc);
  padding: 5px 10px;
  border-radius: 50px;
  display: inline-table;
}

.prod-head-title {
  font-size: 30px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.prod-head-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.6;
}

.prod-head-line {
  width: 60px;
  height: 2px;
  background: #111;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* ===== PRODUCT SECTION ===== */

.prod-sec {
  padding: 60px 0;
  background: #f8f9fa;
}

/* Card */
.prod-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.prod-card .prod-name {
  color: var(--acc);
}

.prod-card .prod-name:hover {
  color: var(--acc);
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image */
.prod-card-img {
  position: relative;
}

.prod-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Badge */
.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Content */
.prod-card-body {
  padding: 15px;
}

/* Category */
.prod-cat {
  font-size: 13px;
  color: #777;
  margin-bottom: 5px;
}

/* Title */
.prod-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  margin-bottom: 10px;
}

.prod-name:hover {
  color: #0d6efd;
}

/* Price */
.prod-price {
  margin-bottom: 10px;
}

.prod-bulk {
  font-weight: 600;
  color: #000;
  margin-right: 10px;
}

.prod-sample {
  color: #888;
  font-size: 14px;
}

/* Colors */
.prod-colors span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-right: 6px;
  border: 1px solid #ddd;
}



/* ── PAGE WRAPPER ── */
.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 10px 70px;
}

/* Cart page uses a narrower max-width and less bottom padding */
.page.cart-page {
  max-width: 1140px;
  padding: 20px 10px 10px;
}

/* =====================================================
   SHARED — TABLE (used on both pages)
   ===================================================== */
table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: #1e40af;
}

thead th {
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 10px;
  text-align: center;
  letter-spacing: .4px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  white-space: nowrap;
}

thead th:first-child {
  text-align: left;
  padding-left: 16px;
  width: 160px;
}

thead th:last-child {
  border-right: none;
  width: 65px;
}

.size-th {
  width: 82px;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:nth-child(even) {
  background: var(--row-alt);
}

tbody tr:hover {
  background: #f0f9ff;
}

td {
  padding: 5px 4px;
  text-align: center;
  border-right: 1px solid var(--border);
  vertical-align: middle;
}

td:last-child {
  border-right: none;
}

/* Color cell */
.color-cell {
  text-align: left;
  padding-left: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .12);
  flex-shrink: 0;
}

.color-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

/* Quantity input */
.qty {
  width: 100%;
  border: none;
  border-radius: 6px;
  text-align: center;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  padding: 5px 0;
  background: transparent;
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  -moz-appearance: textfield;
}

.qty::-webkit-inner-spin-button,
.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.qty:focus {
  border-color: var(--accent);
  background: var(--accent-lt);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

/* N/A cell */
.na-cell {
  background: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(220, 38, 38, .15) 5px, rgba(220, 38, 38, .15) 7px);
  cursor: not-allowed;
}

/* Totals row */
.totals-row td {
  background: #f1f5f9;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--accent);
  padding: 6px 8px;
  border-top: 2px solid #dbeafe;
}

.totals-row .color-cell {
  color: var(--muted);
  font-weight: 600;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.row-total {
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
}

.grand-total-cell {
  font-weight: 900;
  font-size: 14px;
  color: var(--ink);
}

/* ── SHARED — COLOR SWATCHES ── */
.d-black {
  background: #1a1a1a;
}

.d-white {
  background: #f5f5f5;
  border-color: #ccc !important;
}

.d-lavender {
  background: #b57bee;
}

.d-beige {
  background: #d4b896;
}

.d-red {
  background: #dc2626;
}

.d-sage {
  background: #7d9f7b;
}

.d-brown {
  background: #7c5335;
}

.d-offwhite {
  background: #ede8df;
  border-color: #ccc !important;
}

.d-orange {
  background: #ea580c;
}

.d-navy {
  background: #1e3a5f;
}

/* Cart-page-only swatches */
.d-grey {
  background: #9ca3af;
}

.d-mint {
  background: #6ee7b7;
}

.d-mustard {
  background: #ca8a04;
}

.d-pink {
  background: #f472b6;
}

.d-charcoal {
  background: #374151;
}

.d-teal {
  background: #0d9488;
}

/* ── SHARED — PRODUCT STRIPE ── */
.prod-stripe {
  background: #fef9c3;
  border-bottom: 1px solid #fde047;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #713f12;
}

/* ── SHARED — HEADER BUTTONS ── */
.btn-hdr {
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .07);
  color: #ccc;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all .15s;
}

.btn-hdr:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.btn-hdr.blue {
  border-color: rgba(96, 165, 250, .4);
  color: #93c5fd;
  background: rgba(37, 99, 235, .15);
}

.btn-hdr.blue:hover {
  background: rgba(37, 99, 235, .3);
}

.btn-hdr.red {
  border-color: rgba(220, 38, 38, .4);
  color: #f87171;
}

.btn-hdr.red:hover {
  background: rgba(220, 38, 38, .15);
}

/* =====================================================
   PRODUCT PAGE — Section 1: Breadcrumb
   ===================================================== */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 9px 0px;
  display: block;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  margin: 10px 0;
}

.breadcrumb-bar a {
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}

.breadcrumb-bar a:hover {
  color: var(--accent);
}

.breadcrumb-bar .sep {
  font-size: 9px;
  color: #d4d4d8;
  padding: 0 5px;
}

.breadcrumb-bar .current {
  color: var(--ink);
  font-weight: 600;
}

/* =====================================================
   PRODUCT PAGE — Section 1: Hero / Gallery
   ===================================================== */
.product-hero {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img#main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.gallery-main img#main-img.fading {
  opacity: 0;
}

.img-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #d4d4d8;
  position: absolute;
  inset: 0;
  justify-content: center;
  background: var(--surface);
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gbadge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .3px;
}

.gbadge.new {
  background: #18181b;
  color: #fff;
}

.gbadge.bestseller {
  background: #2563eb;
  color: #fff;
}

.gbadge.moq {
  background: #fef9c3;
  color: #713f12;
  border: 1px solid #fde047;
}

.gallery-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gaction {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: all .15s;
  backdrop-filter: blur(4px);
}

.gaction:hover {
  background: #fff;
  color: var(--accent);
}

.gallery-color-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
  transition: opacity .2s;
  letter-spacing: .3px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
}

.thumb {
  flex: 1;
  aspect-ratio: 1/1;
  border-radius: 8px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, transform .12s;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.thumb.active {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .2);
}

.thumb:hover {
  border-color: var(--accent);
  transform: scale(1.04);
}

.thumb-swatch {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-c1 .thumb-swatch {
  background: linear-gradient(135deg, #1a1a1a 50%, #333 50%);
}

.thumb-c2 .thumb-swatch {
  background: linear-gradient(135deg, #f5f5f5 50%, #e0e0e0 50%);
}

.thumb-c3 .thumb-swatch {
  background: linear-gradient(135deg, #b57bee 50%, #9b59d4 50%);
}

.thumb-c4 .thumb-swatch {
  background: linear-gradient(135deg, #d4b896 50%, #c9a87c 50%);
}

.thumb-c5 .thumb-swatch {
  background: linear-gradient(135deg, #dc2626 50%, #b91c1c 50%);
}

/* =====================================================
   PRODUCT PAGE — Section 1: Info Panel
   ===================================================== */
.info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.sku-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 9px;
  border-radius: 5px;
  letter-spacing: .3px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--muted);
}

.stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 11px;
}

.product-name-block {
  margin-bottom: 10px;
}

.prod-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
}

.prod-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

.price-block {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.price-from {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 3px;
}

.price-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.price-range {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2px;
}

.price-note {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 2px 8px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.spec-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 10px 8px;
  text-align: center;
}

.spec-box .s-icon {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 4px;
}

.spec-box .s-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.spec-box .s-lbl {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.short-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.short-desc .highlight {
  color: var(--ink);
  font-weight: 600;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.fpill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 5px;
}

.fpill i {
  color: var(--accent);
  font-size: 10px;
}

.info-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.info-box .ib-icon {
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.info-box .ib-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
}

.info-box .ib-sub {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
  line-height: 1.4;
}

/* =====================================================
   PRODUCT PAGE — Section 2: Order Table Section
   ===================================================== */
.order-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.order-section-head {
  background: #18181b;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.osh-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.osh-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.osh-sub {
  font-size: 11px;
  color: #a1a1aa;
}

.osh-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 18px;
  background: #f8fafc;
  border-top: 1px dashed var(--border);
}

.of-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.of-item {
  font-size: 12px;
  color: var(--muted);
}

.of-item strong {
  color: var(--ink);
  font-weight: 700;
  margin-left: 3px;
}

.of-total {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}

.btn-add-cart {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, transform .1s;
  letter-spacing: .2px;
}

.btn-add-cart:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-wishlist,
.btn-sample {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .15s;
}

.btn-wishlist:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-sample:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* =====================================================
   PRODUCT PAGE — Section 3: Tabs
   ===================================================== */
.tabs-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.tab-bar {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}

.tab-btn {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: #fff;
}

.tab-btn:hover:not(.active) {
  color: var(--ink);
}

.tab-panel {
  display: none;
  padding: 22px 24px;
}

.tab-panel.active {
  display: block;
}

.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.desc-text {
  font-size: 12.5px;
  color: #52525b;
  line-height: 1.8;
}

.desc-text p {
  margin-bottom: 12px;
}

.desc-text p:last-child {
  margin-bottom: 0;
}

.desc-text .bold {
  font-weight: 700;
  color: var(--ink);
}

.dh-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dh-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dh-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: #52525b;
}

.dh-item i {
  color: var(--accent);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ig-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
}

.ig-title i {
  color: var(--accent);
}

.ig-table {
  width: 100%;
  border-collapse: collapse;
}

.ig-table tr {
  border-bottom: 1px solid #f4f4f5;
}

.ig-table tr:last-child {
  border-bottom: none;
}

.ig-table td {
  padding: 7px 4px;
  font-size: 12px;
  vertical-align: top;
}

.ig-table td:first-child {
  color: var(--muted);
  font-weight: 500;
  width: 45%;
  padding-right: 10px;
}

.ig-table td:last-child {
  font-weight: 600;
  color: var(--ink);
}

.care-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.care-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  width: 56px;
}

.care-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}

.size-guide-table th {
  background: #1e40af;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  text-align: center;
  letter-spacing: .3px;
}

.size-guide-table td {
  border: 1px solid var(--border);
  font-size: 11.5px;
  padding: 6px 10px;
  text-align: center;
  color: var(--ink);
}

.size-guide-table tr:nth-child(even) td {
  background: var(--row-alt);
}

.size-guide-table .size-name {
  font-weight: 700;
  color: var(--accent);
}

/* Reviews */
.reviews-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.rating-big {
  text-align: center;
  padding: 16px;
}

.rating-big .score {
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.rating-big .stars-big {
  font-size: 18px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin: 4px 0;
}

.rating-big .total {
  font-size: 11px;
  color: var(--muted);
}

.rbar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.rbar-label {
  font-size: 11.5px;
  color: var(--muted);
  width: 35px;
  text-align: right;
  flex-shrink: 0;
}

.rbar-track {
  flex: 1;
  height: 7px;
  background: #e4e4e7;
  border-radius: 4px;
  overflow: hidden;
}

.rbar-fill {
  height: 100%;
  border-radius: 4px;
  background: #f59e0b;
}

.rbar-count {
  font-size: 11px;
  color: var(--muted);
  width: 20px;
  flex-shrink: 0;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.av-blue {
  background: #2563eb;
}

.av-green {
  background: #16a34a;
}

.av-amber {
  background: #d97706;
}

.reviewer-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.reviewer-meta {
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 1px;
}

.review-stars {
  color: #f59e0b;
  font-size: 11px;
}

.review-text {
  font-size: 12.5px;
  color: #52525b;
  line-height: 1.7;
}

.review-tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.rtag {
  font-size: 10.5px;
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.verified-badge {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
}

/* =====================================================
   PRODUCT PAGE — Section 4: Related Products
   ===================================================== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-label {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label i {
  color: var(--accent);
}

.view-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s;
}

.view-all:hover {
  gap: 7px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .15s, transform .15s;
}

.rel-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  transform: translateY(-2px);
}

.rel-img {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #d4d4d8;
}

.rel-img.ri-1 {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.rel-img.ri-2 {
  background: linear-gradient(135deg, #ede8df, #d4b896);
}

.rel-img.ri-3 {
  background: linear-gradient(135deg, #1a1a1a, #333);
}

.rel-img.ri-4 {
  background: linear-gradient(135deg, #1e3a5f, #2d5a8f);
}

.rel-body {
  padding: 12px;
}

.rel-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.3;
}

.rel-sku {
  font-size: 10.5px;
  color: var(--muted);
  margin-bottom: 7px;
}

.rel-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rel-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

.rel-moq {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.rel-colors {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .1);
}

/* =====================================================
   CART PAGE — Title Row
   ===================================================== */
.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.title-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-title {
  font-size: 18px;
  font-weight: 800;
}

.badge-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
}

.badge-pill.grey {
  background: #e4e4e7;
  color: var(--muted);
}

.toolbar-btns {
  display: flex;
  gap: 7px;
}

.btn-xs {
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all .15s;
}

.btn-xs:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-xs.danger:hover {
  border-color: var(--red);
  color: var(--red);
}

/* =====================================================
   CART PAGE — Main Grid
   ===================================================== */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 18px;
  align-items: start;
}

/* ── Product Block ── */
.product-block {
  margin-bottom: 16px;
}

.product-block:last-child {
  margin-bottom: 0;
}

.prod-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #18181b;
  padding: 10px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.prod-icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: #2e2b27;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 15px;
  flex-shrink: 0;
}

.prod-meta {
  flex: 1;
  min-width: 0;
}

.prod-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-tags {
  display: flex;
  gap: 5px;
  margin-top: 3px;
  flex-wrap: wrap;
}

.prod-tag {
  font-size: 10px;
  font-weight: 500;
  color: #a1a1aa;
  background: rgba(255, 255, 255, .08);
  padding: 1px 7px;
  border-radius: 4px;
}

.prod-header-actions {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.table-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.prod-subtotal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  background: #f8fafc;
  border-top: 1px dashed var(--border);
  padding: 7px 14px;
  font-size: 12px;
}

.prod-subtotal .sub-item {
  color: var(--muted);
}

.prod-subtotal .sub-item strong {
  color: var(--ink);
  font-weight: 700;
  margin-left: 4px;
}

.prod-subtotal .sub-amt {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

/* Add product button */
.add-product-btn {
  width: 100%;
  background: transparent;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius);
  padding: 14px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color .15s, color .15s, background .15s;
}

.add-product-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-lt);
}

/* ── Summary Card (Sidebar) ── */
.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
  position: sticky;
  top: 18px;
}

.sum-head {
  background: #18181b;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sum-body {
  padding: 14px 16px;
}

.sum-prod-block {
  margin-bottom: 12px;
}

.sum-prod-block:last-of-type {
  margin-bottom: 0;
}

.sum-prod-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .4px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sum-prod-name .sku {
  font-weight: 500;
  color: var(--muted);
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0;
}

.sum-color-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid #f4f4f5;
  font-size: 11.5px;
}

.sum-color-row:last-of-type {
  border-bottom: none;
}

.sum-color-left {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}

.sum-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .1);
  flex-shrink: 0;
}

.sum-qty {
  font-weight: 700;
  color: var(--ink);
  font-size: 11.5px;
}

.sum-prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-lt);
  border-radius: 6px;
  padding: 5px 10px;
  margin-top: 7px;
  font-size: 11.5px;
}

.sum-prod-footer .spf-label {
  color: var(--accent);
  font-weight: 600;
}

.sum-prod-footer .spf-val {
  font-weight: 800;
  color: var(--accent);
}

.divider {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 12px 0;
}

.sum-line {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 0;
}

.sum-line .lbl {
  color: var(--muted);
}

.sum-line .val {
  font-weight: 600;
}

.sum-total-box {
  background: var(--accent-lt);
  border: 1.5px solid #bfdbfe;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}

.sum-total-box .t-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.sum-total-box .t-val {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.btn-order {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .15s, transform .1s;
}

.btn-order:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-back {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: border-color .15s, color .15s;
}

.btn-back:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.free-ship {
  margin-top: 10px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 11px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

/* Notes */
.notes-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 16px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06);
}

.notes-card label {
  font-size: 11px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.notes-card textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 12px;
  resize: vertical;
  min-height: 62px;
  outline: none;
  color: var(--ink);
  transition: border-color .15s;
}

.notes-card textarea:focus {
  border-color: var(--accent);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1000px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .gallery {
    min-width: 300px;
    width: 100%;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 700px) {

  .desc-grid,
  .info-grid,
  .reviews-top {
    grid-template-columns: 1fr;
  }

  .spec-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-boxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .prod-header-actions {
    display: block;
  }

  .title-row {
    display: block;
  }
}

@media (max-width: 500px) {
  .gallery-thumbs .thumb:nth-child(n+5) {
    display: none;
  }

  thead th:first-child {
    width: 100px;
  }

  .size-th {
    width: 60px;
  }

  .price-block {
    display: block;
  }

  .tab-btn {
    font-size: 9px;
    padding: 12px 10px;
    gap: 2px;
  }
}

/* SHIPPING PAGE  */
.wrap {
  width: 100%;
  max-width: 560px;
  margin:auto;
  padding: 50px 0;
}

.card {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden
}

.card-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px
}

.card-head svg {
  opacity: 0.4
}

.card-head span {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.06em;
  text-transform: uppercase
}

.section {
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08)
}

.section:last-child {
  border-bottom: none
}

.sec-label {
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.field label {
  font-size: 12px;
  color: #777
}

input.f,
select.f {
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  font-family: 'DM Mono', monospace;
  border: 0.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: #fafaf8;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.15s
}

input.f:focus,
select.f:focus {
  border-color: rgba(0, 0, 0, 0.4)
}

input.f[readonly] {
  color: #999;
  background: #f2f1ed
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.method-opt {
  position: relative
}

.method-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.method-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  background: #fafaf8
}

.method-opt label .ico {
  font-size: 20px;
  line-height: 1
}

.method-opt label .lbl {
  font-size: 12px;
  font-weight: 500;
  color: #888
}

.method-opt input:checked+label {
  border-color: #BA7517;
  background: #fff8ee
}

.method-opt input:checked+label .lbl {
  color: #BA7517
}

.sub {
  display: none;
  margin-top: 12px;
  animation: fadeIn 0.2s ease
}

.sub.active {
  display: block
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.loc-btn {
  width: 100%;
  padding: 9px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  border: 0.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: #f5f4f0;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s
}

.loc-btn:hover {
  background: #ebe9e4
}

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 8px;
  border: 0.5px solid rgba(0, 0, 0, 0.1)
}

.drop-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.drop-opt {
  position: relative
}

.drop-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.drop-opt label {
  display: block;
  padding: 10px 12px;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #777;
  transition: all 0.15s
}

.drop-opt input:checked+label {
  border-color: #BA7517;
  color: #1a1a1a
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #BA7517;
  text-decoration: none;
  padding: 9px 14px;
  border: 0.5px solid #BA7517;
  border-radius: 8px
}

.submit-btn {
  width: 100%;
  padding: 11px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: #BA7517;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s
}

.submit-btn:hover {
  background: #854F0B
}