
:root {
  --black: #090909;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-850: #202020;
  --gray-900: #171717;
  --footer: #242424;
  --gold: #c99743;
  --gold-light: #e8c36d;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 24px 60px rgba(0,0,0,.16);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1200px;
}
.navbar {
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 40px;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.18);
  transition: .35s ease;
}
.navbar.scrolled, .inner-page .navbar {
  background: rgba(17,17,17,.91);
  border-color: rgba(255,255,255,.1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.03rem;
  color: #fff;
  min-width: 0;
}
.nav-brand img, .footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201,151,67,.55);
  background: #333;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-link {
  padding: 9px 18px;
  border-radius: 20px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  border: 1px solid transparent;
  transition: .25s ease;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,.13);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.nav-link.active {
  background: #fff;
  color: #111;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.25rem;
}
.cart-btn, .cart-close {
  position: relative;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.22);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .25s ease;
}
.cart-btn:hover, .cart-close:hover { background: rgba(255,255,255,.22); transform: scale(1.04); }
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #fff;
  color: #111;
  font-size: .7rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 9px 16px;
  border-radius: 20px;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1616348436168-de43ad0db179?q=80&w=2880&auto=format&fit=crop') center/cover no-repeat;
  opacity: .58;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.55), rgba(0,0,0,.94));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeInUp .9s ease-out;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 26px;
  border: 1px solid rgba(201,151,67,.55);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -.035em;
}
.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,.73);
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta, .btn-dark, .btn-light, .checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: #111;
  padding: 15px 32px;
  border-radius: 30px;
  font-weight: 800;
  font-size: .94rem;
  border: 2px solid #fff;
  transition: .25s ease;
}
.hero-cta:hover, .btn-light:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.btn-dark, .checkout-btn {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.btn-dark:hover, .checkout-btn:hover { background: #2a2a2a; border-color: #2a2a2a; }
.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.collection {
  padding: 100px 24px;
  max-width: 1400px;
  margin: 0 auto;
  background: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 44px;
}
.section-kicker {
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1rem;
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--gray-600);
  font-weight: 700;
  font-size: .88rem;
  transition: .25s ease;
}
.filter-btn:hover { border-color: var(--gray-400); color: #111; }
.filter-btn.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  overflow: hidden;
  transition: .35s cubic-bezier(.4,0,.2,1);
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px rgba(0,0,0,.085);
  border-color: var(--gray-300);
}
.product-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
.badge {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-new { background: #0a0a0a; color: #fff; }
.badge-used { background: var(--gray-600); color: #fff; }
.badge-storage {
  background: rgba(255,255,255,.82);
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  backdrop-filter: blur(8px);
}
.product-image-wrap {
  position: relative;
  padding: 46px 20px 22px;
  background: linear-gradient(180deg, var(--gray-50), #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}
.product-image {
  width: 190px;
  height: auto;
  object-fit: contain;
  transition: .45s ease;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.16));
}
.product-card:hover .product-image { transform: scale(1.05) rotate(-2deg); }
.product-info { padding: 22px 24px 24px; }
.product-name {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 5px;
}
.product-color-name { font-size: .82rem; color: var(--gray-500); margin-bottom: 13px; }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.product-price { font-size: 1.28rem; font-weight: 800; color: #0a0a0a; }
.product-old-price { font-size: .86rem; color: var(--gray-400); text-decoration: line-through; }
.stock-indicator { margin-bottom: 16px; }
.stock-text {
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
}
.stock-count { color: var(--success); }
.stock-count.low { color: var(--warning); }
.stock-count.critical { color: var(--danger); }
.stock-bar { height: 4px; background: var(--gray-100); border-radius: 99px; overflow: hidden; }
.stock-bar-fill { height: 100%; border-radius: 99px; transition: width .5s ease; }
.stock-bar-fill.high { background: var(--success); }
.stock-bar-fill.medium { background: var(--warning); }
.stock-bar-fill.low { background: var(--danger); }
.color-options { display: flex; gap: 8px; margin-bottom: 18px; }
.color-dot {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 2px solid transparent;
  position: relative;
  transition: .2s ease;
}
.color-dot:hover { transform: scale(1.16); }
.color-dot.active {
  border-color: #111;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111;
}
.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.qty-btn {
  width: 38px;
  height: 42px;
  border: none;
  background: #fff;
  color: var(--gray-600);
  font-size: 1.14rem;
  transition: .2s ease;
}
.qty-btn:hover { background: var(--gray-100); color: #111; }
.qty-input {
  width: 42px;
  height: 42px;
  border: none;
  text-align: center;
  font-weight: 800;
  font-size: .91rem;
  color: #111;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.add-to-cart {
  flex: 1;
  height: 46px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: .86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: .25s ease;
}
.add-to-cart:hover { background: #2b2b2b; transform: scale(1.02); }
.add-to-cart.added { background: var(--success); }

.features {
  background: #0a0a0a;
  padding: 82px 24px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 28px;
}
.feature-item {
  color: #fff;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 25px; height: 25px; }
.feature-item h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; }
.feature-item p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.65; }

.footer {
  background: var(--footer);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 62px 24px 30px;
  color: #fff;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}
.footer-brand h4 { font-size: 1.12rem; }
.footer-brand span { display: block; color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 2px; }
.footer-desc { color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.75; max-width: 330px; }
.footer-title {
  color: rgba(255,255,255,.44);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
  font-weight: 800;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,.66);
  font-size: .9rem;
  transition: .2s ease;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.45);
  font-size: .82rem;
}
.whatsapp-chat-btn, .whatsapp-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  color: #111;
  padding: 13px 23px;
  border-radius: 12px;
  font-weight: 800;
  font-size: .89rem;
  margin-top: 16px;
  transition: .25s ease;
}
.whatsapp-chat-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.12); }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 430px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.14);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 { font-size: 1.25rem; font-weight: 800; color: #111; }
.cart-close {
  background: #fff;
  color: #111;
  border-color: var(--gray-200);
}
.cart-close:hover { background: var(--gray-100); transform: rotate(90deg); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray-400); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: .5; }
.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--gray-50);
  border-radius: 17px;
  margin-bottom: 12px;
}
.cart-item-image {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: #fff;
  border-radius: 13px;
  padding: 8px;
}
.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 800; font-size: .92rem; margin-bottom: 3px; color: #111; }
.cart-item-variant { font-size: .76rem; color: var(--gray-500); margin-bottom: 8px; }
.cart-item-price { font-weight: 800; font-size: .96rem; color: #111; }
.cart-item-actions { display: flex; align-items: center; gap: 12px; margin-top: 9px; }
.cart-item-qty { display: flex; align-items: center; gap: 5px; }
.cart-qty-btn {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  border: 1px solid var(--gray-200);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-qty-value { font-weight: 800; font-size: .85rem; min-width: 24px; text-align: center; color: #111; }
.cart-item-remove {
  color: var(--danger);
  background: none;
  border: none;
  font-size: .76rem;
  text-decoration: underline;
}
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  background: #fff;
}
.cart-subtotal, .cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--gray-600);
}
.cart-total { font-size: 1.2rem; font-weight: 800; color: #111; margin-bottom: 20px; }
.checkout-btn {
  width: 100%;
  padding: 16px;
  border-radius: 13px;
}
.whatsapp-checkout {
  width: 100%;
  margin-top: 10px;
  border: 2px solid #111;
}
.whatsapp-checkout:hover { background: #111; color: #fff; }

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0a0a0a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 3000;
  opacity: 0;
  transition: .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.page-hero {
  min-height: 54vh;
  padding-top: 132px;
}
.page-section {
  padding: 80px 24px;
  max-width: 1050px;
  margin: 0 auto;
}
.page-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(0,0,0,.08);
  padding: clamp(24px, 4vw, 44px);
}
.page-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.page-card p { color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.info-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 18px;
}
.info-box strong { display: block; margin-bottom: 8px; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .navbar-wrapper { top: 12px; width: calc(100% - 24px); }
  .navbar { padding: 10px 14px; border-radius: 28px; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15,15,15,.96);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
  }
  .nav-links.mobile-open { display: flex; }
  .nav-link { text-align: center; padding: 13px 18px; }
  .whatsapp-nav { display: none; }
  .hero { min-height: 660px; padding-top: 90px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .product-actions { flex-direction: column; align-items: stretch; }
  .qty-control { width: 100%; justify-content: space-between; }
  .qty-input { flex: 1; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart-sidebar { width: 100%; }
}
@media (max-width: 560px) {
  .navbar-wrapper { top: 8px; width: calc(100% - 16px); }
  .nav-brand { font-size: .88rem; }
  .nav-brand img { width: 36px; height: 36px; }
  .hero h1 { font-size: 2.08rem; }
  .hero-subtitle { font-size: .96rem; }
  .hero-actions { flex-direction: column; }
  .hero-cta, .btn-light { width: 100%; }
  .collection { padding: 72px 16px; }
  .filter-tabs { gap: 8px; margin-bottom: 30px; }
  .filter-btn { padding: 9px 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-image-wrap { min-height: 220px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .toast { width: calc(100% - 32px); text-align: center; }
}


/* ===== HOW TO ORDER SECTION ===== */
.how-order {
  background: #0a0a0a;
  padding: 88px 24px;
}
.dark-header h2 {
  color: #ffffff;
}
.dark-header p {
  color: rgba(255,255,255,.62);
}
.how-order-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.order-step {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  padding: 28px;
  color: #ffffff;
  min-height: 220px;
}
.order-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111111;
  font-weight: 900;
  margin-bottom: 22px;
}
.order-step h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.order-step p {
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  font-size: .9rem;
}
.discount-tag {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .74rem;
  font-weight: 900;
  z-index: 12;
  box-shadow: 0 12px 24px rgba(0,0,0,.14);
}
@media (max-width: 1024px) {
  .how-order-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .how-order {
    padding: 72px 16px;
  }
  .how-order-grid {
    grid-template-columns: 1fr;
  }
  .order-step {
    min-height: auto;
  }
}


/* ===== UPDATED PRODUCTS + HOW TO ORDER ===== */
.collection {
  background: #eeeeee;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1400px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1400px) / 2 + 24px));
}

.how-order {
  background: #eeeeee;
  padding: 92px 24px 100px;
  color: #0a0a0a;
}

.how-header {
  margin-bottom: 48px;
}

.how-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid #d5d5d5;
  border-radius: 999px;
  color: #707070;
  letter-spacing: .34em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 28px;
}

.how-header h2 {
  color: #0a0a0a;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.how-title-line {
  width: 74px;
  height: 4px;
  border-radius: 99px;
  background: #0a0a0a;
  margin: 0 auto;
}

.order-steps-row {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px 1fr;
  align-items: start;
  gap: 0;
  direction: rtl;
}

.order-step-clean {
  text-align: center;
  color: #0a0a0a;
}

.step-icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap svg {
  width: 34px;
  height: 34px;
  color: #050505;
}

.step-number {
  position: absolute;
  top: -6px;
  right: -2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #050505;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .86rem;
  font-weight: 900;
  z-index: 2;
}

.order-step-clean h3 {
  font-size: 1.26rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.order-step-clean p {
  color: #888888;
  font-size: 1rem;
  font-weight: 500;
}

.order-connector {
  height: 1px;
  background: #cfcfcf;
  margin-top: 42px;
}

.pagination {
  margin: 34px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-btn {
  min-width: 42px;
  height: 42px;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #111111;
  border-radius: 999px;
  font-weight: 900;
  transition: .2s ease;
}

.page-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.page-btn.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .collection {
    padding-left: 16px;
    padding-right: 16px;
  }

  .order-steps-row {
    grid-template-columns: 1fr;
    gap: 28px;
    direction: ltr;
  }

  .order-connector {
    display: none;
  }
}


/* ===== FINAL PROFESSIONAL UPDATES ===== */
:root {
  --footer: #000000;
}

.footer {
  background: #000000 !important;
}

.hero-actions {
  justify-content: center;
}

.hero-actions .hero-cta {
  min-width: 220px;
}

/* Scroll reveal animation from sides */
.reveal-on-scroll {
  opacity: 0;
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-56px);
}

.reveal-right {
  transform: translateX(56px);
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translate(0,0);
}

.product-card.reveal-on-scroll {
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1), box-shadow .35s cubic-bezier(.4,0,.2,1), border-color .35s cubic-bezier(.4,0,.2,1);
}

.professional-page {
  background: #f3f3f3;
}

.pro-page-wrap {
  padding: 90px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.pro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}

.pro-panel {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 30px;
  padding: clamp(26px, 4vw, 46px);
  box-shadow: 0 18px 50px rgba(0,0,0,.075);
}

.pro-panel.dark {
  background: #0b0b0b;
  color: #ffffff;
  border-color: rgba(255,255,255,.08);
}

.pro-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.03em;
}

