:root {
  --ink: #1a1208;
  --cream: #fdf8f0;
  --parchment: #f5ead8;
  --gold: #c8922a;
  --gold-light: #e8b84b;
  --rust: #b5451b;
  --sage: #5a7a5e;
  --shadow: rgba(26,18,8,0.12);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.notice-bar {
  background: var(--ink);
  color: var(--gold-light);
  text-align: center;
  padding: 9px;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
  font-weight: 500;
}
.notice-bar span { animation: marquee-pulse 3s ease-in-out infinite; }

@keyframes marquee-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .7; }
}

header {
  background: var(--cream);
  border-bottom: 2px solid var(--parchment);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  color: var(--ink);
}

.logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .5px;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink);
  text-transform: uppercase;
  opacity: .6;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .5px;
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}

.icon-btn:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  background: var(--rust);
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 3px;
  transition: background .25s, transform .15s;
}
.btn-primary:hover { background: var(--rust); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--parchment);
  padding: 20px 5%;
  gap: 16px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 5%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,146,42,.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8922a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp .8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp .8s .15s ease both;
}

.hero h1 em { color: var(--gold); font-style: italic; }

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #5a4a30;
  margin-bottom: 36px;
  animation: fadeUp .8s .3s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 3px;
  transition: all .25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 42vw;
  max-width: 560px;
  animation: fadeLeft .9s .2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: none; }
}

.notebook-showcase {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.nb-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26,18,8,.18);
  transform: rotate(var(--r, 0deg));
  transition: transform .3s;
}
.nb-card:hover { transform: rotate(0deg) scale(1.04) translateY(-4px); }
.nb-card svg { display: block; width: 100%; }

.stats-bar {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  justify-content: space-around;
  padding: 32px 5%;
  flex-wrap: wrap;
  gap: 24px;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  opacity: .7;
  text-transform: uppercase;
}

.section { padding: 80px 5%; }

.sec-head { text-align: center; margin-bottom: 56px; }

.sec-eyebrow {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.sec-desc {
  color: #5a4a30;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
}

.search-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

.search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #9a8060;
  font-size: 14px;
}

.search-input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 2px solid var(--parchment);
  border-radius: 4px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--gold); }

.filter-select {
  padding: 11px 16px;
  border: 2px solid var(--parchment);
  border-radius: 4px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.filter-select:focus { border-color: var(--gold); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,18,8,.16); }

.product-img {
  height: 220px;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img svg { width: 120px; transition: transform .4s; }
.product-card:hover .product-img svg { transform: scale(1.08) rotate(-3deg); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-new { background: var(--sage); color: #fff; }
.badge-hot { background: var(--rust); color: #fff; }
.badge-sale { background: var(--gold); color: #fff; }

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--shadow);
  font-size: 15px;
  color: #ccc;
  transition: color .2s, transform .2s;
}
.wishlist-btn:hover { color: var(--rust); transform: scale(1.15); }
.wishlist-btn.active { color: var(--rust); }

.product-info { padding: 20px; }

.product-cat {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}

.product-desc {
  font-size: 13px;
  color: #7a6545;
  margin-bottom: 12px;
  line-height: 1.5;
}

.stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 8px;
}

.stars span {
  color: #9a8060;
  font-size: 11px;
  margin-left: 4px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.price-old {
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 6px;
  font-family: var(--font-body);
}

.add-cart-btn {
  background: var(--ink);
  color: var(--gold-light);
  border: none;
  padding: 9px 16px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
}
.add-cart-btn:hover { background: var(--gold); color: #fff; transform: scale(1.04); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.cat-card {
  background: var(--parchment);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  border: 2px solid transparent;
}
.cat-card:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.cat-icon { font-size: 36px; margin-bottom: 12px; }
.cat-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--gold); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform .3s;
}
.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--parchment), var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #7a6545;
  line-height: 1.6;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  position: relative;
  box-shadow: 0 4px 20px var(--shadow);
}

