/*
Theme Name: Hypr Custom Theme by GT
Author: Godson T
Description: A custom WooCommerce theme for Hypr.
Version: 1.1.1
*/

/* =========================================
   1. VARIABLES & CONFIGURATION
   ========================================= */
:root {
  /* Colors */
  --primary: #ff3300;
  --primary-dark: #cc2900;
  --secondary: #00e5ff;
  --bg-dark: #020202;
  --surface-dark: #0a0a0a;
  --surface-light: #111111;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;

  /* Fonts */
  --font-display: "Teko", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Gradients */
  --gradient-fire: linear-gradient(
    135deg,
    #ff3300 0%,
    #ff8c00 50%,
    #ff3300 100%
  );

  /* Layout */
  --container-width: 1280px;
  --header-height: 80px;
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

button,
select {
  cursor: pointer;
  border: none;
  font-family: inherit;
  background: none;
}

/* =========================================
   3. UTILITIES
   ========================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-muted {
  color: var(--text-muted);
}

.text-glow {
  text-shadow: 0 0 15px rgba(255, 51, 0, 0.8);
}
.text-glow-blue {
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.8);
}

.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.font-display {
  font-family: var(--font-display);
}
.font-bold {
  font-weight: 700;
}

/* =========================================
   4. ANIMATIONS & KEYFRAMES
   ========================================= */
@keyframes pulse-fast {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #ff3300, 0 0 10px #ff3300;
  }
  100% {
    box-shadow: 0 0 20px #ff3300, 0 0 40px #ff3300;
  }
}

@keyframes flicker {
  0%,
  19.999%,
  22%,
  62.999%,
  64%,
  64.999%,
  70%,
  100% {
    opacity: 0.99;
  }
  20%,
  21.999%,
  63%,
  63.999%,
  65%,
  69.999% {
    opacity: 0.4;
  }
}

@keyframes lightning {
  0%,
  90%,
  100% {
    opacity: 0;
  }
  92% {
    opacity: 1;
    filter: brightness(3);
  }
  93% {
    opacity: 0;
  }
  94% {
    opacity: 0.5;
  }
  96% {
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rise {
  0% {
    bottom: -10px;
    transform: translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    transform: translateX(-20px);
    opacity: 0;
  }
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce-custom {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25%);
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* =========================================
   5. BACKGROUND PARTICLES
   ========================================= */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ember-particle {
  position: absolute;
  background: #ff4500;
  border-radius: 50%;
  opacity: 0;
  animation: rise 4s infinite linear;
}

/* =========================================
   6. NAVIGATION (WORDPRESS INTEGRATED)
   ========================================= */

/* 1. Main Navbar Container */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(2, 2, 2, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(
    --header-height
  ); /* Make sure --header-height is defined in :root, or use 80px */
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-border-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  opacity: 0.5;
}

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

/* 2. Logo Styles */
.brand-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: white;
  font-style: italic;
  letter-spacing: 0.05em;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.brand-logo:hover {
  transform: skewX(-12deg) scale(1.05);
}

/* 3. Navigation Container (Holds Menu + Buttons) */
.nav-links {
  display: none; /* Hidden on mobile */
  gap: 2rem;
  align-items: baseline;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex; /* Visible on desktop */
    align-items: center; /* Fix alignment */
  }
}

/* 4. WordPress Menu List Structure */
ul.wp-menu-list {
  display: flex;
  gap: 1.5rem; /* Space between links */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 5. THE LINKS (Applying your .nav-link styles to WordPress items) */
ul.wp-menu-list li a,
a.nav-link {
  /* Also targets the hardcoded Cart link */
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none; /* Remove default underline */
  display: inline-block;
}

/* The Animated Underline */
ul.wp-menu-list li a::after,
a.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Hover Effects */
ul.wp-menu-list li a:hover,
a.nav-link:hover {
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 51, 0, 0.8);
}

ul.wp-menu-list li a:hover::after,
a.nav-link:hover::after {
  width: 80%;
}

/* Active State (WordPress automatic class) */
ul.wp-menu-list li.current-menu-item a {
  color: var(--primary);
}
ul.wp-menu-list li.current-menu-item a::after {
  width: 80%;
}

/* 6. Login Button (Skewed Style) */
.btn-login {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: skewX(-10deg);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-login:hover {
  background: rgba(255, 51, 0, 0.2);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
  transform: skewX(-10deg) translateY(-2px);
}

/* 7. Mobile Menu Button */
.mobile-menu-btn {
  display: inline-flex;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.375rem;
  color: #9ca3af;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* =========================================
   7. HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-pattern {
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/black-felt.png");
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  filter: grayscale(1) contrast(1.25);
}

.bg-lightning {
  position: absolute;
  inset: 0;
  background: rgba(0, 229, 255, 0.1);
  z-index: 10;
  animation: lightning 4s infinite;
  mix-blend-mode: overlay;
}

.bg-grad-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg-dark),
    rgba(2, 2, 2, 0.5),
    transparent
  );
}

.bg-grad-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-dark),
    transparent,
    rgba(2, 2, 2, 0.8)
  );
}

.bg-stardust {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.4;
  animation: pulse-fast 2s infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

.hero-text-col {
  text-align: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-text-col {
    text-align: left;
  }
}

.hero-glow-blob {
  position: absolute;
  left: -5rem;
  top: -5rem;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 51, 0, 0.1),
    transparent,
    transparent
  );
  filter: blur(64px);
  z-index: -10;
}

/* Tagline */
.tagline {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-left: 4px solid var(--primary);
  background: linear-gradient(to right, rgba(255, 51, 0, 0.2), transparent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.tagline::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 6rem;
  line-height: 0.85;
  font-style: italic;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 10rem;
  }
}

.hero-description {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .hero-badges {
    justify-content: flex-start;
  }
}

.badge {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.25rem;
  transform: skewX(-10deg);
  transition: all 0.3s ease;
  cursor: default;
  border: 1px solid transparent;
}

.badge:hover {
  transform: skewX(-10deg) translateY(-5px);
}

.badge-content {
  transform: skewX(10deg);
  display: flex;
  align-items: center;
}

.badge.primary {
  border-color: rgba(255, 51, 0, 0.3);
}
.badge.primary:hover {
  background: rgba(255, 51, 0, 0.1);
  box-shadow: 0 0 20px rgba(255, 51, 0, 0.2);
}

.badge.secondary {
  border-color: rgba(0, 229, 255, 0.3);
}
.badge.secondary:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.badge-val {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  margin-right: 0.5rem;
  transition: color 0.3s;
}

.badge.primary .badge-val {
  color: var(--primary);
}
.badge.primary:hover .badge-val {
  color: white;
}

.badge.secondary .badge-val {
  color: var(--secondary);
}
.badge.secondary:hover .badge-val {
  color: white;
}

.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1;
}

