@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Russo+One&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --bg-dark: #0A0705;
  --panel-bg: rgba(22, 16, 12, 0.92);
  --border-gold: #D4AF37;
  --border-dark: #120A05;
  --fire-orange: #FF5500;
  --fire-yellow: #FFCC00;
  --text-light: #E2D7CE;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 85, 0, 0.15), transparent 70%),
    radial-gradient(circle at 50% 100%, rgba(139, 0, 0, 0.2), transparent 70%),
    url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  color: var(--text-light);
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Free Shipping Announcement Banner */
.shipping-banner {
  background: linear-gradient(180deg, #FFCC00 0%, #D4AF37 100%);
  color: #110B07;
  text-align: center;
  padding: 10px 15px;
  font-family: 'Russo One', sans-serif;
  font-size: 0.95em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid #120A05;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1000;
}

header {
  text-align: center;
  padding: 30px 15px 10px 15px;
}

/* Base Logo Style - Defaulted to 294px (30% smaller) */
.site-logo {
  max-width: 294px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 85, 0, 0.4));
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.02);
}

/* Navigation Menu Styling */
nav.site-nav {
  text-align: center;
  margin: 20px 0 10px 0;
}

nav.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.nav-btn {
  display: inline-block;
  font-family: 'Bangers', cursive;
  font-size: 1.4em;
  letter-spacing: 1px;
  color: #FFF;
  background: linear-gradient(180deg, #3A2A20 0%, #1A120C 100%);
  padding: 10px 22px;
  text-decoration: none;
  border: 2px solid var(--border-gold);
  outline: 3px solid var(--border-dark);
  border-radius: 6px;
  box-shadow: 0 4px 0px #000;
  text-shadow: 1px 1px 0px #000;
  transition: all 0.15s ease;
}

.nav-btn:hover {
  background: linear-gradient(180deg, #FF6600 0%, #B32400 100%);
  border-color: #FFCC00;
  transform: translateY(-2px);
  box-shadow: 0 6px 0px #000, 0 0 10px rgba(255, 85, 0, 0.5);
  color: #FFF;
}

.nav-btn.active {
  background: linear-gradient(180deg, #FF5500 0%, #8B0000 100%);
  border-color: #FFCC00;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.6);
}

.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}

.section-card {
  background: var(--panel-bg);
  border: 3px solid var(--border-gold);
  outline: 4px solid var(--border-dark);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0,0,0,0.9);
  position: relative;
}

h2 {
  font-family: 'Bangers', cursive;
  color: var(--fire-orange);
  font-size: 2.2em;
  letter-spacing: 1.5px;
  margin-top: 0;
  text-shadow: 2px 2px 0px #000, 0 0 10px rgba(255, 85, 0, 0.3);
}

p {
  line-height: 1.6;
  font-size: 1.05em;
}

/* ==========================================================================
   PRODUCT GRID & CARD STYLES
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
  width: 100%;
}

.product-card {
  background: var(--panel-bg);
  border: 2px solid var(--border-gold);
  outline: 3px solid var(--border-dark);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}

.product-card:hover {
  border-color: var(--fire-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 85, 0, 0.3);
}

/* Image Container Frame Constraints */
.image-wrapper {
  width: 100%;
  height: 220px;
  max-height: 220px;
  overflow: hidden;
  border-radius: 6px;
  background: #050302;
  border: 1px solid #33251d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.product-img-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

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

.product-card h3 {
  font-family: 'Bangers', cursive;
  color: var(--fire-orange);
  font-size: 1.6em;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0px #000;
}

.product-card .description {
  font-size: 0.9em;
  color: #B8A89C;
  margin: 0 0 15px 0;
  line-height: 1.4;
}

/* Option Select Box */
.price-tier {
  margin-bottom: 15px;
}

.price-tier label {
  display: block;
  font-family: 'Russo One', sans-serif;
  font-size: 0.85em;
  color: var(--fire-yellow);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.qty-select {
  width: 100%;
  padding: 10px;
  background: #120A05;
  color: var(--text-light);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95em;
  box-sizing: border-box;
}

.qty-select:focus {
  outline: none;
  border-color: var(--fire-orange);
}

/* Order Button */
.order-btn {
  display: block;
  text-align: center;
  font-family: 'Bangers', cursive;
  font-size: 1.3em;
  letter-spacing: 1px;
  color: #FFF;
  background: linear-gradient(180deg, #FF5500 0%, #B32400 100%);
  padding: 10px;
  text-decoration: none;
  border: 1px solid var(--fire-yellow);
  border-radius: 5px;
  box-shadow: 0 3px 0px #000;
  text-shadow: 1px 1px 0px #000;
  transition: all 0.15s ease;
}

.order-btn:hover {
  background: linear-gradient(180deg, #FF7700 0%, #D43300 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 85, 0, 0.4);
}

/* Table / Cart Styling */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-family: 'Russo One', sans-serif;
  text-align: left;
}

.price-table th {
  background-color: #2a1508;
  color: var(--fire-yellow);
  padding: 12px;
  border-bottom: 2px solid var(--border-gold);
  font-size: 1.1em;
  text-transform: uppercase;
}

.price-table td {
  padding: 12px;
  border-bottom: 1px solid #33251d;
  color: #E2D7CE;
}

.price-table tr:hover {
  background-color: #261c17;
}

.price-highlight {
  color: var(--fire-orange);
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px;
  font-family: 'Russo One', sans-serif;
  color: #88786C;
  font-size: 0.9em;
  border-top: 1px solid #22150C;
}