/* =========================================================
   OAF TACTICAL HOLSTERS — CLEAN STYLES.CSS
========================================================= */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&display=swap');

/* Root Variables */
:root {
  --bg: #050505;
  --bg-alt: #0d0d0d;
  --card: #181818;
  --card-soft: rgba(255, 255, 255, 0.04);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --accent: #c2a46d;
  --accent-soft: rgba(194, 164, 109, 0.18);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(194, 164, 109, 0.45);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Layout */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

/* Buttons */
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.shop-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--accent);
  color: #111;
  padding: 15px 32px;
  border-radius: 5px;
  border: none;
}

.btn-primary:hover {
  background: #d3b478;
  transform: translateY(-2px);
}

.btn-secondary,
.btn-ghost {
  padding: 14px 28px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  border-radius: 5px;
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(194, 164, 109, 0.1);
}

/* =========================================================
   HEADER / NAV
========================================================= */

.site-header {
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo img {
  width: 285px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f4f4f4;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 8px;
}

.cart-link {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 8px 12px;
  border-radius: 4px;
}

/* =========================================================
   HOMEPAGE HERO — MOCKUP LOCK-IN
========================================================= */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    url("images/hero-background-oafth.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-overlay {
  display: none;
}

.hero-inner {
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 85px 0;
}

.eyebrow,
.hero-eyebrow {
  color: var(--accent);
  font-size: 1.45rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.hero h1 {
  color: #f3f3f3;
  font-size: clamp(4rem, 7vw, 6.7rem);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: var(--accent);
}

.hero-divider span {
  display: block;
  width: 160px;
  height: 2px;
  background: var(--accent);
}

.hero-divider strong {
  font-size: 28px;
}

.hero p,
.hero-sub {
  color: #cfcfcf;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero .btn-primary {
  padding: 17px 54px;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  background: #050505;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  text-align: center;
  padding: 12px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  color: var(--accent);
  font-size: 42px;
  margin-bottom: 12px;
}

.trust-item h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.trust-item p {
  color: #c9c9c9;
  font-size: 1rem;
  line-height: 1.45;
}

/* =========================================================
   GENERAL SECTIONS / HOMEPAGE CARDS
========================================================= */

section {
  padding: 72px 0;
}

.section-header {
  margin-bottom: 30px;
}

.section-header .tag,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.section-header h2,
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}

.section-header p,
.section-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.card a {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.categories {
  background: linear-gradient(180deg, #070707 0%, #0e0e0e 100%);
}

.home-reviews-section {
  background:
    radial-gradient(circle at top left, rgba(194, 164, 109, 0.14), transparent 34%),
    linear-gradient(180deg, #090909 0%, #060606 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.review-section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-display-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-display-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(194, 164, 109, 0.22);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-display-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 18px;
}

.review-display-card strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.review-display-card-empty {
  grid-column: 1 / -1;
}

.review-display-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.review-display-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.review-display-product {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(194, 164, 109, 0.12);
  border: 1px solid rgba(194, 164, 109, 0.25);
  color: #f1ddbb;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-home-cta {
  margin-top: 24px;
}

/* Split Section */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.split-image {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 18px;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  color: #dfd8cc;
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* CTA */
.cta {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.68), rgba(0,0,0,0.78)),
    url("images/hero-background-oafth.png") center center / cover no-repeat;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-box {
  text-align: center;
  padding: 26px 0;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 16px;
}

.cta-box p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--muted);
}

/* =========================================================
   PAGE HERO FOR SHOP / CONTACT / POLICIES
========================================================= */

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 80px 0 50px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.7)),
    url("images/hero-background-oafth.png") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.35));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 760px;
}

.page-hero .eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 14px;
}