.badge-label {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-sub {
  font-size: 10px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* CTA Buttons */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cta-wrapper {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .cta-wrapper {
    justify-content: flex-start;
  }
}

.btn-cta {
  position: relative;
  overflow: hidden;
  background: var(--gradient-fire);
  background-size: 200% 200%;
  animation: moveGradient 3s ease infinite;
  color: white;
  font-family: var(--font-display);
  font-size: 1.875rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.05em;
  padding: 1rem 3rem;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.btn-cta:hover {
  box-shadow: 0 0 50px rgba(255, 69, 0, 1);
  transform: translateY(-4px) scale(1.05);
}

.btn-cta .shine {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.3s;
}

.btn-cta:hover .shine {
  transform: translateX(0) skewX(-20deg);
}

.shipping-text {
  color: #9ca3af;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.icon-shipping {
  color: var(--primary);
  font-size: 0.875rem;
  margin-right: 0.5rem;
  animation: bounce-custom 2s infinite;
}

/* Hero Image Column */
.hero-img-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.blob-red {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 51, 0, 0.3), transparent);
  filter: blur(80px);
  opacity: 0.4;
  animation: pulse-fast 4s infinite alternate;
}

.blob-cyan {
  position: absolute;
  width: 80%;
  height: 80%;
  background: rgba(0, 229, 255, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  transform: translate(2.5rem, -2.5rem);
  mix-blend-mode: screen;
}

.svg-deco {
  position: absolute;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
  pointer-events: none;
}

.svg-deco.cyan {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  color: var(--secondary);
  opacity: 0.6;
  z-index: 20;
  animation: flicker 3s infinite;
}

.svg-deco.red {
  bottom: 2.5rem;
  left: 0;
  width: 12rem;
  height: 12rem;
  color: var(--primary);
  opacity: 0.4;
  z-index: 0;
  transform: rotate(180deg);
}

.product-img-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 18rem;
  animation: float 6s ease-in-out infinite;
}

.product-img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.9));
  transform: scale(1.1);
  transition: transform 0.3s;
}

.product-img-wrapper:hover .product-img {
  transform: scale(1.15) rotate(2deg);
}

.product-shadow {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 3rem;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(24px);
  border-radius: 50%;
}

/* =========================================
   8. STATS BAR
   ========================================= */
.stats-bar {
  position: relative;
  background: var(--surface-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 20;
}

.stats-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  position: relative;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
  transition: background-color 0.3s;
  overflow: hidden;
}

.stat-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
  border-right: none;
}

.stat-bg-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-item:hover .stat-bg-hover {
  opacity: 1;
}

.stat-item.primary:hover .stat-bg-hover {
  background: linear-gradient(to bottom, rgba(255, 51, 0, 0.1), transparent);
}

.stat-item.secondary:hover .stat-bg-hover {
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.1), transparent);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  font-style: italic;
  transition: transform 0.3s;
}

.stat-item:hover .stat-value {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-unit {
  font-size: 1.125rem;
}

.stat-item.primary .stat-unit {
  color: var(--primary);
}
.stat-item.secondary .stat-unit {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

/* =========================================
   9. FEATURES SECTION
   ========================================= */
.features-section {
  background-color: #050505;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.bg-carbon {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: white;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.title-gradient {
  background: linear-gradient(to right, var(--primary), orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-underline {
  width: 6rem;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  margin: 1rem auto 0;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  overflow: hidden;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 51, 0, 0.5);
  transform: translateY(-5px);
}
.feature-card.secondary:hover {
  border-color: rgba(0, 229, 255, 0.5);
}

.feature-hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover .feature-hover-bg {
  opacity: 1;
}
.feature-card.primary .feature-hover-bg {
  background: linear-gradient(to bottom, rgba(255, 51, 0, 0.05), transparent);
}
.feature-card.secondary .feature-hover-bg {
  background: linear-gradient(to bottom, rgba(0, 229, 255, 0.05), transparent);
}

.feature-icon-box {
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}

.feature-card.primary:hover .feature-icon-box {
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
  border-color: rgba(255, 51, 0, 0.5);
}

.feature-card.secondary:hover .feature-icon-box {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
  border-color: rgba(0, 229, 255, 0.5);
}

.feature-icon {
  font-size: 1.875rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-card.primary .feature-icon {
  color: var(--primary);
}
.feature-card.secondary .feature-icon {
  color: var(--secondary);
}

.feature-title {
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-align: center;
  transition: color 0.3s;
}

.feature-card.primary:hover .feature-title {
  color: var(--primary);
}
.feature-card.secondary:hover .feature-title {
  color: var(--secondary);
}

.feature-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  transition: color 0.3s;
}

.feature-card:hover .feature-desc {
  color: #d1d5db;
}

/* =========================================
   10. HYPR NATION SECTION (PULSE)
   ========================================= */
.nation-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.nation-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.15),
    transparent 70%
  );
  animation: pulse-fast 0.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.nation-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .nation-content {
    flex-direction: row;
  }
}

.info-col {
  width: 100%;
  display: none;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .info-col {
    display: block;
    width: 33.333%;
  }
}

.info-col.left {
  text-align: right;
}
.info-col.right {
  text-align: left;
}
.info-col .space {
  height: 8rem;
}

.info-item {
  position: relative;
  cursor: pointer;
}

.connector {
  position: absolute;
  top: 50%;
  height: 2px;
  width: 6rem;
  transition: width 0.3s;
}

.info-item:hover .connector {
  width: 8rem;
}

.info-col.left .connector {
  right: -6rem;
  background: linear-gradient(
    to left,
    var(--primary),
    rgba(255, 51, 0, 0.5),
    transparent
  );
}
.info-col.left .connector.secondary {
  background: linear-gradient(
    to left,
    var(--secondary),
    rgba(0, 229, 255, 0.5),
    transparent
  );
}

.info-col.right .connector {
  left: -6rem;
  background: linear-gradient(
    to right,
    var(--primary),
    rgba(255, 51, 0, 0.5),
    transparent
  );
}
.info-col.right .connector.secondary {
  background: linear-gradient(
    to right,
    var(--secondary),
    rgba(0, 229, 255, 0.5),
    transparent
  );
}

.info-dot {
  position: absolute;
  top: 50%;
  margin-top: -0.375rem;
  width: 0.75rem;
  height: 0.75rem;
  transform: rotate(45deg);
}

.info-col.left .info-dot {
  right: -0.5rem;
}
.info-col.right .info-dot {
  left: -0.5rem;
}

.info-dot.primary {
  background: var(--primary);
  box-shadow: 0 0 10px #ff4500;
}
.info-dot.secondary {
  background: var(--secondary);
  box-shadow: 0 0 10px #00e5ff;
}

.info-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-style: italic;
  line-height: 1;
}

.info-item.primary .info-title {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(255, 69, 0, 0.6);
}
.info-item.secondary .info-title {
  color: white;
  transition: color 0.3s;
}
.info-item.secondary:hover .info-title {
  color: var(--secondary);
}

.info-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Center Jar Animation */
.center-jar-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2.5rem 0;
  z-index: 20;
}

@media (min-width: 768px) {
  .center-jar-wrapper {
    width: 33.333%;
  }
}

.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.orbit-1 {
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: scale(1.25);
  animation: pulse 2s infinite;
  opacity: 0.2;
}
.orbit-2 {
  border: 1px dashed rgba(255, 51, 0, 0.3);
  transform: scale(1.1);
  animation: spin-slow 10s linear infinite;
  opacity: 0.4;
}
.orbit-3 {
  border: 1px dotted rgba(0, 229, 255, 0.3);
  transform: scale(1.15);
  animation: spin-slow 15s linear infinite reverse;
  opacity: 0.3;
}

.center-jar-img {
  position: relative;
  z-index: 10;
  max-width: 320px;
  filter: drop-shadow(0 0 60px rgba(0, 229, 255, 0.4));
  transition: transform 0.5s;
}

.center-jar-img:hover {
  transform: scale(1.05) rotate(2deg);
}

.flavor-tag {
  position: absolute;
  bottom: -2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 229, 255, 0.5);
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  color: var(--secondary);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  z-index: 20;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transform: skewX(-10deg);
}

/* Mobile Info Blocks */
.mobile-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .mobile-info {
    display: none;
  }
}

.mobile-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 0.25rem;
  border-left: 4px solid;
}

.mobile-card.primary {
  border-color: var(--primary);
}
.mobile-card.secondary {
  border-color: var(--secondary);
}

