/* ===== BASE NAVBAR ===== */
.navbar, .medieval-navbar {
  background: linear-gradient(to bottom, #1a1a1a, #000000);
  border-bottom: 3px solid #c89b3c;
  padding: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
}

/* ===== NAV CONTAINER ===== */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Clickable logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* ===== SITE NAME ===== */
.site-name {
  font-family: "Georgia", "Uncial Antiqua", serif;
  font-size: 22px;
  color: #e6d3a3;
  letter-spacing: 1px;
}

.site-name:hover {
  color: #c89b3c;
  text-shadow: 0 0 6px rgba(200,155,60,0.6);
}

/* ===== NAV MENU ===== */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #e6d3a3;
  font-family: "Georgia", "Uncial Antiqua", serif;
  font-size: 18px;
  padding: 6px 10px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover */
.nav-menu a:hover {
  color: #c89b3c;
}

/* Active page */
.nav-menu a.active {
  color: #c89b3c;
  border-bottom: 2px solid #c89b3c;
}

/* Underline animation */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #c89b3c;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ===== SEARCH BOX ===== */
.search-box {
  display: flex;
  align-items: center;
  background: #f5e6c8;
  border: 2px solid #c89b3c;
  border-radius: 4px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 6px 10px;
  font-family: Georgia, serif;
  background: transparent;
  outline: none;
}

.search-box button {
  background: #c89b3c;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: #000;
  font-size: 14px;
}

.search-box button:hover {
  background: #a67c2d;
}

/* ===== METAL BUTTON ===== */
.metal-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #c89b3c;
  color: #000;
  background: linear-gradient(to bottom, #fbbf24, #d97706);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  text-decoration: none;
  font-weight: 500;
}

/* ===== COMPACT BUTTONS ===== */
.category-btn,
.custom-btn,
.paypal-btn {
  display:inline-block;
  padding:3px 10px;
  border-radius:8px;
  border:1px solid #c89b3c;
  background:linear-gradient(to bottom,#fbbf24,#d97706);
  color:#2b1600;
  font-weight:600;
  font-family:Georgia, "Times New Roman", serif;
  box-shadow:0 4px 6px rgba(0,0,0,0.3);
  transition:all 0.2s ease;
  cursor:pointer;
  text-decoration:none;
}

.category-btn:hover,
.custom-btn:hover,
.paypal-btn:hover {
  background:linear-gradient(to bottom,#fde68a,#d97706);
  box-shadow:0 6px 10px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}

.category-btn.active {
  background:linear-gradient(to bottom,#fde68a,#f59e0b);
  color:#2b1600;
}

/* ===== VARIATIONS (ADD THESE) ===== */
.metal-btn.alt1 {
  /* Top button (was alt2) */
  background: linear-gradient(to bottom, #d97706, #b45309);
}

.metal-btn.alt2 {
  /* Middle button (between alt2 and alt3) */
  background: linear-gradient(to bottom, #f59e0b, #d97706);
}

.metal-btn.alt3 {
  /* Bottom button (lightest) */
  background: linear-gradient(to bottom, #fbbf24, #f59e0b);
}

.metal-btn:hover {
  background: linear-gradient(to bottom, #fde68a, #d97706);
  box-shadow: 0 6px 10px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}
.metal-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ===== TITLE ===== */
.title-primary {
  color: #c89b3c;
}

/* ===== IMAGE FRAME ===== */
.image-frame {
  background: #0c0a09;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(200,155,60,0.25);
}

/* ===== GENERAL PAGE STYLING ===== */

/* Body */
body {
  margin: 0;
  background: #1a1a1a;
  color: #e6d3a3;
  font-family: Georgia, serif;
}

/* Cards section */
.cards {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
}

/* Card box */
.card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #c89b3c;
  border-radius: 8px;
  padding: 20px;
  color: #e6d3a3;
}

/* Headings */
h1, h2, h3 {
  font-family: "Georgia", "Uncial Antiqua", serif;
  color: #c89b3c;
}

/* Links */
a {
  color: #c89b3c;
}

a:hover {
  color: #e6d3a3;
}

<!-- END styles.css.php -->