/*
Theme Name: My Custom Theme
Author: Dylan
Version: 1.0
*/

:root {
  --black: #050505;
  --dark-green: #0d2f22;
  --green: #145c3d;
  --gold: #c9a227;
  --soft-gold: #f2d675;
  --white: #ffffff;
  --off-white: #f5f5f0;
}


body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, sans-serif;
}

.site-header {
  height: 80px;              /* fixed header height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 40px;
  background: #050505;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.site-header a {
  color: var(--white);
  text-decoration: none;
}

.site-header a:hover {
  color: var(--gold);
}

.logo img {
  max-height: 200px;
  height: auto;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.product-scroller {
  overflow-x: auto;
  padding-bottom: 25px;
}

.button,
.woocommerce button.button,
.woocommerce a.button {
  background: var(--gold);
  color: var(--black);
  border-radius: 0;
}

.home-page {
  background:
    radial-gradient(circle at top right, rgba(20, 92, 61, 0.45), transparent 35%),
    linear-gradient(180deg, #050505 0%, #0d2f22 100%);
  min-height: 100vh;
}

.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.18), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(20, 92, 61, 0.35), transparent 35%),
    #050505;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: white;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.hero-text {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 560px;
}

.hero-content p {
  color: var(--off-white);
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-gold {
  background: #c9a227;
  color: #050505;
}

.btn-outline {
  border: 1px solid #c9a227;
  color: #c9a227;
}

.category-strip {
  display: flex;
  gap: 12px;
  padding: 22px 40px;
  overflow-x: auto;
  background: #07130e;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.category-strip a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.category-strip a:hover {
  background: #c9a227;
  color: #050505;
}

.offers-section {
  padding: 70px 40px;
  background: #050505;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--soft-gold);
}

.product-scroller {
  overflow-x: auto;
  padding-bottom: 25px;
}

.woocommerce ul.products {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  min-width: 240px;
  background: #ffffff;
  color: #050505;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-left: 16px;
  margin-right: 16px;
}

.woocommerce ul.products li.product a {
  color: #050505;
  text-decoration: none;
}

.woocommerce ul.products li.product .button {
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .offers-section {
    padding: 50px 18px;
  }

  .woocommerce ul.products {
    gap: 14px;
  }

  .woocommerce ul.products li.product {
    min-width: 220px;
  }

  .woocommerce ul.products li.product img {
    height: 240px;
  }
}