.mobile-card h3 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-style: italic;
}

.mobile-card.primary h3 {
  color: var(--primary);
}
.mobile-card.secondary h3 {
  color: white;
}
.mobile-card p {
  color: #9ca3af;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* =========================================
   11. REVIEWS SECTION
   ========================================= */
.reviews-section {
  background: #080808;
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

/* Swiper Specific */
.reviews-slider {
  padding-bottom: 3rem !important;
}

.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  opacity: 1 !important;
  box-shadow: 0 0 10px var(--primary);
}

.review-card {
  background: var(--surface-dark);
  padding: 2rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.review-card.h-100 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  font-size: 6rem;
  color: white;
  opacity: 0.05;
  transition: opacity 0.3s;
}

.review-card:hover .quote-icon {
  opacity: 0.1;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 0.875rem;
}

.review-text {
  color: #d1d5db;
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  margin-top: auto;
}

.reviewer img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  filter: grayscale(0.5);
  object-fit: cover;
  transition: all 0.3s;
}

.review-card:hover .reviewer img {
  filter: grayscale(0);
  transform: scale(1.1);
  border-color: white;
}

.reviewer-info {
  margin-left: 1rem;
}
.reviewer-name {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.05em;
  margin: 0;
}

.reviewer-meta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =========================================
   12. FAQ SECTION
   ========================================= */
.faq-section {
  padding: 5rem 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

details {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

details[open],
details:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  color: white;
  font-weight: 500;
  transition: background-color 0.2s;
  user-select: none;
}

summary:hover {
  background: rgba(255, 255, 255, 0.05);
}
summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  font-size: 1.125rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.3s;
}

details[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
}

/* =========================================
   13. STICKY CART
   ========================================= */
.sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 51, 0, 0.4);
  z-index: 90;
  padding: 1rem 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.3s;
}

.sticky-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  animation: pulse-fast 2s infinite;
}

.cart-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .cart-container {
    flex-direction: row;
  }
}

.product-info {
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 640px) {
  .product-info {
    margin-bottom: 0;
  }
}

.product-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-strike {
  font-family: var(--font-display);
  color: #6b7280;
  text-decoration: line-through;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.6;
}

.price-sale {
  font-family: var(--font-display);
  color: var(--primary); /* Highlight color in sticky cart */
  font-size: 1.5rem;
  font-weight: 800;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .cart-actions {
    width: auto;
  }
}

.select-wrapper {
  position: relative;
  width: 33%;
}

@media (min-width: 640px) {
  .select-wrapper {
    width: auto;
  }
}

select {
  appearance: none;
  -webkit-appearance: none;
  background: #111;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 2rem 0.75rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: border-color 0.3s;
}

select:focus,
select:hover {
  outline: none;
  border-color: var(--primary);
}

.select-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding-right: 0.5rem;
  color: white;
  pointer-events: none;
}

.btn-add {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--gradient-fire);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-style: italic;
  padding: 0.5rem 2.5rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .btn-add {
    flex: none;
  }
}

.btn-add:hover {
  box-shadow: 0 0 25px rgba(255, 69, 0, 0.7);
  transform: translateY(-2px);
}

.btn-add span {
  position: relative;
  z-index: 10;
  transition: letter-spacing 0.3s;
}

.btn-add:hover span {
  letter-spacing: 0.1em;
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.3s;
}

.btn-add:hover .btn-shine {
  transform: translateX(0) skewX(-20deg);
}

/* =========================================
   14. FOOTER
   ========================================= */
footer {
  background: black;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 10rem 0; /* Extra bottom padding for sticky cart */
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 51, 0, 0.05), transparent);
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: white;
  font-style: italic;
  letter-spacing: 0.05em;
}

.footer-brand p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 24rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}
.social-links a {
  color: #9ca3af;
  transition: all 0.2s;
}
.social-links a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

.footer-heading {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 51, 0, 0.3);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

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

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  color: #374151;
  font-size: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .copyright {
    text-align: left;
  }
}

.payment-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  opacity: 0.4;
  color: white;
}

@media (min-width: 768px) {
  .payment-icons {
    margin-top: 0;
  }
}

/* =========================================
   13. SHOP PAGE STYLES
   ========================================= */
.page-header {
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  background: radial-gradient(
    circle at center,
    rgba(30, 30, 30, 0.5),
    transparent
  );
}

/* Compact Header Modifier */
.page-header.compact-header {
  padding: 8rem 0 2.5rem;
  min-height: auto !important;
}

.page-header.compact-header .page-title {
  font-size: 3rem;
  margin-bottom: 0.25rem;
}

.page-header.compact-header .tagline {
  margin-bottom: 0.75rem !important;
  font-size: 0.7rem;
  padding: 0.15rem 0.75rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  color: white;
  text-transform: uppercase;
  font-style: italic;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto;
}

.shop-section {
  padding: 0 0 8rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--surface-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 51, 0, 0.05),
    transparent
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover {
  border-color: rgba(255, 51, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-8px);
}

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

.card-image-content {
  position: relative;
  padding: 0.5rem;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0; /* Match index.php requirement */
  transition: background 0.3s ease;
}

.card-image-content img {
  max-width: 85%; /* Increased from previous implied size */
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 20px 40px var(--card-glow, rgba(0, 0, 0, 0.6)));
}

.product-card:hover .card-image-content img {
  transform: scale(1.1) rotate(-3deg) translateY(-10px);
}

.card-details {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: block;
  text-transform: uppercase;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.card-title span {
  display: block;
}

.card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.stat-mini {
  text-align: center;
  position: relative;
}

.stat-mini:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-mini .stat-val {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
  font-style: italic;
}

.stat-mini .stat-label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  margin-top: auto;
}