.pro-panel p {
  color: #646464;
  line-height: 1.85;
  margin-bottom: 15px;
  font-size: 1rem;
}

.pro-panel.dark p {
  color: rgba(255,255,255,.66);
}

.pro-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.pro-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px;
  background: #f7f7f7;
  border-radius: 18px;
  border: 1px solid #ececec;
}

.pro-panel.dark .pro-list-item {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.09);
}

.pro-list-item span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #0a0a0a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .78rem;
}

.pro-panel.dark .pro-list-item span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111111;
}

.pro-list-item strong {
  display: block;
  margin-bottom: 4px;
}

.pro-list-item small {
  color: #757575;
  line-height: 1.55;
}

.pro-panel.dark .pro-list-item small {
  color: rgba(255,255,255,.58);
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-method {
  padding: 18px;
  border: 1px solid #e7e7e7;
  background: #f8f8f8;
  border-radius: 20px;
}

.contact-method strong {
  display: block;
  margin-bottom: 8px;
}

.contact-method a,
.contact-method p {
  color: #666666;
  margin: 0;
}

.policy-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #ededed;
}

.policy-section h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

@media (max-width: 820px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }
  .pro-page-wrap {
    padding: 64px 16px;
  }
}

@media (max-width: 560px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(36px);
  }
}