.page-hero-copy {
  max-width: 700px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* =========================================================
   SHOP PAGE
========================================================= */

.shop-page-section,
.product-page-section,
.shop-cta-section {
  padding: 60px 0;
}

.shop-toolbar {
  margin-bottom: 30px;
}

.shop-toolbar h2 {
  margin-bottom: 10px;
}

.shop-toolbar p {
  color: #c9c9c9;
  max-width: 720px;
  line-height: 1.7;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.shop-card {
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.25s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.shop-card-image-wrap {
  aspect-ratio: 4 / 3;
  background: #111;
  overflow: hidden;
}

.shop-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card-content {
  padding: 22px;
}

.shop-card-content h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.shop-card-content p {
  color: #d1d1d1;
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(194, 164, 109, 0.35);
  color: #d7b874;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-cta-box {
  text-align: center;
  padding: 36px;
  border-radius: 18px;
  background: var(--card-soft);
  border: 1px solid var(--border);
}

.shop-cta-box h2 {
  margin-bottom: 12px;
}

.shop-cta-box p {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #d0d0d0;
  line-height: 1.7;
}

/* =========================================================
   PRODUCT PAGES
========================================================= */

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  color: #b9b9b9;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--accent);
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-gallery,
.product-details,
.info-panel {
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.product-gallery {
  padding: 22px;
}

.product-main-image-wrap {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4 / 4;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.thumb-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.thumb-btn.active,
.thumb-btn:hover {
  border-color: rgba(194, 164, 109, 0.7);
}

.thumb-btn img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.product-details {
  padding: 28px;
}

.product-details h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
}

.product-rating,
.price-note {
  color: #cfcfcf;
}

.price-note {
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.flow-note {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(215, 184, 116, 0.08);
  border: 1px solid rgba(215, 184, 116, 0.22);
  color: #e5d2a2;
  line-height: 1.6;
}

.product-lead {
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.feature-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d7d7d7;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-option-group {
  margin-bottom: 16px;
}

.product-option-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.product-option-group select,
.product-option-group input,
.product-option-group textarea,
.option-dropdown {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.product-option-group input::placeholder,
.product-option-group textarea::placeholder {
  color: #adadad;
}

.option-dropdown option {
  background: #111;
  color: #fff;
}

.product-notes {
  resize: vertical;
  min-height: 110px;
}

.thread-lock-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 22px 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.thread-lock-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thread-option {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.thread-option.active-thread,
.active-thread {
  border-color: rgba(194,164,109,0.7);
  color: #d7b874;
}

.qty-cart-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 22px;
}

.qty-box {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.qty-box button {
  width: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.qty-box input {
  width: 60px;
  text-align: center;
  border: 0;
  background: transparent;
  color: #fff;
  outline: none;
}

.cart-message {
  margin-top: 14px;
  color: #d7b874;
  min-height: 20px;
  font-weight: 900;
}

.product-bottom-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #d0d0d0;
  line-height: 1.6;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.product-meta-box {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.product-meta-box h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.product-meta-box p {
  color: #cccccc;
  line-height: 1.6;
}

.product-info-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.info-panel {
  padding: 24px;
}

.info-panel h2 {
  margin-bottom: 14px;
}

.info-panel p,
.info-panel li {
  color: #d2d2d2;
  line-height: 1.7;
}

.info-panel ul {
  padding-left: 20px;
}

/* Reviews */
.review-summary {
  margin-top: 18px;
  margin-bottom: 18px;
  color: #d7d7d7;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}

.review-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.review-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.review-card h4 {
  margin-bottom: 6px;
}

.review-stars {
  color: #d7b874;
  margin-bottom: 10px;
}

/* =========================================================
   FORMS / CONTACT / CART BASIC SUPPORT
========================================================= */

.contact-page,
.cart-page,
.thank-you-page {
  padding: 60px 0;
}

.contact-form {
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.review-form {
  margin-bottom: 24px;
}

.review-form-note {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(194, 164, 109, 0.22);
  border-radius: 14px;
  padding: 24px;
}

.review-form-note h3 {
  margin-bottom: 10px;
}

.review-form-note p {
  color: var(--muted);
  line-height: 1.7;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cart-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-summary {
  margin-top: 30px;
  text-align: right;
}

.review-request-section {
  padding-top: 0;
  padding-bottom: 60px;
}

.review-request-card {
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(215, 184, 116, 0.28);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.review-request-card h2 {
  margin-bottom: 12px;
}

.review-request-card p {
  color: #d4d4d4;
  line-height: 1.7;
  max-width: 760px;
}

.review-request-note {
  color: #c0a062;
  margin-top: 10px;
}

.review-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

/* =========================================================
   FOOTER
========================================================= */

.site-footer,
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner,
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .logo img {
    width: 230px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    min-height: 68vh;
    background-position: center;
  }

  .hero-content {
    padding: 70px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .trust-item {
    border-right: none;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-meta {
    grid-template-columns: 1fr;
  }

  .product-actions,
  .thread-lock-row,
  .qty-cart-row,
  .product-price-row {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-box {
    width: 100%;
    justify-content: space-between;
  }

  .thumb-btn img {
    height: 80px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .grid-4,
  .grid-3,
  .shop-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .eyebrow,
  .hero p {
    font-size: 1rem;
  }

  .hero-divider span {
    width: 80px;
  }

  .page-hero {
    min-height: 340px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }
}
.cart-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cart-note {
  color: var(--muted);
  margin-top: 18px;
}

.cart-item-info ul {
  margin: 12px 0;
  padding-left: 20px;
  color: #d0d0d0;
}

.cart-remove-btn {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .cart-actions {
    justify-content: flex-start;
  }
}
.cart-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cart-note {
  color: var(--muted);
  margin-top: 18px;
}

.cart-item-info ul {
  margin: 12px 0;
  padding-left: 20px;
  color: #d0d0d0;
}

.cart-remove-btn {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .cart-actions {
    justify-content: flex-start;
  }
}
/* MERCH GALLERY IMAGE SIZE FIX */

.merch-gallery,
.sticker-gallery {
  padding: 18px;
  background: #111;
}

.merch-main-image,
.sticker-main-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #111;
  border-radius: 12px;
  cursor: zoom-in;
}

.merch-thumbs,
.sticker-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.merch-thumb,
.sticker-thumb {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: #111;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 5px;
  cursor: pointer;
}

.merch-thumb:hover,
.sticker-thumb:hover,
.active-merch-thumb,
.active-sticker-thumb {
  border-color: #c2a46d;
}
/* MERCH IMAGE GALLERIES */

.merch-gallery,
.sticker-gallery {
  padding: 18px;
  background: #111;
}

.merch-main-image,
.sticker-main-image {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #111;
  border-radius: 12px;
  cursor: zoom-in;
}

.merch-thumbs,
.sticker-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.merch-thumb,
.sticker-thumb {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: #111;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 5px;
  cursor: pointer;
}

.merch-thumb:hover,
.sticker-thumb:hover,
.active-merch-thumb,
.active-sticker-thumb {
  border-color: #c2a46d;
}

.merch-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.merch-lightbox[hidden] {
  display: none;
}

.merch-lightbox-content {
  width: min(92vw, 980px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.merch-lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 16px;
  background: #111;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.merch-lightbox-caption {
  color: #f0f0f0;
  text-align: center;
  line-height: 1.5;
}

.merch-lightbox-close,
.merch-lightbox-nav {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.merch-lightbox-close:hover,
.merch-lightbox-nav:hover {
  background: rgba(194, 164, 109, 0.24);
  transform: translateY(-1px);
}

.merch-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
}

.merch-lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  flex: 0 0 auto;
}

body.lightbox-open {
  overflow: hidden;
}
/* ===============================
   MOBILE RESPONSIVE FIXES
=============================== */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  .merch-lightbox {
    padding: 16px;
    gap: 10px;
  }

  .merch-lightbox-content {
    width: min(100%, 92vw);
  }

  .merch-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
  }

  .merch-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  /* HEADER / NAV */
  .nav {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 0 18px;
    text-align: center;
  }

  .site-header .logo img,
  .logo img {
    width: 150px;
    max-width: 150px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 18px;
    width: 100%;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .cart-link {
    display: inline-block;
    margin-top: 4px;
  }

  /* HOMEPAGE HERO */
  .hero {
    min-height: 60vh;
    padding: 42px 0;
    background-position: center center;
  }

  .hero-content {
    max-width: 100%;
    padding: 50px 0;
  }

  .eyebrow,
  .hero .eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.05;
    max-width: 320px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-divider span {
    width: 80px;
  }

  .hero .btn-primary {
    width: 100%;
    max-width: 240px;
    padding: 15px 24px;
  }

  /* PAGE HERO */
  .page-hero {
    min-height: 300px;
    padding: 56px 0 44px;
  }

  .page-hero h1 {
    font-size: 34px;
    line-height: 1;
  }

  .page-hero-copy {
    font-size: 15px;
    line-height: 1.6;
  }

  /* GRIDS */
  .shop-grid,
  .merch-grid,
  .grid-3,
  .grid-4,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .shop-card,
  .merch-card,
  .card {
    width: 100%;
  }

  /* PRODUCT PAGE */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-details,
  .product-gallery {
    padding: 18px;
  }

  .product-main-image,
  .merch-main-image,
  .sticker-main-image {
    height: 240px;
  }

  .product-thumbnails,
  .merch-thumbs,
  .sticker-thumbs {
    gap: 8px;
  }

  .thumb-btn img,
  .merch-thumb,
  .sticker-thumb {
    height: 64px;
  }

  /* BUTTON ROWS */
  .qty-cart-row,
  .product-actions,
  .cart-actions {
    flex-direction: column;
    gap: 12px;
  }

  .qty-cart-row .btn,
  .product-actions .btn,
  .cart-actions .btn,
  .cart-actions button {
    width: 100%;
  }

  /* CART PAGE */
  .cart-item {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .cart-item img {
    width: 100%;
    max-width: 240px;
  }

  .cart-summary {
    text-align: left;
  }

  /* TRUST STRIP */
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  /* FOOTER */
  .footer-inner,
  .footer-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}
.checkout-request-box {
  margin-top: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
}

.checkout-request-box h2 {
  margin-bottom: 10px;
}

.checkout-request-box p {
  color: #cfcfcf;
  line-height: 1.6;
}

.cart-mode-alert {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(215, 184, 116, 0.35);
  border-radius: 10px;
  background: rgba(215, 184, 116, 0.08);
  color: #f1d9a3;
  text-align: center;
}

.checkout-steps {
  margin: 18px 0 24px;
  padding-left: 22px;
  color: #d7d7d7;
}

.checkout-steps li {
  margin-bottom: 8px;
}
/* FIX DROPDOWN OPTION VISIBILITY */

select,
select option {
  background-color: #111;
  color: #fff;
}

select:focus {
  border-color: #c2a46d;
  outline: none;
}
/* CART CHECKOUT FORM CLEANUP */
.checkout-request-box {
  text-align: left;
}

.checkout-request-box h2,
.checkout-request-box h3 {
  text-align: center;
}

.checkout-request-box > p,
.cart-note {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-steps {
  max-width: 520px;
  margin: 24px auto 36px;
  padding-left: 28px;
}

.checkout-steps li {
  margin-bottom: 10px;
}

.checkout-form {
  max-width: 760px;
  margin: 20px auto 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-form input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(215, 184, 116, 0.35);
  background: #111;
  color: #fff;
  font-size: 14px;
}

.checkout-form input::placeholder {
  color: #aaa;
}

#cust-address1,
#cust-address2 {
  grid-column: span 2;
}

.cart-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cart-actions .btn:disabled,
.cart-actions button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .checkout-form {
    grid-template-columns: 1fr;
  }

  #cust-address1,
  #cust-address2 {
    grid-column: span 1;
  }

  .cart-actions .btn {
    width: 100%;
  }
}
/* CART ITEM IMAGE FIX */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.cart-item img {
  display: block !important;
  width: 140px !important;
  height: 140px !important;
  min-width: 140px !important;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(215, 184, 116, 0.25);
  background: #111;
}

.cart-item-info {
  flex: 1;
}

@media (max-width: 700px) {
  .cart-item {
    flex-direction: column;
  }

  .cart-item img {
    width: 100% !important;
    height: auto !important;
    min-width: 0 !important;
    max-height: 320px;
  }
}