.price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-strike {
  text-decoration: line-through;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.rating {
  display: flex;
  align-items: center;
  color: #fbbf24;
  font-size: 0.875rem;
  gap: 0.25rem;
  background: rgba(251, 191, 36, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.rating i {
  font-size: 1rem;
}

.btn-card-add {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.1em;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  overflow: hidden;
  cursor: pointer;
}

.btn-card-add::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-fire);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-card-add span,
.btn-card-add i {
  position: relative;
  z-index: 1;
}

.btn-card-add:hover {
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 20px rgba(255, 51, 0, 0.5);
  transform: scale(1.02);
}

.btn-card-add:hover::before {
  transform: translateX(0);
}

.btn-card-add i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.btn-card-add:hover i {
  transform: translateX(5px);
}

/* =========================================
   14. SINGLE PRODUCT PAGE STYLES
   ========================================= */
.product-hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-main-img {
  max-width: 80%;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
  animation: float 6s ease-in-out infinite;
}

.product-info-col {
  position: relative;
  z-index: 10;
}

.product-title-main {
  font-family: var(--font-display);
  font-size: 3.5rem; /* Reduced from 5rem */
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.product-price-large {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline; /* Align prices to baseline */
  gap: 1.5rem;
  flex-wrap: wrap;
}

.price-strike-large {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
  opacity: 0.6;
}

.price-highlight {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: white;
  text-shadow: 0 0 20px var(--primary);
  font-weight: 900;
  line-height: 1;
}

.price-main {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}

.product-desc-large {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.product-features-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-mini-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-mini-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border-radius: 4px;
}

.feature-mini-text h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.feature-mini-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-details-section {
  padding: 6rem 0;
  background: var(--surface-dark);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .details-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.supplement-facts {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  padding: 2.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.supplement-facts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}

.facts-title {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-style: italic;
  color: white;
}

.facts-serving {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
}

.facts-table th,
.facts-table td {
  text-align: left;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.facts-table th {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.facts-row-bold {
  font-weight: 700;
  color: white;
}

.facts-row-bold td {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.facts-indent {
  padding-left: 1.5rem !important;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Tabs System */
.product-tabs-container {
  margin-top: 4rem;
}

.tabs-nav {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-style: italic;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.tab-btn.active {
  color: white;
  text-shadow: 0 0 15px var(--primary);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blue-theme .supplement-facts::before {
  background: var(--secondary);
}
.blue-theme .facts-table th {
  color: var(--secondary);
}
.blue-theme .tab-btn::after {
  background: var(--secondary);
}
.blue-theme .tab-btn.active {
  text-shadow: 0 0 15px var(--secondary);
}

.ingredients-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 4px;
}

.ingredients-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: white;
}

.ingredients-list {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.9375rem;
}

.usage-section {
  padding: 6rem 0;
  text-align: center;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.usage-card {
  background: var(--surface-light);
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.usage-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.usage-step {
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.blue-theme .text-primary {
  color: var(--secondary);
}
.blue-theme .btn-card-add,
.blue-theme .btn-add {
  border-color: var(--secondary);
  color: var(--secondary);
}
.blue-theme .btn-card-add:hover,
.blue-theme .btn-add:hover {
  background: var(--secondary);
  color: black;
}
.blue-theme .feature-mini-icon {
  color: var(--secondary);
}
.blue-theme .usage-step {
  color: var(--secondary);
}
.blue-theme .tagline {
  border-left-color: var(--secondary);
  color: var(--secondary);
}
.blue-theme .btn-cta {
  background: linear-gradient(135deg, #00e5ff 0%, #0099ff 100%);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

/* =========================================
   24. CHECKOUT PAGE STYLES
   ========================================= */
.checkout-section {
  padding: 4rem 0;
  position: relative;
  z-index: 10;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr 450px;
  }
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 1rem;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.select-styled {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 0 24 24' width='24' fill='%239ca3af'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.order-summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.summary-item .item-name {
  color: var(--text-muted);
}

.summary-item .item-price {
  color: white;
  font-weight: 600;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method-item {
  position: relative;
}

.payment-method-item input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.payment-method-item label {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method-item input[type="radio"]:checked + label {
  border-color: var(--secondary);
  background: rgba(0, 229, 255, 0.05);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.method-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: white;
}

.payment-method-item input[type="radio"]:checked + label .method-title {
  color: var(--secondary);
}

.method-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.privacy-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}


/* Extra Small Screens (Mobile) */
@media (max-width: 480px) {
  .page-header {
    min-height: 35vh !important;
  }

  .page-title {
    font-size: clamp(2.5rem, 7vw, 4rem) !important;
  }

  .tagline {
    font-size: 0.85rem;
  }
}

/* =========================================
   14. ORDER SUCCESS PAGE
   ========================================= */
.success-section {
  padding: 8rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.success-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.success-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.4), transparent 70%);
  animation: success-pulse 2s infinite;
}

.success-icon-bg {
  position: absolute;
  inset: 0;
  background: var(--surface-light);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
  transform: rotate(45deg);
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary);
  z-index: 5;
  animation: check-draw 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: white;
}

.success-subtitle {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-info-card {
  margin-top: 2rem;
  text-align: left;
}

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 640px) {
  .order-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.info-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.info-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.success-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 4rem;
}

@media (max-width: 640px) {
  .success-actions {
    flex-direction: column;
  }
}

.btn-track {
  background: var(--gradient-fire);
  color: white;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  text-transform: uppercase;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.btn-track:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 51, 0, 0.4);
}

.btn-continue {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  text-transform: uppercase;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.3s ease;
}

.btn-continue:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: white;
}

@keyframes success-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.4;
  }
}

@keyframes check-draw {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

.about-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.mission-section {
  padding: 100px 0;
  position: relative;
  background: var(--surface-dark);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 2rem;
}

.story-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-image {
  position: relative;
}

.image-frame {
  position: relative;
  border: 1px solid rgba(255, 51, 0, 0.3);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  transform: rotate(-2deg);
  transition: all 0.5s ease;
}

.image-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--primary);
}

.image-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.2);
  transition: all 0.5s ease;
}

.image-frame:hover img {
  filter: grayscale(0) contrast(1);
}

.frame-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(255, 51, 0, 0.1), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-frame:hover .frame-glow {
  opacity: 1;
}

.story-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-style: italic;
  line-height: 1;
  margin-bottom: 2rem;
}

.story-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.story-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.story-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 51, 0, 0.3);
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-top: 0.5rem;
}

.values-section {
  padding: 100px 0;
  position: relative;
  background: #050505;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  background: rgba(255, 51, 0, 0.05);
  border-color: var(--primary);
  transform: translateY(-10px);
}

.value-icon {
  margin-bottom: 2rem;
}

.value-icon i {
  font-size: 3rem;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 51, 0, 0.4);
}

.value-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.cta-section {
  padding: 120px 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 51, 0, 0.15) 0%,
    transparent 70%
  );
}

.cta-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.nav-link.active {
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 51, 0, 0.8);
}

.nav-link.active::after {
  width: 80%;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Contact Hero */
.contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Contact Main Section */
.contact-main {
  padding: 5rem 0;
  background-color: #050505;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Contact Form Styles */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  opacity: 0.5;
}

.form-header {
  margin-bottom: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .form-title {
    font-size: 3rem;
  }
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-label i {
  font-size: 1.125rem;
  color: var(--primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 51, 0, 0.1);
  background: rgba(0, 0, 0, 0.6);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff3300' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  position: relative;
  overflow: hidden;
  background: var(--gradient-fire);
  background-size: 200% 200%;
  animation: moveGradient 3s ease infinite;
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.btn-submit:hover {
  box-shadow: 0 0 50px rgba(255, 69, 0, 0.8);
  transform: translateY(-3px) scale(1.02);
}

.btn-submit .shine {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.5s;
}

.btn-submit:hover .shine {
  transform: translateX(100%) skewX(-20deg);
}

/* Contact Info Cards */
.contact-info-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-info-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }
}

.info-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.info-card.secondary:hover {
  border-color: var(--secondary);
}

.info-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.info-card.primary:hover .info-card-bg {
  background: linear-gradient(135deg, rgba(255, 51, 0, 0.05), transparent);
  opacity: 1;
}

.info-card.secondary:hover .info-card-bg {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), transparent);
  opacity: 1;
}

.info-card-icon {
  position: relative;
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.info-card.primary:hover .info-card-icon {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 51, 0, 0.4);
}

.info-card.secondary:hover .info-card-icon {
  border-color: var(--secondary);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.info-card-icon i {
  font-size: 1.75rem;
  transition: all 0.3s;
}

.info-card.primary .info-card-icon i {
  color: var(--primary);
}

.info-card.secondary .info-card-icon i {
  color: var(--secondary);
}

.info-card:hover .info-card-icon i {
  transform: scale(1.1) rotate(5deg);
}

.info-card-title {
  position: relative;
  z-index: 10;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.info-card.primary:hover .info-card-title {
  color: var(--primary);
}

.info-card.secondary:hover .info-card-title {
  color: var(--secondary);
}

.info-card-text {
  position: relative;
  z-index: 10;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
}

.info-card-text a {
  color: var(--text-main);
  transition: color 0.3s;
}

.info-card.primary .info-card-text a:hover {
  color: var(--primary);
}

.info-card.secondary .info-card-text a:hover {
  color: var(--secondary);
}

/* Social CTA Section */
.social-cta-section {
  padding: 5rem 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.1) 0%,
    transparent 70%
  );
  position: relative;
}