/* ===== MOBILE PRODUCT CARD + NAVBAR FIXES ===== */

/* Add to cart button: taller, centered, cleaner */
.add-to-cart {
  min-height: 56px !important;
  height: 56px !important;
  width: 100%;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  border-radius: 14px;
  font-size: .94rem;
  line-height: 1;
}

/* Qty control should not stretch full width */
.product-actions {
  align-items: center;
}

.qty-control {
  width: 154px;
  max-width: 154px;
  justify-content: space-between;
}

.qty-input {
  width: 54px;
  flex: 0 0 54px;
}

.qty-btn {
  flex: 0 0 46px;
}

/* Mobile navbar: brand left, cart + hamburger on the right */
@media (max-width: 900px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-height: 62px;
    padding: 8px 10px 8px 14px;
  }

  .nav-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 118px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .nav-brand img {
    flex: 0 0 38px;
  }

  .nav-actions {
    order: 2;
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
  }

  .mobile-menu-btn {
    order: 3;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 8px;
  }

  .cart-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .nav-links {
    top: 72px;
    left: 0;
    right: 0;
  }

  .product-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .qty-control {
    width: 154px !important;
    max-width: 154px !important;
    align-self: center;
  }

  .add-to-cart {
    align-self: stretch;
  }
}

@media (max-width: 560px) {
  .navbar {
    border-radius: 28px;
  }

  .nav-brand {
    font-size: .9rem;
    max-width: calc(100% - 118px);
  }

  .nav-brand img {
    width: 38px;
    height: 38px;
  }

  .mobile-menu-btn,
  .cart-btn {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .qty-control {
    width: 146px !important;
    max-width: 146px !important;
  }

  .qty-btn {
    flex-basis: 43px;
  }

  .qty-input {
    flex-basis: 50px;
    width: 50px;
  }

  .add-to-cart {
    min-height: 54px !important;
    height: 54px !important;
  }
}


/* ===== MODERN HALF-HERO PAGES ===== */
.modern-page {
  background: #f2f2f2;
}

.modern-page-hero {
  min-height: 52vh;
  padding: 128px max(24px, calc((100vw - 1180px) / 2 + 24px)) 58px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 38px;
  background: #0a0a0a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.modern-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(201,151,67,.22), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 42%);
  pointer-events: none;
}

.modern-hero-copy,
.modern-hero-media {
  position: relative;
  z-index: 1;
}

.modern-hero-copy h1 {
  font-size: clamp(2.15rem, 5vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 10px 0 18px;
  max-width: 720px;
}

.modern-hero-copy p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  font-size: 1.05rem;
  max-width: 620px;
}

.modern-hero-media {
  height: 330px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.12);
}

