@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800;900&display=swap');

:root {
  --color-black: #050505;
  --color-white: #fafafa;
  --color-gray-900: #111111;
  --color-gray-800: #1e1e1e;
  --color-gray-700: #2d2d2d;
  --color-gray-400: #888888;
  --color-gray-300: #aaaaaa;
  --color-gray-200: #e0e0e0;
  --color-accent: #c8c8c8;

  --font-main: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 5vw, 4.5rem); }
h3 { font-size: 1.25rem; letter-spacing: 0.03em; }

p {
  color: var(--color-gray-400);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

section {
  padding: 9rem 0;
  position: relative;
}

/* Eyebrow Label */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gray-400);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.4rem;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-white);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.45);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Legacy .btn fallback for older markup (no modifier) */
.btn:not(.btn-primary):not(.btn-outline) {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn:not(.btn-primary):not(.btn-outline):hover {
  background-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ========================
   NAVIGATION
======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background: rgba(5, 5, 5, 0.97);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

/* Logo icon uses background-image cropping to isolate just the dark circle */
.logo-img {
  display: none; /* hide the raw img; we use the .logo-icon-clip div instead */
}

.logo-icon-clip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: transparent;
}

/* Crop to show ONLY the circular emblem — hides the text + white bg from the source image */
.logo-icon-clip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/411fightwear-logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Footer logo — small circular icon matching header exactly */
.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: transparent;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.footer-logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/411fightwear-logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hide old footer img if still present */
.footer-logo-img {
  display: none;
}

/* ========================
   SIZE DISCLAIMER
======================== */
.size-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
}

.size-disclaimer p {
  font-size: 0.78rem;
  color: var(--color-gray-400);
  line-height: 1.65;
  font-weight: 400;
  font-style: italic;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--color-gray-400);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  transition: var(--transition-smooth);
  color: var(--color-gray-300);
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--color-white);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-smooth);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-gray-900);
  z-index: 200;
  padding: 6rem 2.5rem 2.5rem;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-200);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--color-white);
  padding-left: 0.5rem;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ========================
   ANIMATIONS
======================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Section Utilities */
.bg-darker {
  background-color: var(--color-gray-900);
}

.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  margin-bottom: 1.25rem;
}

/* ========================
   HERO SECTION
======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5,5,5,0.97) 0%, rgba(5,5,5,0.7) 55%, rgba(5,5,5,0.3) 100%);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gray-400);
  margin-bottom: 1.25rem;
}

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

.hero-content h1 {
  margin-bottom: 1.75rem;
  color: var(--color-white);
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 560px;
  font-weight: 300;
  color: var(--color-gray-300);
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.hero-scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================
   FEATURES SECTION
======================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 3rem 2.25rem;
  background: var(--color-black);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-white);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-gray-800);
  margin-bottom: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--color-white);
}

/* ========================
   PRODUCTS SECTION
======================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  transition: var(--transition-smooth);
}

.product-card > a {
  display: block;
  color: inherit;
}

.product-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #080808;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5,5,5,0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 1px;
}

.product-badge--new {
  background: var(--color-gray-700);
  color: var(--color-white);
}

.product-info {
  padding: 0 0.25rem;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--color-white);
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-meta .price {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-400);
}

.products-cta {
  text-align: center;
  margin-top: 4.5rem;
}

/* ========================
   TRUSTED BY FIGHTERS
======================== */
.trusted .section-title {
  margin-bottom: 4rem;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trusted-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.trusted-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.trusted-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(60%) contrast(1.1);
}

.trusted-card:hover .trusted-image img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(1);
}

.trusted-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 100%);
}

.trusted-caption {
  color: var(--color-white) !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ========================
   ABOUT / ETHOS SECTION
======================== */
.ethos-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.ethos-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.ethos-body p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.75rem;
  color: var(--color-gray-300);
}

/* ========================
   EMAIL SIGNUP SECTION
======================== */
.signup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.signup-text h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.signup-text p {
  font-size: 1rem;
  color: var(--color-gray-300);
}

.signup-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.signup-input-group input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.signup-input-group input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

.signup-input-group input::placeholder {
  color: var(--color-gray-400);
}

.signup-disclaimer {
  font-size: 0.8rem;
  color: var(--color-gray-400) !important;
}

/* ========================
   FOOTER
======================== */
.footer {
  padding: 5.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.75rem !important;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--color-gray-400);
  transition: var(--transition-smooth);
}

.social-link:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: var(--color-gray-400);
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-newsletter h4 {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-newsletter > p {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.4);
}

.newsletter-form input::placeholder {
  color: var(--color-gray-400);
}

.newsletter-form .btn {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-gray-400) !important;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--color-gray-400);
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* ========================
   INFO PAGES
======================== */
.info-page {
  display: flex;
  justify-content: center;
}

.content-container {
  max-width: 800px;
}

.content-container h1 {
  margin-bottom: 2rem;
}

.text-content p {
  margin-bottom: 1.5rem;
}

/* ========================
   SINGLE PRODUCT PAGE
======================== */
.single-product-container {
  display: flex;
  justify-content: center;
}

.product-split {
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  width: 100%;
}

.product-gallery {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-gray-900);
  border-radius: 2px;
  overflow: hidden;
}

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

.product-details h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.product-details .price {
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 2rem;
}

.product-options {
  margin-bottom: 2rem;
}

.product-options label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.product-options select {
  width: 100%;
  max-width: 300px;
  padding: 1rem;
  background: var(--color-gray-900);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  cursor: pointer;
}

.product-details .description {
  margin-bottom: 2rem;
}

.product-features-list {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.product-features-list ul {
  list-style-position: inside;
  color: var(--color-gray-400);
}

.product-features-list li {
  margin-bottom: 0.5rem;
}

/* ========================
   CART DRAWER
======================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -500px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--color-gray-900);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.55);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.close-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: var(--color-gray-400);
}

.cart-items {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 1.5rem;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  background: var(--color-black);
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-item-details .price {
  color: var(--color-white);
  font-weight: 600;
}

.remove-item {
  background: none;
  border: none;
  color: var(--color-gray-400);
  font-size: 0.8rem;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  text-decoration: underline;
  font-family: inherit;
}

.remove-item:hover {
  color: var(--color-white);
}

.cart-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--color-black);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

/* ========================
   RESPONSIVE DESIGN
======================== */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trusted-grid .trusted-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .ethos-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .signup-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: clamp(3rem, 12vw, 5rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 3rem); }

  section { padding: 6rem 0; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

  .trusted-grid .trusted-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .signup-input-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
}
