/* =========================================================
   Carson Woodall Knives
   ---------------------------------------------------------
   Global stylesheet shared by:
   index · cart · contact · knives · merch · product
   Notes:
   - Global radial background lives on <body>.
   - Keep section backgrounds transparent unless a page
     explicitly needs a surface.
   ========================================================= */

/* =========================
   Global Base + Background
   ========================= */

:root {
  --bg-deep: #111111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* Global site background */
body {
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(circle at 50% 8%, rgba(58, 58, 58, 0.72) 0%, rgba(24, 24, 24, 0.94) 34%, #111111 72%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: #f5f5f5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.15' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body > * {
  position: relative;
  z-index: 1;
}

/* Default scroll behavior */
html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* =========================
   Scroll Snap (Home Only)
   ========================= */

.snap-page {
  scroll-behavior: smooth;
}

.snap-page .landing-hero,
.snap-page .knife-hero,
.snap-page .shop-section,
.snap-page .about-section,
.snap-page .builder-images {
  scroll-snap-align: center;
}

.snap-page .footer {
  scroll-snap-align: end;
}

.snap-page .builder-images {
  scroll-snap-stop: always;
  min-height: 100vh;
  scroll-margin-top: 80px; /* offsets fixed nav */
}

/* =========================
   Shared Section Shells
   ========================= */

.landing-hero,
.knife-hero,
.shop-section,
.about-section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: transparent;
}

/* =========================
   Landing Hero (Logo)
   ========================= */

.landing-hero {
  padding: 0;
  position: relative;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
}

.hero-logo {
  max-width: 480px;
  width: 60vw;
  display: block;
  filter: drop-shadow(0 16px 45px rgba(255, 255, 255, 0.466));

  opacity: 0;
  transform: translateY(24px) scale(0.94);
  animation: hero-logo-enter 0.9s ease-out 0.15s forwards;

  transform: translateZ(0);
  will-change: transform, filter;
}

@keyframes hero-logo-enter {
  0% { opacity: 0; transform: translateY(24px) scale(0.94); }
  60% { opacity: 1; transform: translateY(0) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================
   Knife Hero (Index)
   ========================= */

.knife-inner {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.knife-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.knife-subheading {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b3b3b3;
  margin-bottom: 40px;
}

.knife-image-wrap {
  display: flex;
  justify-content: center;
}

.knife-image {
  width: clamp(260px, 50vw, 620px);
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
}

/* =========================
   Shop Tiles (Index)
   ========================= */

.shop-section {
  justify-content: center;
  padding: 80px 24px 100px;
}

.shop-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

.shop-heading {
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.shop-subheading {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b3b3b3;
  text-align: center;
  margin-bottom: 40px;
}

.product-grid {
  flex: 1;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.product-card {
  flex: 1 1 0;
  border-radius: 18px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 320px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   About (Index)
   ========================= */

.about-section {
  padding: 80px 24px 100px;
}

.about-inner {
  width: 100%;
  max-width: 900px;
}

.about-heading {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.about-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b3b3b3;
  text-align: center;
  margin-bottom: 36px;
}

.about-body {
  font-size: 14px;
  line-height: 1.7;
  color: #d9d9d9;
  max-width: 780px;
  margin: 0 auto;
}

.about-body p + p {
  margin-top: 16px;
}

.about-signoff {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b3b3b3;
}

/* =========================
   Footer
   ========================= */

.section-divider {
  width: 100%;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  margin: 60px 0 20px;
}

.footer {
  width: 100vw;
  padding: 80px 24px 72px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.footer-inner {
  width: 100%;
  max-width: 960px;
  color: #e0e0e0;
}

.footer-newsletter {
  text-align: center;
  margin-bottom: 56px;
}

.footer-newsletter-heading {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b8b8b8;
  margin-bottom: 24px;
}

.footer-newsletter-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
}

.footer-newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #f5f5f5;
}

.footer-newsletter-form input::placeholder {
  color: #7f7f7f;
}

.footer-newsletter-form button {
  padding: 0 26px;
  border: none;
  background: #f5f5f5;
  color: #111111;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.footer-newsletter-form button:hover {
  background: #ffffff;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-nav a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-copy {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b9b9b;
}

/* =========================
   Navigation
   ========================= */

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  background: rgba(10, 10, 10, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  z-index: 100;
  transition:
    background 0.25s ease,
    backdrop-filter 0.25s ease,
    -webkit-backdrop-filter 0.25s ease,
    padding 0.25s ease;
}

.nav-left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.nav-logo-scorpion {
  width: 0;
  height: auto;
  display: block;
  opacity: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition:
    width 0.25s ease,
    opacity 0.25s ease;
}

.nav-logo-textimg {
  height: 40px;
  width: auto;
  display: block;
  max-width: 100%;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  font-family: "Karla", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cart-btn,
.nav-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nav-cart-btn img {
  width: 40px;
  height: auto;
}

.nav-menu-btn img {
  width: 58px;
  height: auto;
}

.nav-cart-btn {
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-bar.nav-bar--open {
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-bar.nav-bar--open .nav-logo-scorpion {
  width: 54px;
  opacity: 1;
}

.nav-bar.nav-bar--open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-bar.nav-bar--open .nav-cart-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* =========================
   Contact Page
   ========================= */

.contact-section {
  width: 100vw;
  min-height: 100vh;
  padding: 120px 24px 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.contact-inner {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.contact-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-subheading {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b3b3b3;
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.form-field {
  text-align: left;
}

.form-field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c7c7c7;
  display: block;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eee;
  font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-submit {
  margin-top: 12px;
  padding: 14px 20px;
  background: #ffffff10;
  color: #ffffffd8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-submit:hover {
  background: #ffffff22;
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-note {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #818181;
  margin-top: 12px;
}

.contact-success {
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f5f5f5;
  text-align: center;
  letter-spacing: 0.04em;
}

/* =========================
   Shop Listing Pages
   (Knives / Merch)
   ========================= */

.shop-page {
  width: 100vw;
  min-height: 100vh;
}

.filters-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0 28px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
}

.filters-left,
.filters-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: end;
}

.filter label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bdbdbd;
  margin-bottom: 8px;
}

.filter select,
.filter input {
  min-width: 170px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eee;
  outline: none;
}

/* Fix filter dropdown list colors */
.filter select option {
  background: #111;
  color: #eee;
}

/* Keep hover readable */
.filter select option:hover {
  background: #1b1b1b;
}

.filter.search input { min-width: 220px; }

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

.listing-card {
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.65);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.listing-card:hover {
  transform: scale(1.01);
  border-color: rgba(255,255,255,0.14);
}

.listing-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.listing-meta {
  padding: 14px 14px 16px;
}

.listing-title {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.listing-sub {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pill {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.listing-price {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}

.shop-page-hero {
  width: 100%;
  padding: 120px 24px 40px;
  display: flex;
  justify-content: center;
}

.shop-page-hero-inner {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.shop-page-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.shop-page-subheading {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b3b3b3;
}

.shop-page-categories {
  width: 100%;
  padding: 24px 24px 120px;
  display: flex;
  justify-content: center;
}

.shop-page-categories-inner {
  width: 100%;
  max-width: 1080px;
}

.shop-category-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.65);
}

.shop-category-card .product-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.shop-category-card:hover .product-image {
  filter: brightness(1.05);
  transform: scale(1.02);
}

.shop-category-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5f5f5;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =========================
   Cart Page
   ========================= */

.cart-page {
  width: 100vw;
  min-height: 100vh;
}

.cart-hero {
  width: 100%;
  padding: 120px 24px 24px;
  display: flex;
  justify-content: center;
}

.cart-hero-inner {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.cart-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cart-subheading {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b3b3b3;
}

.cart-content {
  width: 100%;
  padding: 16px 24px 120px;
  display: flex;
  justify-content: center;
}

.cart-inner {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 32px;
}

.success-page .cart-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: 640px;
  margin: 0 auto;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-empty {
  padding: 32px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.cart-empty p {
  margin-bottom: 16px;
  color: #d0d0d0;
}

.cart-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: #f5f5f5;
  text-decoration: none;
}

.cart-empty-cta:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.cart-item {
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-item-main {
  display: flex;
  gap: 14px;
}

.cart-item-image-wrap {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-name {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 12px;
  color: #a9a9a9;
}

.cart-item-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.cart-item-qty button {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #f5f5f5;
  cursor: pointer;
  padding: 0;
}

.cart-item-price {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-summary {
  padding: 22px 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary-heading {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
}

.cart-summary-row span:last-child {
  color: #e0e0e0;
}

.cart-summary-total {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

.cart-summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

.cart-checkout-btn {
  width: 100%;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  background: #ffffff11;
  color: #ffffffd8;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  cursor: pointer;
}

.cart-checkout-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cart-summary-note {
  margin-top: 12px;
  font-size: 11px;
  color: #9b9b9b;
}
.summary-note{
  font-size:12px;
  opacity:0.65;
  margin:6px 0 10px 0;
  font-style:italic;
}

/* =========================
   Product Page (Layout + UI)
   ========================= */

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4rem 10vw;
  gap: 2rem;
}

.main-image-container {
  flex: 1 1 500px;
}

.main-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.product-options {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.price-addcart {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
}

.add-cart {
  padding: 0.75rem 2rem;
  border: 1px solid #eee;
  background: transparent;
  color: #eee;
  cursor: pointer;
  transition: background 0.3s;
}

.add-cart:hover {
  background: rgba(255,255,255,0.08);
}

.option-group label {
  display: block;
  margin-bottom: 0.5rem;
}

.option-group select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #eee;
  background: #111;
  color: #eee;
}

/* Product gallery carousel */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-main {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.gallery-nav:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
}

.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }

.gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumb {
  padding: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  width: 72px;
  height: 54px;
  opacity: 0.75;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb.is-active {
  opacity: 1;
  border-color: rgba(255,255,255,0.35);
}

.mini-specs {
  margin-top: -6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: grid;
  gap: 8px;
}

.mini-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* =========================
   Builder Promo Section
   ========================= */

.builder-images {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.builder-images__inner {
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 520px;
}

.builder-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.builder-text {
  max-width: 640px;
  margin-bottom: 28px;
}

.builder-text__h {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.builder-text__p {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.builder-cta {
  margin-top: 28px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.builder-cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
}

.builder-knife,
.builder-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.builder-knife img {
  width: auto;
  max-width: 800px;
  height: auto;
  display: block;
  padding: 60px 0;
  max-height: 45vh;
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.8));
}

.builder-sidebar {
  height: 100%;
  padding: 24px;
}

.builder-sidebar img {
  height: 82vh;
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.8));
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {
  .product-grid {
    flex-direction: column;
    gap: 24px;
  }

  .product-card {
    min-height: 260px;
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 40px;
    font-size: 14px;
  }

  .nav-logo-textimg {
    height: 28px;
  }

  .cart-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-summary {
    max-width: 420px;
    margin: 0 auto;
  }

  .builder-images__inner {
    grid-template-columns: 1fr;
  }

  .builder-left {
    padding: 64px 20px 24px;
  }

  .builder-text {
    margin-bottom: 22px;
  }

  .builder-cta {
    align-self: center;
    margin-top: 22px;
  }

  .builder-sidebar img {
    height: auto;
    max-height: 80vh;
    width: auto;
  }

  .builder-knife {
    padding: 75px 0;
  }
}

@media (max-width: 700px) {
  .footer-logo {
    width: 120px;
  }

  .listing-grid {
    grid-template-columns: 1fr;
  }

  html,
  body {
    scroll-snap-type: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  .snap-page .landing-hero,
  .snap-page .knife-hero,
  .snap-page .shop-section,
  .snap-page .about-section,
  .snap-page .footer,
  .snap-page .builder-images {
    scroll-snap-align: none !important;
  }

  .nav-bar {
    height: auto;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "links links";
    align-items: center;
    row-gap: 12px;
    background: rgba(10, 10, 10, 0.56);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-left {
    grid-area: brand;
    min-width: 0;
    gap: 10px;
  }

  .nav-right {
    grid-area: actions;
    gap: 12px;
  }

  .nav-logo-scorpion {
    width: 0;
    opacity: 0;
  }

  .nav-logo-textimg {
    height: 28px;
    max-width: min(76vw, 290px);
  }

  .nav-cart-btn {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-cart-btn img {
    width: 34px;
  }

  .nav-menu-btn img {
    width: 48px;
  }

  .nav-links {
    grid-area: links;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 6px 0 2px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-bar.nav-bar--open .nav-links {
    display: flex;
  }

  .nav-bar.nav-bar--open .nav-logo-scorpion {
    width: 44px;
    opacity: 1;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .shop-section {
    padding: 64px 20px 80px;
  }

  .shop-heading {
    font-size: 22px;
    letter-spacing: 0.18em;
  }

  .shop-subheading {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .product-card {
    min-height: 220px;
  }

    .shop-page-categories {
    padding: 20px 16px 84px;
  }

  .shop-page-categories-inner {
    max-width: 100%;
  }

  .product-grid {
    gap: 18px;
  }

  .shop-category-card {
    max-width: 100%;
    border-radius: 24px;
  }

  .shop-category-card .product-image {
    aspect-ratio: 4 / 3;
    object-position: center 42%;
  }

  .shop-category-label {
    left: 14px;
    bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
    padding: 7px 11px;
  }

  .about-body {
    font-size: 13px;
  }

  .about-heading {
    font-size: 22px;
    letter-spacing: 0.16em;
  }

  .about-kicker {
    font-size: 11px;
  }
}

/* Treat phone landscape as mobile */
@media (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {
  html,
  body {
    scroll-snap-type: none !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  .nav-bar {
    height: auto;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "links links";
    align-items: center;
    row-gap: 10px;
    background: rgba(10, 10, 10, 0.58);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav-left {
    grid-area: brand;
    gap: 10px;
    min-width: 0;
  }

  .nav-right {
    grid-area: actions;
    gap: 10px;
  }

  .nav-cart-btn {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links {
    grid-area: links;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 8px 0 2px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-bar.nav-bar--open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-logo-textimg {
    height: 24px;
  }

  .nav-menu-btn img {
    width: 46px;
  }

  .nav-cart-btn img {
    width: 32px;
  }

  .nav-bar.nav-bar--open .nav-logo-scorpion {
    width: 40px;
    opacity: 1;
  }

  .landing-hero {
    min-height: 100vh;
    padding-top: 84px;
    align-items: center;
    justify-content: center;
  }

  .hero-logo {
    width: auto;
    height: min(52vh, 320px);
    max-width: 80vw;
    margin: 0 auto;
  }
}

/* =========================================================
   Builder Promo: No Distortion (all mobile, incl. landscape)
   ========================================================= */

/* If anything inside a grid/flex refuses to shrink, it can push sideways */
.builder-images__inner > * { min-width: 0; }

/* Mobile portrait + general small widths */
@media (max-width: 900px) {
  .builder-images,
  .builder-images__inner {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Force true single column */
  .builder-images__inner {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  /* Kill ALL fixed-height rules that cause distortion */
  .builder-knife img,
  .builder-sidebar img {
    height: auto !important;
    width: auto !important;

    max-width: 100%;
    max-height: 78vh;

    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* Keep spacing tidy */
  .builder-knife { padding: 28px 0 12px; }
  .builder-sidebar { padding: 12px 0 28px; }
}

/* Phone-landscape specifically (this is where your current CSS gets weird) */
@media (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {
  .builder-images,
  .builder-images__inner {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .builder-images__inner {
    grid-template-columns: 1fr !important;
  }

  .builder-knife img,
  .builder-sidebar img {
    height: auto !important;
    width: auto !important;

    max-width: 100%;
    max-height: 70vh;

    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* Slightly tighter padding so landscape doesn't feel cramped */
  .builder-knife { padding: 18px 0 8px; }
  .builder-sidebar { padding: 8px 0 18px; }
}
/* =========================================================
   Footer: prevent social overflow (mobile + phone-landscape)
   ========================================================= */

.footer,
.footer-inner {
  max-width: 100%;
}

.footer-main {
  max-width: 100%;
}

/* Make the footer wrap earlier than 768px, and also in phone-landscape */
@media (max-width: 900px),
       (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {

  .footer-main {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .footer-social-icon {
    flex: 0 0 auto;
  }
}
/* Footer alignment fix (desktop + mobile-safe) */
.footer-inner{
  width: 100%;
  max-width: 960px;
  margin: 0 auto;           /* critical: keeps content centered */
}

.footer-main{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-nav{ justify-self: start; }
.footer-logo-link{ justify-self: center; }
.footer-social{ justify-self: end; }

/* ============================= */
/* KNIFE BUILDER COMING SOON */
/* ============================= */

.coming-soon-wrapper{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
}

.coming-card{
  max-width:620px;
  text-align:center;
  padding:50px 40px;

  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);

  border-radius:12px;

  box-shadow:
  0 0 60px rgba(0,0,0,0.6),
  inset 0 0 40px rgba(255,255,255,0.03);
}

.coming-title{
  font-size:42px;
  letter-spacing:6px;
  margin-bottom:18px;
}

.coming-sub{
  font-size:16px;
  opacity:0.8;
  margin-bottom:20px;
}

.coming-description{
  font-size:14px;
  opacity:0.7;
  line-height:1.7;
  margin-bottom:10px;
}

.coming-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* Button styles */
.add-cart:disabled,
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.primary-btn,
.secondary-btn{

  padding:12px 22px;
  border-radius:6px;
  text-decoration:none;

  font-size:14px;
  letter-spacing:1px;

  transition:all .25s ease;

}

.primary-btn{
  background:#ffffff;
  color:#000;
}

.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,0.4);
  color:#fff;
}

.secondary-btn:hover{
  background:rgba(255,255,255,0.08);
}

.builder-panel,
.builder-sidebar,
.builder-form,
.builder-controls {
  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =========================
   FAQ Page
   ========================= */

.faq-page {
  width: 100%;
  min-height: 100vh;
}

.faq-hero {
  width: 100%;
  padding: 130px 24px 28px;
  display: flex;
  justify-content: center;
}

.faq-hero-inner {
  width: 100%;
  max-width: 920px;
  text-align: center;
}

.faq-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-subheading {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b3b3b3;
}

.faq-content {
  width: 100%;
  padding: 0 24px 110px;
  display: flex;
  justify-content: center;
}

.faq-inner {
  width: 100%;
  max-width: 920px;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 56px 20px 22px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.75);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 700px) {
  .faq-hero {
    padding: 112px 18px 22px;
  }

  .faq-content {
    padding: 0 18px 84px;
  }

  .faq-heading {
    font-size: 22px;
    letter-spacing: 0.16em;
  }

  .faq-subheading {
    font-size: 11px;
    line-height: 1.6;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    padding: 18px 48px 18px 16px;
    font-size: 12px;
    letter-spacing: 0.14em;
    line-height: 1.5;
  }

  .faq-item summary::after {
    right: 16px;
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 700px) {
  .builder-sidebar {
    margin: 0 16px;
    border-radius: 20px;
  }
}