.social-cta-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin: 1.5rem auto 3rem;
  max-width: 600px;
}

.social-links-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .social-links-large {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .social-links-large {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}

.social-link-btn:hover::before {
  opacity: 0.1;
}

.social-link-btn:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 51, 0, 0.3);
}

.social-link-btn i {
  position: relative;
  z-index: 10;
  font-size: 2.5rem;
  color: var(--primary);
  transition: all 0.3s;
}

.social-link-btn:hover i {
  transform: scale(1.15) rotate(5deg);
  color: white;
}

.social-link-btn span {
  position: relative;
  z-index: 10;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  transition: color 0.3s;
}

.social-link-btn:hover span {
  color: white;
}

/* =========================================
   MOBILE MENU STYLES
   ========================================= */

/* 1. Default State (Desktop) - Hide the Hamburger */
.mobile-menu-btn {
  display: none; /* Hidden on big screens */
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 101; /* Above the menu */
}

/* 2. Mobile Breakpoint (Phones & Tablets) */
@media screen and (max-width: 768px) {
  /* Show the hamburger icon */
  .mobile-menu-btn {
    display: block;
  }

  /* Style the Menu Container */
  .nav-links {
    position: fixed;
    /* Matches your navbar height (approx 80px) */
    top: 80px;
    left: 0;
    width: 100%;

    /* THEME: Dark background with a slight blur */
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);

    /* Layout: Stack items vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 25px;

    /* THEME: Orange glow at the bottom */
    border-bottom: 2px solid #ff8c00;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);

    /* Animation: Slide up and hide by default */
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 90;
  }

  /* The 'Active' class is added by your JS when clicked */
  .nav-links.active {
    transform: translateY(0); /* Slide down */
  }

  /* Make links bigger for touch targets */
  .nav-links a {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }

  /* Make the login button stretch full width */
  .btn-login {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* =========================================
   MOBILE ADMIN BAR FIX
   ========================================= */
/* If the admin bar is visible, push the mobile menu down further */
.admin-bar .nav-links {
  top: 80px; /* 80px (navbar) + 32px (admin bar) */
}

/* Mobile admin bar is taller (46px), so we adjust again */
@media screen and (max-width: 600px) {
  .admin-bar .nav-links {
    top: 126px; /* 80px + 46px */
  }
}

/* =========================================
   ADMIN BAR FIX
   ========================================= */

/* When the admin bar is present, push the navbar down by 32px */
.admin-bar .navbar {
  top: 32px !important;
}

/* On mobile screens, the admin bar is slightly taller (46px) */
@media screen and (max-width: 782px) {
  .admin-bar .navbar {
    top: 46px !important;
  }
}

/* Default Theme (Red/Orange) - Defined in :root */
:root {
  --primary: #ff3300;
  --secondary: #ff8c00;
}

/* Blue Theme Override */
body.blue-theme {
  --primary: #00ccff; /* Cyan/Blue */
  --secondary: #0066ff; /* Darker Blue */
}

/* Green Theme Override (Optional for future use) */
body.green-theme {
  --primary: #39ff14;
  --secondary: #008f39;
}

/* =========================================
   PRODUCT DESCRIPTION STYLES (Standard Tags)
   ========================================= */

/* 1. General Container Text */
.wp-content-style {
  font-family: "Inter", sans-serif;
  color: #d1d5db; /* Light gray for readability */
  font-size: 1.05rem;
  font-weight: 300;
}

/* 2. Paragraphs - Better Line Height & Spacing */
.wp-content-style p {
  line-height: 1.8; /* Opens up the text */
  margin-bottom: 1.5rem; /* Space between paragraphs */
  opacity: 0.9;
}

/* 3. Headings (H3 & H4) - HYPR Style */
.wp-content-style h3,
.wp-content-style h4 {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  line-height: 1.1;
}

.wp-content-style h3 {
  font-size: 2.2rem;
  border-left: 4px solid var(--primary); /* Orange accent line */
  padding-left: 1rem;
  /* Optional: Small glow */
  text-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
}

.wp-content-style h4 {
  font-size: 1.5rem;
  color: var(--secondary); /* Orange/Yellow for sub-headings */
}

/* 4. Lists (ul) - Custom Bullet Points */
.wp-content-style ul {
  list-style: none; /* Remove default dots */
  padding: 0;
  margin: 1.5rem 0;
}

.wp-content-style ul li {
  position: relative;
  padding-left: 1.5rem; /* Space for the custom bullet */
  margin-bottom: 0.8rem; /* Space between items */
  line-height: 1.6;
}

/* Create a custom square bullet */
.wp-content-style ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px; /* Align with text */
  width: 6px;
  height: 6px;
  background-color: var(--primary); /* Uses your theme color */
  box-shadow: 0 0 8px var(--primary); /* Glowing effect */
}

/* 5. Strong Tags - Make 'Pump Charge:' pop */
.wp-content-style strong,
.wp-content-style b {
  color: #fff;
  font-weight: 700;
}

/* =========================================
   DARK THEME CART STYLES (FINAL FIXED LAYOUT)
   ========================================= */

/* 1. Page Background & Layout */
.woocommerce-cart .cart-section {
  background: #000;
  padding: 4rem 0;
  min-height: 80vh;
}

