/* === VARIABLES === */
:root {
  --orange: #cb6021;
  --orange-dark: #b05518;
  --dark: #1a1a1a;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #ffffff;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Jost', sans-serif; font-size: 15.3px; font-weight: 300; letter-spacing: .025em; color: var(--dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* === STICKY HEADER WRAPPER === */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* === TOP BAR === */
.top-bar {
  background: var(--orange);
  color: var(--white);
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .04em;
}
.top-bar__left { display: flex; align-items: center; gap: 12px; }
.top-bar__sep { opacity: .6; }
.top-bar__right { display: flex; align-items: center; gap: 16px; }
.top-bar__right a { color: var(--white); font-size: 14px; transition: opacity .2s; }
.top-bar__right a:hover { opacity: .7; }
.store-hours { cursor: pointer; }
.store-hours:hover { text-decoration: underline; }

/* === HEADER === */
.site-header {
  background: var(--white);
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.site-header__left { display: flex; align-items: center; }
.site-header__right { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.icon-btn {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 16px;
  padding: 6px;
  transition: color .2s;
  line-height: 1;
}
.icon-btn:hover { color: var(--orange); }

/* === LOGO === */
.site-header__logo { display: flex; justify-content: center; }
.site-logo-img { max-height: 70px; width: auto; display: block; }
.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.logo-main {
  font-family: 'Outfit', sans-serif;
  font-size: 27px;
  font-weight: 200;
  color: var(--dark);
  letter-spacing: .05em;
  line-height: 1.1;
  text-transform: uppercase;
}
.logo-divider {
  width: 115%;
  height: 2px;
  background: var(--orange);
  margin: 5px 0 4px;
}
.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--orange);
  letter-spacing: .2em;
  font-style: italic;
}

/* === NAVIGATION === */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Exact match from spec */
.site-header--heading-style .site-nav__link {
  font-family: Outfit, sans-serif;
  font-weight: 200;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}
.site-nav__link {
  display: block;
  padding: 16px 24px;
  font-size: 12.5px;
  color: var(--dark);
  transition: color .2s;
  position: relative;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.site-nav__link:hover { color: var(--orange); }
.site-nav__link:hover::after { transform: scaleX(1); }
.site-nav__link--active { color: var(--orange); }
.site-nav__link--active::after { transform: scaleX(1); }
.site-nav__link.ring-builder { color: var(--orange); }

/* === HERO === */
.hero { width: 100%; overflow: hidden; line-height: 0; }
.hero__image { width: 100%; height: auto; display: block; }

/* === ORANGE STRIPE === */
.stripe { height: 10px; background: var(--orange); }

/* === SHARED SECTION STYLES === */
.section { padding: 72px 0; }
.section--gray { background: var(--light-gray); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 26px;
  color: var(--dark);
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .03em;
  margin-bottom: 44px;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card { position: relative; cursor: pointer; }
.product-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-gray);
  margin-bottom: 14px;
  position: relative;
}
.product-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #fdf5e6 0%, #f0dca8 40%, #d4af60 80%, #c09840 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}
.ring-icon {
  width: 80px;
  height: 80px;
  border: 11px solid rgba(160,120,40,.45);
  border-radius: 50%;
  box-shadow: inset 0 2px 12px rgba(0,0,0,.1), 0 2px 8px rgba(160,120,40,.2);
  position: relative;
}
.ring-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 18px; height: 18px;
  background: rgba(220,195,130,.55);
  border-radius: 50%;
}
.product-card:hover .product-card__placeholder { transform: scale(1.04); }
.quick-view-btn {
  display: block;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(26,26,26,.85);
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover .quick-view-btn { opacity: 1; }
.quick-view-btn:hover { background: var(--orange); }
.product-card__name {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: .03em;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-card__price { font-size: 13px; color: var(--gray); font-weight: 300; }

/* === COLLECTION BLOCKS === */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.collection-block {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}
.collection-block__bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.collection-block:hover .collection-block__bg { transform: scale(1.05); }
.collection-block--bridal .collection-block__bg    { background: linear-gradient(140deg,#2a1f3d,#5a3a70); }
.collection-block--diamonds .collection-block__bg  { background: linear-gradient(140deg,#162030,#2a4a6a); }
.collection-block--custom .collection-block__bg    { background: linear-gradient(140deg,#2a1800,#6a3800); }
.collection-block--watches .collection-block__bg   { background: linear-gradient(140deg,#151a10,#2a3a1a); }
.collection-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 55%);
}
.collection-block__content {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
  color: var(--white);
}
.collection-block__title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 200;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.collection-block__link {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.collection-block__link:hover { color: var(--white); }
.collection-block__link::after { content: '→'; font-size: 14px; }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.service-item__icon {
  font-size: 30px;
  color: var(--orange);
  margin-bottom: 18px;
}
.service-item__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-item__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
}

/* === FOOTER === */
.site-footer {
  background: var(--orange);
  color: rgba(255,255,255,.9);
  padding: 52px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 44px;
}
.footer-col__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  transition: color .2s;
  letter-spacing: .02em;
}
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-col address {
  font-style: normal;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-col .location-phone {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.footer-col .hours-list {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-col .hours-list li {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,.82);
  letter-spacing: .01em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.25);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 300;
}
.footer-bottom p + p { margin-top: 3px; }

/* ===================================================
   RING BUILDER PAGE
=================================================== */

.rb-banner {
  background: var(--light-gray);
  padding: 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.rb-banner__title {
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 200;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.rb-banner__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: .04em;
}

/* Step Progress */
.rb-progress {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.rb-steps {
  display: flex;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}
.rb-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.rb-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  transition: all .2s;
  flex-shrink: 0;
}
.rb-step__label {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}
.rb-step--active { border-bottom-color: var(--orange); }
.rb-step--active .rb-step__num { background: var(--orange); border-color: var(--orange); color: var(--white); }
.rb-step--active .rb-step__label { color: var(--dark); font-weight: 300; }
.rb-step--done .rb-step__num { background: var(--dark); border-color: var(--dark); color: var(--white); }
.rb-step--done .rb-step__label { color: var(--dark); }

/* Builder Layout */
.rb-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: calc(100vh - 300px);
  align-items: start;
}
.rb-main {
  padding: 40px 44px;
  border-right: 1px solid var(--border);
}
.rb-panel { display: none; }
.rb-panel.active { display: block; }
.rb-panel__title {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 200;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--dark);
}
.rb-panel__sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 28px;
}

/* Filter Tabs */
.rb-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.rb-filter-tab {
  padding: 7px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  color: var(--gray);
}
.rb-filter-tab:hover,
.rb-filter-tab.active { background: var(--dark); border-color: var(--dark); color: var(--white); }

/* Ring Grid */
.ring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ring-card {
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all .25s;
  padding-bottom: 14px;
  position: relative;
}
.ring-card:hover { border-color: #bbb; }
.ring-card.selected { border-color: var(--orange); }
.ring-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.ring-card__img {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #fdf5e6 0%, #e8d090 50%, #c9a040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ring-shape {
  width: 68px;
  height: 68px;
  border: 11px solid rgba(170,130,45,.5);
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(170,130,45,.18);
  position: relative;
}
.ring-shape::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 16px; height: 16px;
  background: rgba(220,200,140,.55);
  border-radius: 50%;
}
.ring-card__name {
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  color: var(--dark);
  letter-spacing: .02em;
  margin-bottom: 3px;
  padding: 0 10px;
}
.ring-card__price { font-size: 12px; text-align: center; color: var(--gray); font-weight: 300; }

/* Metal Buttons */
.metal-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 32px 0 16px;
  color: var(--dark);
}
.metal-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.metal-btn {
  padding: 9px 20px;
  border: 2px solid var(--border);
  background: none;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .2s;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.metal-btn:hover { border-color: var(--dark); }
.metal-btn.active { border-color: var(--orange); color: var(--orange); }
.metal-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  flex-shrink: 0;
}
.metal-dot--white    { background: #e0e0e0; }
.metal-dot--yellow   { background: #d4af37; }
.metal-dot--rose     { background: #e8a898; }
.metal-dot--platinum { background: #c8c8d4; }

/* Diamond Shapes */
.shape-section-title {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.shape-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.shape-card {
  border: 2px solid var(--border);
  padding: 16px 8px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.shape-card:hover { border-color: #aaa; }
.shape-card.selected { border-color: var(--orange); }
.shape-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shape-card__name {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray);
}
.shape-card.selected .shape-card__name { color: var(--orange); }

/* Diamond shape visuals */
.shape-round     { width:34px;height:34px;border-radius:50%;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc); }
.shape-princess  { width:28px;height:28px;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc); }
.shape-oval      { width:22px;height:34px;border-radius:50%;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc); }
.shape-cushion   { width:30px;height:30px;border-radius:5px;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc); }
.shape-pear      { width:22px;height:34px;border-radius:50% 50% 50% 50%/60% 60% 40% 40%;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc); }
.shape-emerald   { width:20px;height:32px;border-radius:2px;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc); }
.shape-radiant   { width:26px;height:30px;border-radius:3px;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc);transform:skewX(-4deg); }
.shape-marquise  { width:12px;height:34px;border-radius:50%;border:3px solid #888;background:linear-gradient(135deg,#fff,#ccc); }

/* Sliders & Selects */
.rb-slider-group { margin-bottom: 28px; }
.rb-slider-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.rb-slider-label span { color: var(--orange); font-weight: 400; }
input[type=range] { width: 100%; accent-color: var(--orange); cursor: pointer; }
.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 300;
}
.filter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.filter-group label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 8px;
}
.filter-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.filter-group select:focus { border-color: var(--orange); }

/* Nav Buttons */
.rb-nav-btns { display: flex; gap: 12px; margin-top: 36px; }
.rb-btn {
  display: block;
  padding: 13px 24px;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.rb-btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.rb-btn--back {
  background: transparent;
  border-color: var(--border);
  color: var(--gray);
}
.rb-btn--back:hover { background: var(--light-gray); border-color: var(--gray); color: var(--dark); }
.rb-btn--outline {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.rb-btn--outline:hover { background: var(--dark); color: var(--white); }
.rb-btn--full { width: 100%; }
.rb-nav-btns .rb-btn { flex: 1; }

/* Step 3 Final */
.rb-final-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 32px;
}
.rb-final-preview {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #fdf5e6 0%, #e8d090 50%, #c9a040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rb-final-ring {
  width: 110px;
  height: 110px;
  border: 15px solid rgba(160,120,40,.45);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(160,120,40,.2);
  position: relative;
}
.rb-final-ring::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 24px; height: 24px;
  background: rgba(220,195,130,.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(220,195,130,.8);
}
.rb-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.rb-summary-item__label {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.rb-summary-item__value { font-weight: 400; color: var(--dark); font-size: 13px; text-align: right; }
.rb-summary-item__value.price { color: var(--orange); }
.rb-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.rb-total__label { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 200; letter-spacing: .05em; text-transform: uppercase; }
.rb-total__price { font-size: 22px; font-weight: 400; color: var(--orange); }

/* Sidebar */
.rb-sidebar {
  padding: 32px 24px;
  background: var(--light-gray);
  position: sticky;
  top: 0;
  min-height: 100%;
  border-left: 1px solid var(--border);
}
.rb-sidebar__title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
}
.sidebar-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-item__label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.sidebar-item__value { font-size: 13px; font-weight: 400; color: var(--dark); }
.sidebar-item__value.empty { color: var(--gray); font-weight: 300; font-style: italic; }
.sidebar-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 20px;
}
.sidebar-total__label { font-size: 13px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.sidebar-total__price { font-size: 20px; font-weight: 400; color: var(--orange); }
.site-header svg {
  overflow: hidden;
  width: 28px;
  height: 28px;
}

/* === HAMBURGER BUTTON === */
.hamburger-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: background .2s;
}
.hamburger-btn:hover span { background: var(--orange); }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  transition: left .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0,0,0,.15);
}
.mobile-menu.is-open { left: 0; }
.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1999;
}
.mobile-menu__overlay.is-open { display: block; }
body.menu-open { overflow: hidden; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
}
.mobile-menu__close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.mobile-menu__close:hover { color: var(--orange); }
.mobile-menu__list {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}
.mobile-menu__link {
  display: block;
  padding: 16px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.mobile-menu__link:hover,
.mobile-menu__link--active { color: var(--orange); background: var(--light-gray); }
.mobile-menu__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
}

/* Show/hide desktop vs mobile elements */
.icon--mobile { display: none; }
.icon--desktop { display: flex; }
.site-nav--desktop { display: block; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .site-nav--desktop { display: none; }
  .icon--mobile { display: flex; }
  .icon--desktop { display: none !important; }
  .site-header {
    padding: 10px 16px;
    grid-template-columns: 40px 1fr 60px;
  }
  .site-header__right {
    gap: 10px;
  }
  .site-logo-img {
    max-height: 50px;
  }
  .hero__image {
    min-height: 200px;
    object-fit: cover;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .collections-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 48px 0;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
