/* --- Theme tokens ---------------------------------------------------- */
:root {
  --bg: #f6f2ea; /* page background */
  --paper: #fffdf8; /* cards / panels */
  --ink: #1d1c1a; /* primary text */
  --muted-ink: #6b655f;
  --brand: #c89b3c; /* gold */
  --brand-ink: #3f2f0a;
  --line: #e8e0d3; /* borders */
  --accent: #e7d8be; /* soft highlight */
  --success: #3a7e4b; /* green */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --container: 1180px;
}

/* --- Resets ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
input {
  font: inherit;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: radial-gradient(1000px 500px at -10% -10%, #fff 0%, var(--bg) 60%),
    var(--bg);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
    /* --- Header ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(6px);
  background: color-mix(in oklab, var(--bg) 85%, #fff 15%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--muted-ink);
}

.nav-links2 {
  display: flex;
  gap: 18px;
  margin-right: 10px;
  margin-left: 10px;
  color: var(--muted-ink);
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-links a:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.nav-spacer {
  flex: 1;
}
.search {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 25rem;
}

.search input {
  width: 400px;
  max-width: 55vw;
  padding: 10px 36px 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.search svg {
  position: absolute;
  right: 10px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hamburger {
  display: none;
}

.cart-count {
  background: #c89b3c;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  position: absolute;
  top: 6px;
  right: 6px;
}

/* Badge */
.badge {
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  position: absolute;
  top: -6px;
  right: -6px;
}

.faq-contact-container {
  display: grid;
  grid-template-columns: 2fr 2fr; /* FAQ left, Contact right bigger */
  gap: 40px; /* space between FAQ and Contact */
  align-items: start;
  margin-top: 40px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-column {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Make form inputs nice */
.contact-column input,
.contact-column textarea {
  width: 100%;
  padding: 10px 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .faq-contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-column {
    padding: 30px;
  }
}

/* Position inside cart button */
.icon-btn {
  position: relative;
}

    main {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
    }

    main h2 {
      text-align: center;
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    details {
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
    }

    details summary {
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      list-style: none;
    }

    details[open] summary {
      color: #333;
    }

    footer {
      background: #222222;
      color: #fff;
      padding: 40px 20px;
      margin-top: 50px;
      text-align: center;
    }

    footer h3 {
      margin-bottom: 20px;
      font-size: 24px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    .form-control {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
    }

    textarea.form-control {
      resize: none;
    }

    .btn {
      display: inline-block;
      background: #444;
      color: #fff;
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      cursor: pointer;
      border-radius: 8px;
    }

    .btn:hover {
      background: #666;
    }

    .btn-block {
      width: 100%;
    }

    /* Drop Down */
.dropdown{
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropbtn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  padding: 10px;
}

.welcomeMessage {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}   

.dropdown-arrow {
  transition: transform 0.3s ease;
  width: 30px;
}

.dropdown-trigger.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1;
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}
    
 