.testi-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  line-height: .7;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: 16px;
  left: 20px;
}

.testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4a3a20;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rust));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.testi-name { font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--gold); }

.newsletter {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 5%;
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.newsletter p { font-size: 16px; opacity: .75; margin-bottom: 32px; }

.nl-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.nl-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 4px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.nl-input::placeholder { opacity: .5; }
.nl-input:focus { border-color: var(--gold); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.55);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--cream);
  z-index: 2100;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px var(--shadow);
}
.cart-drawer.open { transform: none; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 2px solid var(--parchment);
}

.cart-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  transition: color .2s;
}
.close-btn:hover { color: var(--rust); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #9a8060;
  font-size: 15px;
  gap: 12px;
}
.cart-empty i { font-size: 40px; opacity: .4; }

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--parchment);
}

.ci-img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-img svg { width: 40px; }

.ci-details { flex: 1; }

.ci-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.ci-meta { font-size: 12px; color: #9a8060; margin-bottom: 8px; }

.ci-qty { display: flex; align-items: center; gap: 10px; }

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  border: 1.5px solid var(--parchment);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.qty-btn:hover { border-color: var(--gold); }

.qty-num {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  font-size: 14px;
}

.ci-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--gold);
  white-space: nowrap;
}

.ci-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  padding: 2px;
  transition: color .2s;
  margin-left: 4px;
}
.ci-remove:hover { color: var(--rust); }

.cart-footer {
  padding: 20px 24px;
  border-top: 2px solid var(--parchment);
}

.cart-totals { margin-bottom: 16px; }

.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
}

.cart-row.total {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--parchment);
}
.cart-row.total span:last-child { color: var(--gold); }

.checkout-btn {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background .25s;
}
.checkout-btn:hover { background: var(--rust); }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.6);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--cream);
  border-radius: 10px;
  width: min(560px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(26,18,8,.28);
  transform: scale(.95);
  transition: transform .3s;
  padding: 36px;
}
.modal-overlay.open .modal { transform: scale(1); }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
}

.modal-body {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.modal-img {
  width: 160px;
  height: 160px;
  background: var(--parchment);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-img svg { width: 100px; }

.modal-details {
  flex: 1;
  min-width: 200px;
}

.modal-cat {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 14px;
  color: #5a4a30;
  line-height: 1.7;
  margin-bottom: 16px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.qty-label { font-size: 13px; font-weight: 600; }

.modal-add-btn {
  width: 100%;
  padding: 13px;
  background: var(--ink);
  color: var(--gold-light);
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.modal-add-btn:hover { background: var(--gold); color: #fff; }

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--gold-light);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 5% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-main {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  opacity: .5;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  opacity: .6;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 15px;
  transition: background .2s, transform .2s;
}
.social-icon:hover { background: var(--gold); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 18px;
  letter-spacing: .5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  opacity: .7;
}
.contact-item i { color: var(--gold); margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  opacity: .5;
}

.payment-icons { display: flex; gap: 8px; }

.pay-icon {
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
}

.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200,146,42,.4);
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 900;
}
.back-top.visible { opacity: 1; transform: none; }
.back-top:hover { background: var(--rust); transform: translateY(-3px); }

.whatsapp-btn {
  position: fixed;
  bottom: 88px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 900;
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: scale(1.12); }

.promo-section {
  background: linear-gradient(135deg, var(--parchment) 0%, #ffe8c0 100%);
  padding: 56px 5%;
  text-align: center;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.promo-section h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.promo-section p {
  color: #5a4a30;
  font-size: 16px;
  margin-bottom: 24px;
}

.promo-code {
  display: inline-block;
  background: var(--ink);
  color: var(--gold-light);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  cursor: pointer;
  transition: background .2s;
}
.promo-code:hover { background: var(--gold); color: #fff; }

.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--parchment);
  margin-bottom: 36px;
  overflow-x: auto;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #9a8060;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
  white-space: nowrap;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--ink); }

@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  #contactGrid { grid-template-columns: 1fr !important; }
}