/* 2. The Main Cart Table Container (SIDE BY SIDE FIX) */
.woocommerce-cart .woocommerce {
  display: flex;
  flex-flow: row nowrap; /* Force single row */
  justify-content: space-between; /* Push columns apart */
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* The Left Side (Product Table) */
.woocommerce-cart .woocommerce-cart-form {
  width: 65%; /* Fixed width to force layout */
  flex-shrink: 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
}

/* Table Styling */
.woocommerce table.shop_table {
  border: none;
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

/* Headers */
.woocommerce table.shop_table th {
  font-family: "Teko", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  background: transparent;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

/* Cells */
.woocommerce table.shop_table td {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

/* Product Info */
.woocommerce table.shop_table td.product-thumbnail img {
  width: 80px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.woocommerce table.shop_table td.product-name a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}

/* Price & Subtotal */
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Quantity Input - Remove Ugly Spinners */
.woocommerce .quantity .qty {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 60px;
  padding: 8px;
  text-align: center;
  border-radius: 4px;
  -moz-appearance: textfield;
}
.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove 'X' Button */
.woocommerce a.remove {
  color: #9ca3af !important;
  font-size: 1.5rem;
  font-weight: 300;
  transition: color 0.3s;
  text-decoration: none;
  display: inline-block;
}
.woocommerce a.remove:hover {
  color: #ef4444 !important;
}

/* 3. COUPON & ACTIONS ROW (FIXED) */
.woocommerce table.shop_table td.actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-bottom: none;
}

.coupon {
  display: flex;
  gap: 10px;
  align-items: center;
}

.coupon input.input-text {
  width: 180px !important;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 15px;
  color: white;
  border-radius: 4px;
  outline: none;
  margin: 0;
}

.coupon button.button {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.coupon button.button:hover {
  background: var(--primary);
  color: white;
}

/* Update Cart Button */
button[name="update_cart"] {
  background: transparent;
  color: #9ca3af;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
}
button[name="update_cart"]:hover {
  background: #fff;
  color: #000;
}

/* 4. CART TOTALS (RIGHT SIDEBAR FIX) */
.cart-collaterals {
  width: 32%; /* Fixed width for sidebar */
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.cart-collaterals .cart_totals {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  width: 100% !important;
  float: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cart_totals h2 {
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.cart_totals table.shop_table {
  border: none;
  margin-bottom: 20px;
}

.cart_totals th {
  font-weight: 400;
  text-transform: none;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #9ca3af;
}

.cart_totals td {
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 700;
  color: #fff;
}

.cart_totals .order-total .amount {
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 81, 0, 0.3);
}

/* Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: linear-gradient(90deg, #ff8c00 0%, #ff3300 100%);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  box-shadow: 0 0 20px rgba(255, 81, 0, 0.6);
  transform: translateY(-2px);
  color: white;
}

/* 5. MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
  .woocommerce-cart .woocommerce {
    flex-direction: column; /* Stack them vertical */
    gap: 2rem;
  }

  .woocommerce-cart .woocommerce-cart-form,
  .cart-collaterals {
    width: 100%; /* Full width on mobile */
  }

  .woocommerce table.shop_table td.actions {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .coupon {
    width: 100%;
  }

  .coupon input.input-text {
    width: 100% !important;
    flex: 1;
  }

  button[name="update_cart"] {
    width: 100%;
    text-align: center;
  }
}

/* =========================================
   DARK THEME CHECKOUT STYLES (FIXED)
   ========================================= */

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  width: 100%;
}
/* 1. Main Section Wrapper */
.checkout-section {
  background: #000;
  padding: 4rem 0;
  min-height: 100vh;
}

/* 2. Layout (Billing vs Order Info) */

.woocommerce-checkout .col2-set {
  width: 58%;
  float: left;
  margin-right: 2%;
  display: flex;
  flex-direction: column;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  width: 40%;
  float: right;
  clear: right;
}

/* Clear floats */
.woocommerce-checkout::after {
  content: "";
  display: table;
  clear: both;
}

/* Stack vertically on mobile */
@media (max-width: 900px) {
  .woocommerce-checkout .col2-set,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    width: 100%;
    float: none;
    margin-right: 0;
  }
}

/* 3. HEADINGS */
.woocommerce-checkout h3 {
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 2.2rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 2rem;
}

/* 4. FORM FIELDS & INPUTS (The Fix) */

/* Wrapper for each field */
.woocommerce form .form-row {
  margin-bottom: 1.5rem;
  display: block;
}

/* Labels */
.woocommerce form .form-row label {
  display: block;
  color: #9ca3af; /* Gray text */
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.2;
}

/* Input Fields (Text, Email, Phone, TextArea) */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background-color: #0a0a0a !important; /* Dark Black */
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  padding: 14px 16px !important;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Focus State (Glowing Border) */
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--primary) !important;
  background-color: #111 !important;
  box-shadow: 0 0 10px rgba(255, 81, 0, 0.2);
}

/* Fix "First Name" and "Last Name" Alignment */
.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  width: 48%;
  float: left;
}
.woocommerce form .form-row-last {
  float: right;
}
.woocommerce form .form-row-wide {
  clear: both;
  width: 100%;
}

/* 5. DROPDOWN FIX (The White Box Issue) */
/* WooCommerce uses "Select2" which creates those white dropdowns. We must override them. */

/* The main box */
.select2-container .select2-selection--single {
  height: 50px !important;
  background-color: #0a0a0a !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 6px !important;
}

/* The text inside */
.select2-container .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: 50px !important;
  padding-left: 16px !important;
}

/* The arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent !important;
}

/* The Dropdown Menu (Popup) */
.select2-dropdown {
  background-color: #111 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

/* Search box inside dropdown */
.select2-search__field {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #333 !important;
}

/* 6. YOUR ORDER BOX (Glassmorphism) */
#order_review {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

/* Table Text */
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.woocommerce-checkout table.shop_table tfoot th {
  font-family: "Teko", sans-serif;
  font-size: 1.2rem;
  color: #9ca3af;
}

/* 7. PLACE ORDER BUTTON */
#place_order {
  background: linear-gradient(90deg, #ff8c00 0%, #ff3300 100%);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 1rem;
  width: 100%;
  border-radius: 4px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

#place_order:hover {
  box-shadow: 0 0 25px var(--primary);
  transform: translateY(-2px);
  color: #fff;
}

/* =========================================
   CART COUNT BADGE
   ========================================= */
.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary); /* Your Orange/Red Color */
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px var(--primary); /* Glowing effect */
}

/* =========================================
   DARK THEME MY ACCOUNT STYLES
   ========================================= */

/* 1. Wrapper */
.account-section {
  background: #000;
  padding: 4rem 0;
  min-height: 80vh;
}

/* 2. LOGIN / REGISTER GRID */
.woocommerce-account .u-columns {
  display: flex !important;
  flex-wrap: wrap;
  gap: 5rem; /* Increased gap for better separation */
  justify-content: center;
  margin-top: 4rem; /* More space from header */
  margin-bottom: 4rem;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border */
  padding: 3rem;
  border-radius: 4px; /* Slightly sharper corners for modern look */
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.woocommerce-account .u-column1:hover,
.woocommerce-account .u-column2:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
}

/* Form inputs styling */
.woocommerce-form-row {
  margin-bottom: 2rem; /* Increased vertical spacing between inputs */
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  color: #d1d5db;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.woocommerce form .form-row .input-text {
  width: 100%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border-radius: 2px;
  transition: all 0.3s;
}

.woocommerce form .form-row .input-text:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 1px var(--primary);
  background: #050505;
}

/* Buttons */
.woocommerce-form-login__submit,
.woocommerce-form-register__submit {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem !important;
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(to right, var(--primary), #ff6b00) !important;
  color: white !important;
  border: none !important;
  border-radius: 2px !important;
  cursor: pointer;
  transition: all 0.3s !important;
}

.woocommerce-form-login__submit:hover,
.woocommerce-form-register__submit:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

/* Checkbox styling */
.woocommerce-form__input-checkbox {
  accent-color: var(--primary);
  margin-right: 0.5rem !important;
}

.woocommerce-form-login__rememberme {
  margin: 1rem 0 1.5rem !important;
  display: flex !important;
  align-items: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

.woocommerce h2 {
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

/* =========================================
   3. DASHBOARD LAYOUT & STYLING (THE HYPR VIBE)
   ========================================= */

/* A. The Main Container (Flexbox for Alignment) */
.woocommerce-account .woocommerce {
  display: flex;
  align-items: flex-start;
  gap: 3rem; /* Space between sidebar and content */
  margin-top: 2rem;
}

/* B. The Sidebar (Control Panel Look) */
.woocommerce-MyAccount-navigation {
  width: 280px; /* Fixed width */
  flex-shrink: 0; /* Don't shrink */
  background: #0a0a0a; /* Dark Card Bg */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 0; /* Vertical padding */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Deep shadow */
}

/* Sidebar List Reset */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: none; /* Resetting your old border */
  background: transparent;
  border-radius: 0;
}

/* Sidebar Links */
.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 1.2rem 2rem;
  color: #9ca3af; /* Muted text */
  text-decoration: none;
  font-family: "Teko", sans-serif; /* Using the Brand Font */
  font-size: 1.3rem; /* Larger text */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Slide text & Glow */
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #fff;
  padding-left: 2.5rem; /* Slide right */
  background: rgba(255, 255, 255, 0.03);
  text-shadow: 0 0 10px var(--primary);
}

/* The Active Tab (The "You are here" state) */
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: linear-gradient(
    90deg,
    rgba(255, 81, 0, 0.1) 0%,
    transparent 100%
  );
  color: var(--primary);
  border-left: 4px solid var(--primary); /* Orange marker on left */
  padding-left: 2.5rem;
}

/* C. The Content Area (Right Side) */
.woocommerce-MyAccount-content {
  flex: 1; /* Fills remaining space */
  background: #0a0a0a; /* Optional: Make content a card too */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 3rem;
  min-height: 400px;
}

