@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Inter:wght@400;600;700&family=Oswald:wght@500;600;700&display=swap');body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1f1f1f;
  color: #f4f1ec;
}

h1, h2, p {
  margin-left: 30px;
}

h1 {
  margin-top: 40px;
  font-size: 48px;
  color: #f4f1ec;
}

h2 {
  font-size: 28px;
  color: #c76b2c;
}

p {
  font-size: 18px;
}

nav {
  margin: 30px;
}

nav a {
  color: #f4f1ec;
  text-decoration: none;
  margin-right: 18px;
  font-weight: bold;
}

nav a:hover {
  color: #c76b2c;
}
.hero {
  margin: 50px 30px;
  max-width: 800px;
}

.hero-buttons {
  margin-top: 35px;
}

.button {
  display: inline-block;
  background-color: #c76b2c;
  color: #1f1f1f;
  padding: 14px 22px;
  margin-right: 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.button:hover {
  background-color: #f4f1ec;
  color: #1f1f1f;
}

.button.secondary {
  background-color: transparent;
  color: #f4f1ec;
  border: 2px solid #c76b2c;
}

.button.secondary:hover {
  background-color: #c76b2c;
  color: #1f1f1f;
}
.page-intro {
  margin: 50px 30px 30px 30px;
  max-width: 850px;
}

.page-intro h2 {
  font-size: 42px;
  color: #c76b2c;
  margin-left: 0;
}

.page-intro p {
  font-size: 20px;
  line-height: 1.6;
  margin-left: 0;
}

.content-section {
  margin: 25px 30px;
  padding: 25px;
  max-width: 850px;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #c76b2c;
  background-color: #292929;
  border-radius: 6px;
}

.content-section h3 {
  margin-top: 0;
  color: #f4f1ec;
  font-size: 26px;
}

.content-section p {
  margin-left: 0;
  line-height: 1.6;
}
.contact-form-section {
  margin: 25px 30px;
  padding: 25px;
  max-width: 850px;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #c76b2c;
  background-color: #292929;
  border-radius: 6px;
}

.contact-form-section h3 {
  margin-top: 0;
  color: #f4f1ec;
  font-size: 26px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 15px;
  margin-bottom: 6px;
  font-weight: bold;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #555;
  border-radius: 4px;
  background-color: #1f1f1f;
  color: #f4f1ec;
  font-size: 16px;
}

button {
  margin-top: 22px;
  width: fit-content;
  background-color: transparent;
  color: #f4f1ec;
  border: 2px solid #c76b2c;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #c76b2c;
  color: #1f1f1f;
}

.form-note {
  margin-left: 0;
  margin-top: 18px;
  font-size: 14px;
  color: #c9c3b8;
}
.content-section a,
.contact-form-section a {
  color: #c76b2c;
  font-weight: bold;
  text-decoration: none;
}

.content-section a:hover,
.contact-form-section a:hover {
  color: #f4f1ec;
  text-decoration: underline;
}
@media (max-width: 700px) {
  h1 {
    font-size: 38px;
    margin-left: 20px;
  }

  nav {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav a {
    margin-right: 0;
  }

  .hero,
  .page-intro,
  .content-section,
  .contact-form-section {
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero h2,
  .page-intro h2 {
    font-size: 32px;
  }

  .button {
    display: block;
    width: fit-content;
    margin-bottom: 15px;
  }
}
footer {
  margin: 60px 30px 30px 30px;
  padding-top: 25px;
  border-top: 1px solid #3a3a3a;
  color: #c9c3b8;
  font-size: 14px;
}

footer p {
  margin-left: 0;
}

footer a {
  color: #c76b2c;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #f4f1ec;
  text-decoration: underline;
}

@media (max-width: 700px) {
  footer {
    margin-left: 20px;
    margin-right: 20px;
  }
}
header {
  padding: 35px 30px 0 30px;
}

header h1 {
  margin: 0;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin: 30px 0 0 0;
  padding: 16px 0;
  background-color: #1f1f1f;
  border-bottom: 1px solid #3a3a3a;
}

.hero {
  margin: 70px 30px;
  max-width: 900px;
}

.hero h2,
.hero p {
  margin-left: 0;
}

.hero-buttons {
  margin-top: 35px;
}
body {
  padding-top: 75px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  margin: 0;
  padding: 18px 30px;
  background-color: #1f1f1f;
  border-bottom: 1px solid #3a3a3a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

header {
  padding-top: 25px;
}
.category-section {
  margin: 70px 30px;
  max-width: 1200px;
}

.category-section h2 {
  margin-left: 0;
  font-size: 34px;
  color: #f4f1ec;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.category-card {
  background-color: #292929;
  border: 1px solid #3a3a3a;
  border-top: 5px solid #c76b2c;
  padding: 24px;
  border-radius: 6px;
}

.category-card h3 {
  margin-top: 0;
  color: #c76b2c;
  font-size: 24px;
}

.category-card p {
  margin-left: 0;
  line-height: 1.6;
  color: #f4f1ec;
}

.category-card a {
  display: inline-block;
  margin-top: 12px;
  color: #c76b2c;
  font-weight: bold;
  text-decoration: none;
}

.category-card a:hover {
  color: #f4f1ec;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}
.trust-section {
  margin: 70px 30px;
  padding: 40px;
  max-width: 1100px;
  background-color: #151515;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
}

.trust-section h2 {
  margin-left: 0;
  color: #c76b2c;
  font-size: 34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.trust-grid h3 {
  color: #f4f1ec;
  font-size: 24px;
}

.trust-grid p {
  margin-left: 0;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-section {
    padding: 25px;
  }
}
.cta-section {
  margin: 70px 30px;
  padding: 40px;
  max-width: 900px;
  background-color: #292929;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #c76b2c;
  border-radius: 6px;
}

.cta-section h2 {
  margin-left: 0;
  color: #f4f1ec;
  font-size: 34px;
}

.cta-section p {
  margin-left: 0;
  line-height: 1.6;
  font-size: 18px;
}

@media (max-width: 700px) {
  .cta-section {
    margin-left: 20px;
    margin-right: 20px;
    padding: 25px;
  }
}
.product-section {
  margin: 25px 30px;
  padding: 25px;
  max-width: 1100px;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #c76b2c;
  background-color: #292929;
  border-radius: 6px;
}

.product-section h3 {
  margin-top: 0;
  color: #f4f1ec;
  font-size: 26px;
}

.product-section p {
  margin-left: 0;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.product-card {
  background-color: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 20px;
}

.product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
  display: block;
  background-color: #151515;
}

.product-card h4 {
  font-size: 22px;
  color: #c76b2c;
  margin-bottom: 10px;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  color: #f4f1ec;
}

.product-description {
  color: #f4f1ec;
}

.product-details {
  padding-left: 20px;
  line-height: 1.6;
  color: #c9c3b8;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  display: inline-block;
  color: #f4f1ec;
  border: 2px solid #c76b2c;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}

.social-links a:hover {
  background-color: #c76b2c;
  color: #1f1f1f;
}
nav a.active-page {
  color: #c76b2c;
  border-bottom: 2px solid #c76b2c;
  padding-bottom: 4px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo {
  width: 320px;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .brand {
    align-items: center;
    gap: 14px;
  }

  .site-logo {
    width: 1800px;
  }
}
.brand-explainer {
  margin: 40px 30px;
  padding: 35px;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 35px;
  align-items: center;
  background-color: #151515;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #c76b2c;
  border-radius: 6px;
}

.brand-explainer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-explainer-logo img {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-explainer-text h3 {
  margin-top: 0;
  color: #c76b2c;
  font-size: 32px;
}

.brand-explainer-text p {
  margin-left: 0;
  line-height: 1.6;
}

.eyebrow {
  color: #c9c3b8;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 8px;
}

@media (max-width: 800px) {
  .brand-explainer {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
    padding: 25px;
  }

  .brand-explainer-logo {
    justify-content: flex-start;
  }

  .brand-explainer-logo img {
    width: 180px;
  }

  .brand-explainer-text h3 {
    font-size: 28px;
  }
}
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
nav a,
.button,
button {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
}

h1 {
  letter-spacing: 1px;
}

nav a {
  font-size: 22px;
}

.button,
button {
  font-size: 20px;
}
header h1 {
  font-family: 'Black Ops One', 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  color: #f4f1ec;
  text-shadow: 3px 3px 0 #000000;
}
.hero {
  margin: 25px 30px 70px 30px;
}
.shipping-note {
  margin-top: 25px;
  padding: 20px;
  background-color: #1f1f1f;
  border: 1px solid #3a3a3a;
  border-left: 4px solid #c76b2c;
  border-radius: 6px;
}

.shipping-note h3 {
  margin-top: 0;
  color: #c76b2c;
  font-size: 24px;
}

.shipping-note p {
  margin-left: 0;
  line-height: 1.6;
  color: #f4f1ec;
}
.product-page {
  margin: 40px 30px;
  max-width: 1150px;
  display: grid;
  grid-template-columns: minmax(300px, 520px) 1fr;
  gap: 35px;
  align-items: start;
}

.product-page-gallery {
  max-width: 520px;
}

.product-main-image {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  background-color: #151515;
  border: 1px solid #3a3a3a;
}

.product-thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-thumbnail-grid img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  border: 1px solid #3a3a3a;
}

@media (max-width: 900px) {
  .product-page {
    grid-template-columns: 1fr;
  }

  .product-page-gallery {
    max-width: 100%;
  }

  .product-main-image {
    max-height: 420px;
  }
}

@media (max-width: 600px) {
  .product-main-image {
    max-height: 320px;
  }

  .product-thumbnail-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-thumbnail-grid img {
    height: 75px;
  }
}
/* Mobile layout cleanup */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: 95px;
  }

  nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 14px 16px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
  }

  nav a {
    flex: 0 0 auto;
    font-size: 16px;
    margin-right: 0;
  }

  header {
    padding: 22px 18px 0 18px;
  }

  header h1 {
    font-size: 32px;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 1px;
    max-width: 100%;
  }

  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 100%;
  }

  .site-logo {
    width: min(280px, 90vw);
    max-width: 100%;
  }

  .hero {
    margin: 24px 18px 50px 18px;
    max-width: none;
  }

  .hero h2 {
    font-size: 34px;
    line-height: 1.15;
    margin-left: 0;
  }

  .hero p {
    margin-left: 0;
    font-size: 18px;
  }

  h1,
  h2,
  p {
    margin-left: 18px;
  }

  .page-intro,
  .category-section,
  .trust-section,
  .cta-section,
  .product-section,
  .content-section,
  .contact-form-section {
    margin-left: 18px;
    margin-right: 18px;
    max-width: calc(100% - 36px);
  }

  .content-section,
  .contact-form-section,
  .product-section,
  .trust-section,
  .cta-section {
    padding: 20px;
  }

  .category-grid,
  .product-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .button,
  button {
    display: block;
    width: 100%;
    max-width: 320px;
    text-align: center;
    margin-right: 0;
    margin-bottom: 14px;
  }

  .hero-buttons {
    display: block;
  }

  .product-page {
    margin: 28px 18px;
    max-width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .product-page-gallery,
  .product-page-info {
    max-width: 100%;
  }

  .product-page-info {
    padding: 22px;
  }

  .product-page-info h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .product-page-price {
    font-size: 28px;
  }

  .product-main-image {
    max-height: 350px;
    object-fit: contain;
  }

  .product-thumbnail-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-explainer {
    grid-template-columns: 1fr;
    margin-left: 18px;
    margin-right: 18px;
    padding: 22px;
  }

  footer {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 430px) {
  body {
    padding-top: 90px;
  }

  nav a {
    font-size: 14px;
  }

  .site-logo {
    width: min(260px, 88vw);
  }

  header h1 {
    font-size: 28px;
  }

  .hero h2 {
    font-size: 30px;
  }
}