@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --er-gold: #c8a050;
  --er-gold-dark: #a68236;
  --er-black: #111111;
  --er-white: #ffffff;
  --er-gray: #f8f8f8;
  --er-text: #333333;
  --er-text-muted: #777777;
  --er-border: #ececec;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--er-text);
  background-color: var(--er-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--er-black);
  letter-spacing: 0.02em;
}

#header {
  background-color: var(--er-white);
  border-bottom: 1px solid var(--er-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

#footer,
.footer {
  background-color: var(--er-black);
  color: var(--er-white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

#footer a,
.footer a {
  color: var(--er-gold);
}

#footer a:hover,
.footer a:hover {
  color: var(--er-white);
}

.btn-primary {
  background-color: var(--er-gold) !important;
  border-color: var(--er-gold) !important;
  color: var(--er-black) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 0;
  padding: 0.75rem 2rem;
}

.btn-primary:hover {
  background-color: var(--er-gold-dark) !important;
  border-color: var(--er-gold-dark) !important;
  color: var(--er-white) !important;
}

.price,
.product-price,
.current-price {
  color: var(--er-gold) !important;
  font-weight: 500;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--er-gold);
  box-shadow: 0 0 0 0.15rem rgba(200, 160, 80, 0.25);
}

.er-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.65) 0%, rgba(17, 17, 17, 0.25) 100%),
              linear-gradient(45deg, #f8f4ee, #ede8df);
  color: var(--er-white);
  padding: 4rem 1rem;
  position: relative;
}

.er-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(200, 160, 80, 0.25), transparent 40%);
  pointer-events: none;
}

.er-hero .container {
  position: relative;
  z-index: 1;
}

.er-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--er-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.er-hero p {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--er-white);
  opacity: 0.95;
}

.er-section {
  padding: 4rem 0;
}

.er-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--er-black);
}

.er-divider {
  width: 60px;
  height: 2px;
  background-color: var(--er-gold);
  margin: 0 auto 2rem;
}