.modern-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modern-content {
  padding: 76px max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.split-section,
.contact-modern,
.policy-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.mini-label {
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
}

.split-copy h2,
.contact-intro h2,
.policy-intro h2,
.wide-image-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 12px 0 18px;
}

.split-copy p,
.contact-intro p,
.policy-intro p,
.wide-image-section p {
  color: #626262;
  line-height: 1.85;
  margin-bottom: 14px;
}

.split-points,
.contact-lines,
.policy-list {
  display: grid;
  gap: 16px;
}

.line-point,
.contact-line,
.policy-list article {
  border-top: 1px solid #d8d8d8;
  padding-top: 20px;
}

.line-point strong,
.contact-line strong,
.policy-list h3 {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: #0a0a0a;
}

.line-point span,
.contact-line span,
.policy-list p {
  color: #6d6d6d;
  line-height: 1.7;
}

.wide-image-section {
  margin-top: 76px;
  min-height: 360px;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 38px;
  color: #ffffff;
  box-shadow: 0 24px 70px rgba(0,0,0,.12);
}

.wide-image-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.08));
}

.wide-image-section div {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.wide-image-section p {
  color: rgba(255,255,255,.72);
}

.map-modern {
  margin-top: 60px;
  height: 420px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.11);
}

.map-modern iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Compact cart height */
.cart-sidebar {
  top: 24px !important;
  right: 24px !important;
  height: calc(100vh - 48px) !important;
  max-height: 820px;
  border-radius: 28px;
  overflow: hidden;
  transform: translateX(calc(100% + 48px));
}

.cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  padding: 20px 22px;
}

.cart-footer {
  padding: 20px 22px;
}

.cart-items {
  padding: 14px;
}

@media (max-width: 900px) {
  .modern-page-hero {
    grid-template-columns: 1fr;
    padding: 118px 18px 42px;
    gap: 26px;
  }

  .modern-hero-media {
    height: 255px;
    border-radius: 28px;
  }

  .modern-content {
    padding: 56px 18px;
  }

  .split-section,
  .contact-modern,
  .policy-modern {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wide-image-section {
    margin-top: 54px;
    min-height: 330px;
    border-radius: 28px;
    padding: 26px;
  }

  .map-modern {
    height: 340px;
    border-radius: 28px;
  }

  .cart-sidebar {
    top: 14px !important;
    right: 14px !important;
    left: 14px !important;
    width: auto !important;
    height: calc(100vh - 28px) !important;
    max-height: none;
    border-radius: 26px;
    transform: translateX(calc(100% + 28px));
  }
}

@media (max-width: 560px) {
  .modern-page-hero {
    min-height: 50vh;
  }

  .modern-hero-media {
    height: 220px;
  }

  .cart-sidebar {
    top: 10px !important;
    right: 10px !important;
    left: 10px !important;
    height: calc(100vh - 20px) !important;
    border-radius: 24px;
  }
}


/* ===== FIX: MODERN PAGE VISIBILITY ===== */
.modern-page .modern-hero-copy:not(.reveal-on-scroll),
.modern-page .modern-hero-media:not(.reveal-on-scroll),
.modern-page .split-copy:not(.reveal-on-scroll),
.modern-page .split-points:not(.reveal-on-scroll),
.modern-page .wide-image-section:not(.reveal-on-scroll),
.modern-page .contact-intro:not(.reveal-on-scroll),
.modern-page .contact-lines:not(.reveal-on-scroll),
.modern-page .map-modern:not(.reveal-on-scroll),
.modern-page .policy-intro:not(.reveal-on-scroll),
.modern-page .policy-list:not(.reveal-on-scroll) {
  opacity: 1;
  transform: none;
}

.modern-page-hero {
  min-height: 52vh !important;
}

@media (max-width: 900px) {
  .modern-page-hero {
    min-height: 50vh !important;
  }
}


/* ===== SHORTER CART ON MOBILE ===== */
@media (max-width: 900px) {
  .cart-sidebar {
    top: 76px !important;
    right: 14px !important;
    left: 14px !important;
    width: auto !important;
    height: calc(100vh - 100px) !important;
    max-height: 680px !important;
    border-radius: 26px !important;
  }

  .cart-header {
    padding: 16px 18px !important;
  }

  .cart-items {
    padding: 12px !important;
  }

  .cart-footer {
    padding: 16px 18px !important;
  }
}

@media (max-width: 560px) {
  .cart-sidebar {
    top: 82px !important;
    right: 10px !important;
    left: 10px !important;
    height: calc(100vh - 118px) !important;
    max-height: 620px !important;
    border-radius: 24px !important;
  }

  .cart-item {
    padding: 12px !important;
  }

  .cart-item-image {
    width: 64px !important;
    height: 64px !important;
  }
}


/* ===== CLEANER PAGES + MOBILE CARD FINAL REFINEMENT ===== */

/* Products section: same gray, slightly darker */
.collection,
.how-order,
.modern-page {
  background: #e7e7e7 !important;
}

/* Cleaner page design */
.modern-page-hero {
  min-height: 48vh !important;
  padding-top: 118px !important;
  padding-bottom: 46px !important;
  background: #080808 !important;
}

.modern-hero-media {
  height: 300px !important;
  border-radius: 28px !important;
}

.modern-content {
  padding-top: 68px !important;
  padding-bottom: 78px !important;
}

.split-section,
.contact-modern,
.policy-modern {
  gap: 54px !important;
}

.line-point,
.contact-line,
.policy-list article {
  background: transparent !important;
  border-top: 1px solid #cfcfcf !important;
  padding: 22px 0 0 !important;
  border-radius: 0 !important;
}

.wide-image-section,
.map-modern {
  border-radius: 30px !important;
}

/* Product card mobile: Qty and Add to Cart same line */
@media (max-width: 900px) {
  .product-actions {
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .qty-control {
    width: 132px !important;
    max-width: 132px !important;
    min-width: 132px !important;
    align-self: auto !important;
  }

  .qty-btn {
    width: 38px !important;
    height: 48px !important;
    flex: 0 0 38px !important;
  }

  .qty-input {
    width: 50px !important;
    height: 48px !important;
    flex: 0 0 50px !important;
  }

  .add-to-cart {
    flex: 1 1 auto !important;
    width: auto !important;
    min-height: 48px !important;
    height: 48px !important;
    align-self: auto !important;
    padding: 0 12px !important;
    font-size: .86rem !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 560px) {
  .product-info {
    padding: 16px !important;
  }

  .product-actions {
    gap: 8px !important;
  }

  .qty-control {
    width: 118px !important;
    max-width: 118px !important;
    min-width: 118px !important;
  }

  .qty-btn {
    width: 34px !important;
    height: 46px !important;
    flex-basis: 34px !important;
  }

  .qty-input {
    width: 48px !important;
    height: 46px !important;
    flex-basis: 48px !important;
  }

  .add-to-cart {
    height: 46px !important;
    min-height: 46px !important;
    font-size: .8rem !important;
    gap: 6px !important;
  }

  .add-to-cart svg {
    width: 14px !important;
    height: 14px !important;
  }
}

/* Remove green hover/added effect for Add to Cart */
.add-to-cart:hover {
  background: #1c1c1c !important;
  color: #ffffff !important;
  transform: none !important;
}

.add-to-cart.added {
  background: #0a0a0a !important;
  color: #ffffff !important;
}

/* Cleaner mobile page sections */
@media (max-width: 900px) {
  .modern-page-hero {
    min-height: 46vh !important;
    padding-top: 108px !important;
    padding-bottom: 34px !important;
  }

  .modern-content {
    padding-top: 48px !important;
    padding-bottom: 58px !important;
  }

  .modern-hero-media {
    height: 230px !important;
  }
}


/* ===== BLACK LINE UNDER PRODUCTS SECTION HEADER ===== */
.collection .section-header h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  background: #000000;
  border-radius: 99px;
  margin: 16px auto 0;
}

.collection .section-header {
  position: relative;
}


/* ===== ANIMATED BLACK CENTER LINE BETWEEN PRODUCTS AND HOW TO ORDER ===== */
.products-animated-divider {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 130px auto 0;
  height: 8px;
}

.products-animated-divider span {
  width: 0;
  max-width: 360px;
  height: 4px;
  border-radius: 999px;
  background: #000000;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  animation: centerLineGrow 1.6s ease-in-out infinite alternate;
}

@keyframes centerLineGrow {
  0% {
    width: 76px;
    opacity: .55;
    transform: scaleX(.82);
  }
  100% {
    width: min(360px, 62vw);
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 560px) {
  .products-animated-divider {
    margin-top: 90px;
  }

  .products-animated-divider span {
    max-width: 240px;
  }

  @keyframes centerLineGrow {
    0% {
      width: 56px;
      opacity: .55;
      transform: scaleX(.82);
    }
    100% {
      width: min(240px, 68vw);
      opacity: 1;
      transform: scaleX(1);
    }
  }
}