/* Content Text Styling */
.woocommerce-MyAccount-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.8;
}

/* "Hello User" highlighting */
.woocommerce-MyAccount-content p strong {
  color: #fff;
  font-weight: 700;
}

/* Headings inside content (e.g. "Billing Address") */
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content h2 {
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

/* D. Mobile Responsiveness */
@media (max-width: 900px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
    gap: 2rem;
  }
  .woocommerce-MyAccount-navigation,
  .woocommerce-MyAccount-content {
    width: 100%;
  }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

.contact-section {
  background: #000;
  padding: 4rem 0;
  min-height: 60vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 2rem;
  }
}

/* LEFT COLUMN: Info Card */
.contact-info .info-card {
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-info .info-card:hover {
  border-color: rgba(255, 51, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-info .info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 51, 0, 0.05), transparent 70%);
  pointer-events: none;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item h4 {
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.info-item p {
  color: #9ca3af;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.info-item a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.info-item a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 51, 0, 0.5);
  transform: translateX(5px);
}

.info-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.info-item a:hover::after {
  width: 100%;
}

/* Map */
.map-container iframe {
  width: 100%;
  border-radius: 8px;
  filter: grayscale(100%) invert(92%) contrast(83%); /* Dark Mode Map */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* RIGHT COLUMN: Form Styling */
.contact-form-wrapper {
  background: var(--surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-desc {
  color: #9ca3af;
  margin-bottom: 2rem;
}

/* Override CF7 Default Styles */
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.5rem;
}

.wpcf7 label {
  color: #d1d5db;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: block;
  font-weight: 500;
}

/* Inputs & Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  background-color: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  padding: 14px 16px !important;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 10px rgba(255, 81, 0, 0.2);
}

.wpcf7 textarea {
  height: 150px;
  resize: vertical;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
  background: linear-gradient(90deg, #ff8c00 0%, #ff3300 100%);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.wpcf7 input[type="submit"]:hover {
  box-shadow: 0 0 20px var(--primary);
  transform: translateY(-2px);
  color: white;
}

/* =========================================
   ORDER RECEIVED (THANK YOU PAGE) STYLES
   ========================================= */

/* 1. Wrapper Fix */
.woocommerce-order {
  background: #000; /* Ensures full black bg */
  color: #d1d5db;
  font-family: "Inter", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}

/* 2. Success Message ("Thank you. Your order has been received.") */
.woocommerce-thankyou-order-received {
  background: rgba(0, 255, 0, 0.05); /* Very faint green bg */
  border: 1px solid #00ff00; /* Bright green border */
  color: #00ff00;
  padding: 1.5rem;
  text-align: center;
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
}

/* 3. Order Overview (The top row with Order #, Date, etc.) */
/* Turning the list into a flex grid box */
ul.order_details {
  list-style: none;
  padding: 2rem;
  margin: 0 0 3rem 0;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}

ul.order_details li {
  float: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0;
  padding-right: 2rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.4;
  width: auto;
}

/* Remove border from last item */
ul.order_details li:last-child {
  border: none;
  padding-right: 0;
}

ul.order_details li strong {
  display: block;
  font-size: 1.3rem;
  color: #fff;
  margin-top: 5px;
  font-weight: 700;
}

/* Stack vertically on mobile */
@media (max-width: 768px) {
  ul.order_details {
    flex-direction: column;
  }
  ul.order_details li {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    padding-right: 0;
    width: 100%;
  }
}

/* 4. Headings ("Order Details") */
.woocommerce-order h2 {
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

/* 5. The Product Table */
.woocommerce-table--order-details {
  width: 100%;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0a0a0a;
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

/* Table Header Row */
.woocommerce-table--order-details thead th {
  font-family: "Teko", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

/* Product Rows */
.woocommerce-table--order-details tbody td {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.woocommerce-table--order-details tbody td a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.product-quantity {
  font-weight: 700;
  color: var(--primary);
  margin-left: 5px;
}

/* Footer (Subtotal, Payment Method, Total) */
.woocommerce-table--order-details tfoot th {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #9ca3af;
  text-align: right;
  width: 70%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-table--order-details tfoot td {
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* The Final Total Row */
.woocommerce-table--order-details tfoot tr:last-child td {
  color: var(--primary);
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(255, 81, 0, 0.4);
}

/* 6. Customer Address Section (If visible) */
.woocommerce-customer-details address {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  font-style: normal;
  color: #d1d5db;
  line-height: 1.6;
}

/* =========================================
   LOGIN / REGISTER PAGE STYLES (FIXED)
   ========================================= */

/* 1. Center and Constrain the Main Container */
.woocommerce-account .u-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem; /* Space between Login and Register */
  justify-content: center;
  max-width: 1000px; /* Stops it from being full width */
  margin: 0 auto; /* Centers the block on the page */
}

/* 2. Style Individual Form Boxes (Login & Register) */
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
  background: #0a0a0a; /* Dark card background */
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 8px;
  flex: 1; /* Makes them equal width */
  min-width: 350px; /* Ensures they don't get too squished */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* 3. Headings ("Login", "Register") */
.woocommerce-account h2 {
  font-family: "Teko", sans-serif;
  color: #fff;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
}

/* 4. Input Fields Styling */
.woocommerce form .form-row input.input-text {
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus {
  border-color: var(--primary);
  background-color: #111;
  box-shadow: 0 0 10px rgba(255, 81, 0, 0.2);
}

.woocommerce form .form-row label {
  color: #9ca3af;
  font-family: "Inter", sans-serif;
  margin-bottom: 8px;
  display: block;
}

/* 5. The "Log In" Button */
.woocommerce-account button.woocommerce-button {
  background: linear-gradient(90deg, #ff8c00 0%, #ff3300 100%);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.woocommerce-account button.woocommerce-button:hover {
  box-shadow: 0 0 20px var(--primary);
  transform: translateY(-2px);
  color: white;
}

/* 6. "Remember Me" Checkbox Alignment */
.woocommerce-form-login__rememberme {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  color: #9ca3af;
}

.woocommerce-form-login__rememberme input {
  margin-right: 10px;
  accent-color: var(--primary); /* Makes the checkbox orange */
}

/* 7. "Lost Your Password?" Link */
.woocommerce-LostPassword {
  margin-top: 1rem;
  text-align: center;
}

.woocommerce-LostPassword a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.woocommerce-LostPassword a:hover {
  color: var(--primary);
}

/* Mobile Fix: Stack them vertically on small screens */
@media (max-width: 768px) {
  .woocommerce-account .u-columns {
    flex-direction: column;
    gap: 2rem;
  }
}

/* =========================================
   ADDED TO CART TOAST (NOTIFICATION)
   ========================================= */
.cart-toast {
  position: fixed;
  bottom: 30px;
  right: -400px; /* Hidden off-screen initially */
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary); /* Orange accent */
  padding: 1rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 300px;
  backdrop-filter: blur(10px);
}

.cart-toast.show {
  right: 30px; /* Slides in */
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.toast-content i {
  color: var(--primary);
  font-size: 2rem;
  text-shadow: 0 0 10px var(--primary);
}

.toast-text h4 {
  font-family: "Teko", sans-serif;
  color: #fff;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.toast-text p {
  color: #9ca3af;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
}

/* Loading/Success State for the Button */
.btn-cta.loading,
.btn-add.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

.btn-cta.added span,
.btn-add.added span {
  content: "ADDED!";
}

/* =========================================
   WOOCOMMERCE NOTICES STYLING
   ========================================= */

/* 1. General Alert Box Style (Dark Theme) */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: #0a0a0a !important; /* Dark Black */
  color: #d1d5db !important; /* Gray Text */
  border-top: 2px solid var(--primary) !important; /* Your Orange Color */
  font-family: "Inter", sans-serif;
  padding: 1rem 1.5rem !important;
  margin-bottom: 2rem !important;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Remove default WooCommerce icons */
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  display: none !important;
}

/* 2. Specific Styles for Errors (Red) */
.woocommerce-error {
  border-top-color: #ef4444 !important; /* Red */
}
/* Add custom Red Icon */
.woocommerce-error::after {
  content: "error_outline";
  font-family: "Material Icons";
  color: #ef4444;
  font-size: 1.5rem;
  order: -1; /* Move to left */
}

/* 3. Specific Styles for Info/Success (Blue/Green) */
.woocommerce-info {
  border-top-color: #3b82f6 !important; /* Blue */
}
.woocommerce-info::after {
  content: "info";
  font-family: "Material Icons";
  color: #3b82f6;
  font-size: 1.5rem;
  order: -1;
}

/* 4. Links inside messages (e.g. "Click here to login") */
.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a {
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.5px;
  margin-left: auto; /* Push button to the right */
}

.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover {
  color: var(--primary) !important;
}

/* =========================================
   EMPTY CART & NOTIFICATIONS (SAFE VERSION)
   ========================================= */

/* 1. Notifications (Item Removed / Added) */
.woocommerce-message,
.woocommerce-info {
  width: 100%;
  background: #0a0a0a !important;
  border-top: 2px solid var(--primary) !important; /* Orange Top Border */
  color: #fff !important;
  padding: 1.5rem 2rem !important;
  margin-bottom: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  font-family: "Inter", sans-serif;
}

.woocommerce-message a {
  color: var(--primary) !important;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Teko", sans-serif;
  font-size: 1.2rem;
  margin-left: 20px;
}

.woocommerce-message a:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* 2. THE EMPTY CART MESSAGE */
/* We target the message specifically, NOT the container */
.woocommerce-cart .cart-empty {
  text-align: center; /* Centers the text */
  background: transparent;
  border: none;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  margin: 4rem auto 2rem auto; /* Spacing */
  padding: 0;
  width: 100%;
}

/* Remove default lines */
.woocommerce-cart .cart-empty::before,
.woocommerce-cart .cart-empty::after {
  display: none !important;
}

/* Add the Giant Icon via a separate rule */
.woocommerce-cart .cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The Icon */
.woocommerce-cart .cart-empty::before {
  content: "shopping_cart"; /* Material Icon text name often works better */
  font-family: "Material Icons";
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  display: block;
}

/* 3. "RETURN TO SHOP" BUTTON */
.woocommerce-cart .return-to-shop {
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 4rem;
}

.woocommerce-cart .return-to-shop .button {
  background: linear-gradient(90deg, #ff8c00 0%, #ff3300 100%);
  color: #fff;
  font-family: "Teko", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 1rem 3rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 0 15px rgba(255, 51, 0, 0.2);
}

.woocommerce-cart .return-to-shop .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--primary);
  background: #fff;
  color: #000;
}

.woocommerce-cart .return-to-shop .button::after {
  content: "arrow_forward";
  font-family: "Material Icons";
  font-size: 1.4rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100% !important;
}

/* =========================================
   23. WOOCOMMERCE CART STYLES
   ========================================= */

/* Main Cart Wrapper */
.woocommerce-cart .woocommerce {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0; /* consistent padding */
}

@media (min-width: 1024px) {
  .woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: start;
    gap: 3rem;
  }
}

/* Glass Card Containers */
.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Cart Table */
.shop_table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0;
  border: none;
  background: transparent;
}

.shop_table thead th {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  font-weight: 500;
}

.shop_table td {
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Separators */
  padding: 1.5rem 1rem;
  vertical-align: middle;
  background: transparent;
  color: white;
}

/* Product Remove Icon */
.shop_table .product-remove a.remove {
  color: var(--text-muted);
  display: block;
  font-size: 1.5rem;
  height: 2rem;
  width: 2rem;
  line-height: 1.8;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-weight: 300;
}

.shop_table .product-remove a.remove:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(255, 51, 0, 0.1);
}

/* Product Thumbnail */
.shop_table .product-thumbnail img {
  width: 80px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease;
}

.shop_table .product-thumbnail img:hover {
  transform: scale(1.05);
  border-color: rgba(255, 51, 0, 0.3);
}

/* Product Name */
.shop_table .product-name a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.shop_table .product-name a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 51, 0, 0.4);
}

/* Product Price & Subtotal */
.shop_table .product-price,
.shop_table .product-subtotal {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

/* Quantity Input */
.shop_table .quantity .qty {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 3.5rem;
  text-align: center;
  padding: 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.shop_table .quantity .qty:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

/* Coupon Section */
.coupon {
  display: flex !important;
  gap: 1rem;
  padding: 1rem 0;
  align-items: center;
}

.coupon label {
  display: none !important; /* Hide label "Coupon:" */
}

.coupon .input-text {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: white;
  width: 180px !important;
  font-size: 0.9rem;
}

.coupon .input-text:focus {
  border-color: var(--primary);
  outline: none;
}

/* Buttons */
.woocommerce-cart .actions .button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woocommerce-cart .actions .button:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

/* Update Cart Button - floated right usually */
.woocommerce-cart .actions .button[name="update_cart"] {
  opacity: 0.7;
}
.woocommerce-cart .actions .button[name="update_cart"]:hover {
  opacity: 1;
}

/* sticky cart totals for desktop */
.cart-collaterals .cart_totals {
  width: 100% !important;
  text-align: right;
}

.cart-collaterals .cart_totals h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  font-style: italic;
}

.cart-collaterals .shop_table {
  border: none;
  margin-bottom: 2rem;
}

.cart-collaterals .shop_table th {
  text-align: left;
  font-weight: normal;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.cart-collaterals .shop_table td {
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  font-weight: 600;
}

.order-total th,
.order-total td {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  font-size: 1.25rem;
  color: white;
  padding-top: 1.5rem !important;
}

.order-total .amount {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
}

/* Checkout Button */
.wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gradient-fire);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-style: italic;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  margin-top: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wc-proceed-to-checkout .checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.6);
  background-color: var(--primary); /* fallback */
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    padding: 1.5rem;
  }

  /* Force table to not behave like a table on mobile */
  .shop_table, .shop_table thead, .shop_table tbody, .shop_table th, .shop_table td, .shop_table tr {
    display: block;
  }

  .shop_table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .shop_table tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
  }

  .shop_table td {
    border: none;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .shop_table td:before {
    content: attr(data-title);
    position: relative;
    float: left;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    font-size: 0.85rem;
  }

  /* Specific adjustments for mobile rows */
  .shop_table .product-remove {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    border: none !important;
    padding: 0 !important;
    z-index: 5;
  }
  .shop_table .product-remove a.remove {
    border: none; /* simpler look on mobile */
    font-size: 1.5rem;
    width: auto;
    height: auto;
    color: #ff3300;
  }
  
  .shop_table .product-thumbnail {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }
  .shop_table .product-thumbnail:before {
    display: none;
  }
  .shop_table .product-thumbnail img {
    width: 100px;
    margin: 0 auto;
  }

  .shop_table .product-name {
    display: block;
    text-align: center;
    font-size: 1.25rem;
  }
  .shop_table .product-name:before {
    display: none;
  }

  .actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .coupon {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  
  .coupon .input-text {
    width: 100% !important;
  }

  .woocommerce-cart .actions .button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

