:root {
  --bg: #090909;
  --bg-soft: #111111;
  --card: #151515;
  --gold: #d4af37;
  --gold-light: #f0d77a;
  --text: #f7f3ea;
  --muted: #aaa49a;
  --border: rgba(212, 175, 55, 0.25);
  --radius: 14px;
}

/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(212,175,55,0.12), transparent 40%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* =========================
   GENERAL
========================= */

.container {
  width: min(1150px, 92%);
  margin: auto;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(9, 9, 9, 0.94);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.logo {
  color: var(--gold);
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #ddd;
  text-decoration: none;

  font-size: 0.95rem;

  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--gold);
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 590px;

  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(212, 175, 55, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(212, 175, 55, 0.06),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #050505 0%,
      #0d0d0d 55%,
      #15120b 100%
    );

  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      110deg,
      transparent 20%,
      rgba(212, 175, 55, 0.035) 50%,
      transparent 80%
    );

  opacity: 0.8;
}

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

.eyebrow {
  color: var(--gold);

  text-transform: uppercase;
  letter-spacing: 4px;

  font-size: 0.75rem;
  font-weight: bold;
}

.hero h1 {
  max-width: 650px;

  margin: 15px 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.08;

  color: #fff;

  letter-spacing: -1px;
}

.hero p:not(.eyebrow) {
  max-width: 540px;

  margin: 0 0 28px;

  color: #bdb8ae;

  font-size: 1.05rem;

  line-height: 1.7;
}

/* =========================
   BUTTONS
========================= */

.button,
.btn {
  display: inline-block;

  border: 1px solid var(--gold);

  background: linear-gradient(
    135deg,
    var(--gold),
    #a98219
  );

  color: #111;

  padding: 12px 22px;

  border-radius: 7px;

  font-weight: bold;

  cursor: pointer;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button:hover,
.btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(212,175,55,0.25);
}

.btn.details {
  background: transparent;
  color: var(--gold);
}

.btn.details:hover {
  background: rgba(212,175,55,0.08);
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 95px 0;
}

.section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.alt {
  background:
    linear-gradient(
      180deg,
      #0d0d0d,
      #12100c
    );

  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

/* =========================
   PRODUCTS
========================= */

#products {
  background: #0b0b0b;
}

.product-grid,
#products-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

  gap: 28px;

  margin-top: 40px;
}

.card {
  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #191919,
      #101010
    );

  border: 1px solid var(--border);

  border-radius: var(--radius);

  box-shadow:
    0 15px 40px rgba(0,0,0,0.35);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-7px);

  border-color: rgba(212,175,55,0.6);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.55);
}

.card .img {
  height: 330px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      #292929 0%,
      #111111 55%,
      #080808 100%
    );

  border-bottom: 1px solid var(--border);
}

.card .img img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 12px;

  display: block;

  transition: transform 0.45s ease;
}

.card:hover .img img {
  transform: scale(1.04);
}
.card .img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.5s ease;
}

.card:hover .img img {
  transform: scale(1.05);
}

.card .content {
  padding: 22px;
}

.card h4 {
  margin-bottom: 8px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 1.4rem;

  color: #fff;
}

.card p {
  color: var(--muted);

  min-height: 50px;
}

.price {
  margin: 18px 0;

  color: var(--gold-light);

  font-size: 1.3rem;
  font-weight: bold;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   CONTACT
========================= */

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;

  color: #ddd;
  font-weight: bold;
}

input,
textarea {
  width: 100%;

  padding: 13px 15px;

  border: 1px solid #333;
  border-radius: 7px;

  background: #111;
  color: white;

  font: inherit;

  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 35px 0;

  background: #050505;

  border-top: 1px solid var(--border);

  color: #888;

  text-align: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .nav {
    flex-direction: column;

    align-items: flex-start;

    padding: 15px 0;
  }

  nav {
    width: 100%;

    justify-content: space-between;

    gap: 10px;
  }

  .hero {
    min-height: 550px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .section {
    padding: 65px 0;
  }

  .card .img {
    height: 280px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }
}
/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 2000;

  padding: 13px 19px;

  border-radius: 30px;

  background: #25D366;
  color: #ffffff;

  text-decoration: none;

  font-size: 0.9rem;
  font-weight: bold;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 15px;
    bottom: 15px;

    padding: 11px 16px;
  }
}
/* Checkout dialog */
#checkout-modal {
  color: #222;
}

#checkout-modal > div {
  background: #ffffff !important;
  color: #222222 !important;
  border: 1px solid #dddddd;
}

#checkout-modal h2,
#checkout-modal h3,
#checkout-modal p,
#checkout-modal label {
  color: #222222;
}

#checkout-modal input,
#checkout-modal textarea,
#checkout-modal select {
  background: #ffffff;
  color: #222222;
  border: 1px solid #bbbbbb;
}

#checkout-modal input::placeholder,
#checkout-modal textarea::placeholder {
  color: #777777;
}

#checkout-modal select {
  cursor: pointer;
}

#checkout-modal button[type="submit"] {
  margin-top: 20px;
}

#close-checkout {
  color: #222222 !important;
}