/* OnDeen Designs - Topographic Elevation & Mountain Contour Design System */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  --logo-cream: #fcf8d9;
  --accent-gold: #d4af37;
  --accent-gold-light: #f3e5ab;
  --accent-gold-dark: #a28020;
  --bg-dark: #0b0d12;
  --bg-slate: #11141c;
  --bg-card: #151924;
  --bg-card-hover: #1e2332;
  --bg-glass: rgba(11, 13, 18, 0.95);
  --text-bright: #ffffff;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --border-subtle: rgba(212, 175, 55, 0.32);
  --border-glass: rgba(255, 255, 255, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-main: 0 10px 30px -10px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Cinzel', 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  /* Full page Topographic Contour Line Mapping Pattern */
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(212, 175, 55, 0.06), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='rgba(212,175,55,0.06)' stroke-width='1.5'%3E%3C!-- Mountain Peak 1 Contours --%3E%3Cpath d='M200,300 C250,220 350,220 400,300 C450,380 350,480 250,450 C150,420 150,380 200,300 Z'/%3E%3Cpath d='M220,310 C260,250 330,250 370,310 C410,370 330,440 260,420 C190,400 180,370 220,310 Z'/%3E%3Cpath d='M240,320 C275,275 315,275 345,320 C375,365 315,415 270,400 C225,385 215,365 240,320 Z'/%3E%3Cpath d='M265,335 C285,300 305,300 325,335 C345,370 305,395 280,385 C255,375 245,370 265,335 Z' stroke-width='2' stroke='rgba(212,175,55,0.12)'/%3E%3C!-- Mountain Peak 2 Contours --%3E%3Cpath d='M550,150 C600,80 700,80 750,150 C800,220 720,320 620,290 C520,260 500,220 550,150 Z'/%3E%3Cpath d='M570,165 C610,105 680,105 720,165 C760,225 690,290 610,270 C530,250 530,225 570,165 Z'/%3E%3Cpath d='M590,180 C625,130 665,130 695,180 C725,230 665,270 610,255 C555,240 555,230 590,180 Z' stroke-width='2' stroke='rgba(212,175,55,0.12)'/%3E%3C!-- Ridge Lines --%3E%3Cpath d='M0,100 Q200,40 400,100 T800,100'/%3E%3Cpath d='M0,150 Q200,90 400,150 T800,150'/%3E%3Cpath d='M0,600 Q300,500 600,620 T800,600'/%3E%3Cpath d='M0,650 Q300,550 600,670 T800,650'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e2332;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-dark);
}

/* Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Banner */
.top-bar {
  background: #06070a;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.5px;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
  background-color: var(--logo-cream);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--accent-gold-light);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--accent-gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-bright);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cart-btn:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.cart-badge {
  background: var(--accent-gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section with Rich Topographic Mountain Outlines */
.hero {
  position: relative;
  padding: 95px 0 75px;
  background: 
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='500' viewBox='0 0 1000 500'%3E%3Cg fill='none' stroke='rgba(212,175,55,0.09)' stroke-width='1.5'%3E%3C!-- Mountain Range Topography Lines --%3E%3Cpath d='M100,450 C200,300 350,200 500,320 C650,440 800,280 900,450' stroke-width='2' stroke='rgba(212,175,55,0.18)'/%3E%3Cpath d='M120,430 C210,315 340,230 480,335 C620,440 770,300 870,430'/%3E%3Cpath d='M140,410 C220,330 330,260 460,350 C590,440 740,320 840,410'/%3E%3Cpath d='M160,390 C230,345 320,290 440,365 C560,440 710,340 810,390'/%3E%3C!-- Central High Peak Rings --%3E%3Cpath d='M420,250 C450,210 490,210 520,250 C550,290 500,330 460,310 C420,290 400,270 420,250 Z' stroke-width='2' stroke='rgba(212,175,55,0.22)'/%3E%3Cpath d='M435,258 C455,225 485,225 505,258 C525,291 490,320 460,305 C430,290 420,275 435,258 Z'/%3E%3Cpath d='M450,265 C465,240 480,240 495,265 C510,290 480,305 465,295 C450,285 440,275 450,265 Z' stroke-width='2' stroke='rgba(212,175,55,0.25)'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--bg-dark) 0%, #11141d 100%);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--border-subtle);
  color: var(--accent-gold-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 20px;
}

.hero h1 span {
  color: var(--accent-gold-light);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: var(--font-serif);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Controls Bar (Filter, Search, Sort) */
.catalog-controls {
  padding: 30px 0 20px;
  position: sticky;
  top: 84px;
  z-index: 90;
  background: rgba(11, 13, 18, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 30px;
}

.controls-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.categories-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.search-sort-group {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
}

.search-box {
  position: relative;
  flex: 1;
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-bright);
  padding: 10px 16px 10px 42px;
  border-radius: 25px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--accent-gold);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  font-weight: 500;
}

/* Products Grid */
.products-section {
  padding-bottom: 80px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.results-count {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-main);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-main), var(--shadow-gold);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0f121a;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 13, 18, 0.92);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-category {
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.35;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-glass);
}

.card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright);
}

.add-btn {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--accent-gold-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.add-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

/* Feature & Craftsmanship Banner */
.craft-section {
  padding: 80px 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='300' viewBox='0 0 600 300'%3E%3Cg fill='none' stroke='rgba(212,175,55,0.06)' stroke-width='1.5'%3E%3Cpath d='M50,250 C150,150 250,150 350,250 T600,250'/%3E%3Cpath d='M80,230 C160,160 240,160 320,230 T550,230'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--bg-dark), #151924);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}

.craft-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-main);
}

.craft-card:hover {
  border-color: var(--border-subtle);
  transform: translateY(-4px);
}

.craft-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.craft-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.craft-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-main);
}

.stars {
  color: var(--accent-gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.review-msg {
  color: var(--text-main);
  font-size: 0.92rem;
  flex: 1;
}

.review-author {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--border-glass);
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 1280px;
  width: 95vw;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-main), var(--shadow-gold);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--text-bright);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent-gold);
  color: #000;
}

.modal-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  padding: 44px;
}

@media (max-width: 992px) {
  .modal-body {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }
}

.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-img-box {
  aspect-ratio: 4/3;
  min-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-glass);
  position: relative;
  cursor: zoom-in;
}

.main-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: var(--transition);
}

.thumb-item.active {
  border-color: var(--accent-gold);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--text-bright);
  line-height: 1.2;
}

.modal-price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-gold-light);
}

.modal-desc {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.65;
  white-space: pre-line;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 12px;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border-subtle);
  z-index: 1100;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-bright);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.2;
}

.cart-item-price {
  color: var(--accent-gold-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  background: var(--bg-dark);
  border: 1px solid var(--border-glass);
  color: var(--text-bright);
  width: 26px;
  height: 26px;
  border-radius: 4px;
  cursor: pointer;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-glass);
  background: #0b0d12;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--text-main);
}

.cart-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: var(--transition);
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  color: var(--text-bright);
  padding: 14px 22px;
  border-radius: 30px;
  box-shadow: var(--shadow-main);
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
footer {
  background: #06070a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-bright);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-glass);
  font-size: 0.8rem;
}
