/* Variables */
:root {
  --primary-color: #FF453A;
  /* Vibrant Red - Adjusted for dark theme */
  --secondary-color: #1A1A1A;
  /* Rich Dark Grey - Used for Backgrounds */
  --accent-color: #2D3748;
  /* Lighter Dark Grey - Used for Secondary elements */
  --text-color: #FFFFFF;
  /* White - Inverted for readability */
  --bg-color: #121212;
  /* Premium Dark Background */
  --card-bg: #1E1E1E;
  /* Dark Grey cards on dark bg */
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(239, 68, 68, 0.1);
  padding: 1rem 3rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.8);
  /* White text with slight opacity */
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  background: transparent;
  padding: 0.5rem 0;
  border: none;
  position: relative;
  transition: all 0.3s;
  letter-spacing: 1px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--primary-color);
  background: transparent;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Header Buttons Container */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Menu Button */
.menu-button {
  font-family: var(--font-heading);
  background: var(--card-bg);
  color: var(--text-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.menu-button svg {
  width: 16px;
  height: 16px;
}

.menu-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(255, 69, 58, 0.1);
  color: var(--primary-color);
  padding-left: 2rem;
}

.launch-app {
  font-family: var(--font-heading);
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.launch-app:hover {
  background: #FF3333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.6);
}

.qr-icon {
  background: var(--card-bg);
  padding: 0.5rem;
  border-radius: 12px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.qr-icon:hover {
  transform: scale(1.1);
  border-color: var(--primary-color);
}

.qr-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #121212;
  /* Fallback */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.4);
  /* Dark overlay for text readability */
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.1;
  pointer-events: none;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 12rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  line-height: 0.8;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out;
  white-space: nowrap;
}

.hero-character {
  position: absolute;
  width: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.logo {
  z-index: 2;
  /* Ensure logo is above centered text if overlap */
}

.header-title-centered {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  /* Doubled from 0.6rem */
  letter-spacing: 2px;
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.9), 0 0 30px rgba(255, 0, 0, 0.6);
  pointer-events: none;
  /* Let clicks pass through if needed, or remove if it should be selectable */
  white-space: nowrap;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.5);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 0, 0, 1), 0 0 40px rgba(255, 0, 0, 0.8), 0 0 60px rgba(255, 0, 0, 0.6);
  }
}

.home-link {
  text-decoration: none;
  color: var(--primary-color);
  /* Red color */
  display: flex;
  align-items: center;
  gap: 10px;
  transition: text-shadow 0.3s ease;
}

.home-link:hover .header-logo-small,
.home-link:active .header-logo-small {
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

.header-logo-small {
  height: 52px;
  width: auto;
  transition: filter 0.3s ease;
  /* filter: invert(1); Removed invert for colored logo */
}

.home-link:hover .header-logo-small,
.home-link:active .header-logo-small {
  filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

.hero-subheading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-color);
  margin-top: 3rem;
  animation: fadeIn 1s ease-out 0.5s;
  animation-fill-mode: both;
  z-index: 3;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(31, 41, 55, 0.1);
  letter-spacing: 2px;
}

/* Sections */
section {
  padding: 4rem 2rem;
  position: relative;
}

/* Target Audience / Mission */
#target-audience {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--bg-color);
}

.collage {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 500px;
  position: relative;
  justify-content: center;
}

.collage img {
  width: 200px;
  height: auto;
  border: none;
  border-radius: 15px;
  animation: fadeIn 1s ease-out;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  filter: brightness(0.9);
}

.collage img:hover {
  z-index: 10;
  transform: scale(1.1) rotate(0deg) !important;
  filter: brightness(1.1);
  box-shadow: 0 20px 40px rgba(233, 79, 55, 0.3);
}

.collage img:nth-child(1) {
  transform: rotate(-5deg) translateY(20px);
}

.collage img:nth-child(2) {
  transform: rotate(5deg) translateY(-20px);
}

.collage img:nth-child(3) {
  transform: rotate(-3deg) translateY(-40px);
}

.collage img:nth-child(4) {
  transform: rotate(4deg) translateY(10px);
}

.collage img:nth-child(5) {
  transform: rotate(-6deg) translateY(-30px);
}

.collage img:nth-child(6) {
  transform: rotate(2deg) translateY(20px);
}

.collage img:hover {
  z-index: 10;
  transform: scale(1.1) rotate(0deg) translateY(0) !important;
  filter: brightness(1.1);
  box-shadow: 0 20px 40px rgba(233, 79, 55, 0.3);
}

.target-headline {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.9;
  max-width: 600px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.target-headline span {
  color: var(--primary-color);
}

/* Description / Story */
.video-container {
  max-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.video-container:hover {
  transform: rotate(0deg) scale(1.02);
}

.target-video {
  width: 100%;
  height: auto;
  display: block;
}

.media-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.side-image {
  width: 250px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  filter: brightness(0.9);
}

.side-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  z-index: 2;
}

.side-image.left {
  transform: rotate(-5deg);
}

.side-image.right {
  transform: rotate(5deg);
}

.side-image.left:hover,
.side-image.right:hover {
  transform: rotate(0deg) scale(1.05);
}

#chirpley-description {
  text-align: center;
  background: var(--card-bg);
  border-top: 1px solid rgba(31, 41, 55, 0.05);
  border-bottom: 1px solid rgba(31, 41, 55, 0.05);
}

.graphic-element {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 3rem;
  animation: fadeIn 1s ease-out;
  transition: transform 0.3s ease-out;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
}

#chirpley-description h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  color: var(--text-color);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 1000px;
  margin: 0 auto;
}

/* Impact / AI Match */
#ai-match {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
  background: var(--bg-color);
}

#ai-match h2 {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 400;
  color: var(--text-color);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2rem;
}

#ai-match p {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  line-height: 1.8;
}

.side-graphic {
  width: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-out;
}

/* Carousel */
.carousel-container {
  width: 100%;
  overflow: hidden;
  background: var(--secondary-color);
  /* Dark background to match theme */
  padding: 2rem 0;
  border-top: 1px solid rgba(239, 68, 68, 0.1);
  border-bottom: 1px solid rgba(239, 68, 68, 0.1);
  position: relative;
}

.carousel-track {
  display: flex;
  width: calc(250px * 42);
  /* 14 items * 3 sets */
  animation: scroll 45s linear infinite;
  /* Speed increased by ~1.5x (70s -> 45s) */
}

.carousel-item {
  width: 250px;
  /* Approx 3 inches */
  padding: 0 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
  animation: bounce-item 2s ease-in-out infinite;
}

/* Stagger animations for a wave effect */
.carousel-item:nth-child(odd) img {
  animation-delay: 0s;
}

.carousel-item:nth-child(even) img {
  animation-delay: 1s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 14));
  }

  /* Scroll by the width of one set (14 items) */
}

@keyframes bounce-item {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Footer */
footer {
  background: var(--accent-color);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(31, 41, 55, 0.1);
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

.footer-sublinks {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-sublinks a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-sublinks a:hover {
  color: var(--text-color);
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.partner-logos img {
  height: 30px;
  transition: transform 0.2s;
  filter: grayscale(100%) brightness(0.2);
  opacity: 0.7;
}

.partner-logos img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

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

.legal-links {
  display: flex;
  gap: 1rem;
}

.legal-links a {
  font-family: var(--font-heading);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.7);
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

.social-icons a svg {
  width: 20px;
  height: 20px;
}


.website-credit {
  font-family: var(--font-body);
  color: #A1A1A1;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
  /* Start invisible */
}

@keyframes float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 5rem;
  }

  .hero-character {
    width: 80%;
    max-width: 450px;
  }

  .target-headline,
  #ai-match h2 {
    font-size: 3rem;
  }

  .collage img,
  .side-graphic {
    width: 300px;
  }

  #target-audience,
  #ai-match {
    flex-direction: column;
    text-align: center;
  }

  #chirpley-description h2 {
    font-size: 1.8rem;
  }

  .graphic-element {
    width: 400px;
    max-width: 100%;
  }

  nav ul {
    display: none;
    /* Hide nav links on mobile for now, or add hamburger */
  }

  .footer-links,
  .footer-sublinks,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

}

/* Shared Premium Hero Styles */
.premium-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-color) 100%);
  overflow: hidden;
}

.hero-headline-large {
  font-family: var(--font-heading);
  font-size: 10rem;
  line-height: 0.8;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-out;
}

.hero-headline-large .text-highlight {
  color: var(--primary-color);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 30px rgba(255, 69, 58, 0.4);
}

.hero-subheading-premium {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
  font-weight: 400;
  z-index: 2;
}

/* Sticky Filter Bar */
.filter-bar-sticky {
  position: sticky;
  top: 80px;
  /* Adjust based on header height */
  z-index: 900;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.filter-input,
.filter-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
  outline: none;
  transition: all 0.3s ease;
  min-width: 200px;
  text-transform: uppercase;
}

.filter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.filter-input:focus,
.filter-select:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 2px rgba(255, 69, 58, 0.2);
}

.filter-select option {
  background: var(--card-bg);
  color: var(--text-color);
  padding: 10px;
}

/* Premium Product Grid */
.product-grid-section {
  padding: 2rem 4%;
  min-height: 100vh;
}

.product-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  /* Reduced gap for tighter look */
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.product-card {
  background: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 0.8;
  /* Taller aspect ratio for fashion */
  background: #161616;
  /* Subtle card bg */
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-img-front,
.product-img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Ensure entire shirt is visible */
  padding: 2rem;
  /* Give it some breathing room */
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.product-img-back {
  opacity: 0;
  z-index: 2;
}

.product-card:hover .product-img-back {
  opacity: 1;
  transform: scale(1.05);
}

.product-card:hover .product-img-front {
  opacity: 0;
}

/* Badges */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  z-index: 10;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(255, 69, 58, 0.4);
}

/* Quick Add Button */
.quick-add-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 90%;
  background: white;
  color: black;
  border: none;
  padding: 0.8rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
}

.product-card:hover .quick-add-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-add-btn:hover {
  background: var(--primary-color);
  color: white;
}

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

.product-info h3 {
  font-family: 'Outfit', sans-serif;
  /* Cleaner sans-serif */
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.3rem;
  text-transform: capitalize;
}

.price {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Responsive Breakpoints */
@media (max-width: 1400px) {
  .product-grid-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero-headline-large {
    font-size: 6rem;
  }
}

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

  .hero-headline-large {
    font-size: 4rem;
  }

  .filter-container {
    justify-content: flex-start;
  }
}

/* Cultures Page */
.cultures-hero {
  text-align: center;
  padding: 8rem 2rem 3rem;
  background: var(--bg-color);
}

.cultures-grid-container {
  padding: 2rem 5%;
  background: var(--bg-color);
  min-height: 60vh;
}

.cultures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.culture-card {
  background: transparent;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.culture-card:hover {
  transform: translateY(-5px);
}

.culture-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.culture-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.culture-card:hover .culture-image-wrapper img {
  transform: scale(1.1);
}

.culture-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease-out;
  filter: blur(20px);
}

.culture-card:hover .culture-glow {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1.8);
}

.culture-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-color);
  margin-top: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  justify-content: center;
}

/* Join Us Page Styles */
.join-hero {
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(circle at center, #2A2A2A 0%, var(--bg-color) 70%);
  position: relative;
}

.join-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.1;
  pointer-events: none;
}

.join-hero .hero-headline {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 400;
  color: var(--text-color);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.join-hero .hero-subheading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.join-form-section {
  padding: 6rem 2rem;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  max-width: 800px;
  width: 100%;
  background: var(--card-bg);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-container h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.form-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

.form-group label {
  font-family: var(--font-heading);
  color: var(--text-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.required {
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

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

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.form-group select {
  cursor: pointer;
}

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

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.03);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.checkbox-label span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.submit-button {
  font-family: var(--font-heading);
  background: var(--primary-color);
  color: var(--text-color);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  border: none;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
  margin-top: 1rem;
}

.submit-button:hover {
  background: #FF3333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 77, 77, 0.6);
}

.submit-button:active {
  transform: translateY(0);
}

.success-message {
  text-align: center;
  padding: 3rem;
  background: rgba(76, 175, 80, 0.1);
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 15px;
  margin-top: 2rem;
}

.success-message svg {
  stroke: #4CAF50;
  margin-bottom: 1rem;
}

.success-message h3 {
  font-family: var(--font-heading);
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.success-message p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Responsive Styles for Join Page */
@media (max-width: 768px) {
  .join-hero .hero-headline {
    font-size: 3rem;
  }

  .form-container {
    padding: 2rem;
  }

  .form-container h2 {
    font-size: 2rem;
  }

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

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .submit-button {
    width: 100%;
  }
}

/* Enhanced Education Page Styles */
.education-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(rgba(18, 18, 18, 0.4), rgba(18, 18, 18, 0.8)), url('https://via.placeholder.com/1920x1080/121212/333333?text=Hero+Background') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, #121212 90%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-headline {
  font-size: 6rem;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.text-highlight {
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.hero-subheading {
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

/* Split Mission Section */
.mission-section {
  padding: 8rem 2rem;
  background: var(--background-color);
}

.mission-container {
  max-width: 1400px;
  margin: 0 auto;
}

.mission-content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 1;
}

.lead-text {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 500;
}

.mission-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.mission-stats-row {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  filter: grayscale(20%) contrast(110%);
  transition: all 0.5s ease;
}

.mission-image img:hover {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.02);
}

/* Carousel Section */
.carousel-section {
  padding: 4rem 0;
  background: var(--secondary-color);
  overflow: hidden;
}

.education-carousel-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.education-carousel-container::-webkit-scrollbar {
  display: none;
}

.education-carousel-track {
  display: inline-flex;
  gap: 2rem;
  padding: 0 2rem;
  animation: scroll-education 40s linear infinite;
}

.education-carousel-track:hover {
  animation-play-state: paused;
}

.education-carousel-item {
  flex: 0 0 auto;
  width: 400px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.education-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.education-carousel-item:hover img {
  transform: scale(1.1);
}

@keyframes scroll-education {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-400px * 3 - 6rem));
  }

  /* Adjust based on items */
}

/* Immersive Story Section */
.story-section {
  position: relative;
  padding: 10rem 2rem;
  background: url('https://via.placeholder.com/1920x1080/121212/333333?text=Story+Background') fixed center center/cover;
  text-align: center;
  overflow: hidden;
}

.story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.story-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-paragraph {
  font-size: 1.8rem;
  color: #fff;
  margin: 3rem 0;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* Enhanced Impact Grid */
.impact-section {
  padding: 8rem 2rem;
  background: var(--background-color);
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

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

.impact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
  /* Red glow effect */
}

.card-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  /* Center the icon if needed, though text-align center on parent handles it */
}

.icon-philosophy {
  height: 120px;
  /* Increased size for detailed illustrations */
  width: auto;
  transition: transform 0.3s ease;
  /* No filter needed as images are colored */
}

.impact-card:hover .icon-philosophy {
  transform: scale(1.1);
}

.impact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.impact-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Bold Text Styling for Education Page */
.mission-text strong,
.story-content strong,
.highlight-paragraph strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .mission-content-split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .mission-image {
    order: -1;
  }

  .hero-headline {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .mission-stats-row {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Product Modal Styles */
.product-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--card-bg);
  margin: 5% auto;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  max-width: 1000px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 10;
  transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--primary-color);
  text-decoration: none;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.modal-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  cursor: crosshair;
}

#modalImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.1s ease-out;
}

/* Magnification Effect */
.modal-image-container:hover #modalImage {
  transform: scale(2);
  /* Zoom level */
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#modalTitle {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-transform: uppercase;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.modal-description {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.add-to-cart-modal {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.add-to-cart-modal:hover {
  background-color: #ff2a1f;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .modal-image-container {
    height: 300px;
  }

  #modalTitle {
    font-size: 2rem;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 1.5rem;
  }
}

/* Cart Drawer Styles */
.cart-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: relative;
  margin-left: 1rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: #1a1a1a;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

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

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

.cart-header h2 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: 1.5rem;
}

.close-cart {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
}

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

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
}

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

.cart-item-details h4 {
  margin: 0 0 0.5rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: bold;
}

.remove-item {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.5rem;
  text-decoration: underline;
}

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

.cart-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: auto;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.checkout-btn {
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background-color: #ff2a1f;
}

/* Checkout Page Styles */
.checkout-section {
  padding: 4rem 2rem;
  min-height: 80vh;
}

.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

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

.form-section {
  margin-bottom: 3rem;
}

.form-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 5px;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.place-order-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-top: 2rem;
}

.place-order-btn:hover {
  background-color: #ff2a1f;
}

.order-summary {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  position: sticky;
  top: 2rem;
}

.order-summary h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-totals {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.final-total {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

  .cart-drawer {
    width: 100%;
    right: -100%;
  }

  /* Mobile Header Fixes */
  header {
    flex-wrap: wrap;
    padding: 0.8rem 1rem;
    gap: 0.5rem;
  }

  .logo {
    order: 1;
  }

  nav {
    order: 2;
  }

  .header-title-centered {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    order: 3;
    margin-top: 0.5rem;
    font-size: 1.2rem;
    /* Keep size or slightly adjust */
  }

  .header-logo-small {
    height: 40px;
    /* Smaller logo on mobile */
  }

  .menu-button,
  .launch-app {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .menu-button svg {
    width: 14px;
    height: 14px;
  }
}

/* Back to Shop Button */
.back-to-shop {
  font-family: var(--font-heading);
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.back-to-shop:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(255, 69, 58, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 69, 58, 0.2);
}

/* Sold Out Notification */
.sold-out-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 69, 58, 0.3);
  border-left: 4px solid var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: var(--font-body);
}

.sold-out-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.notification-icon {
  font-size: 1.5rem;
}

.notification-text h4 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 0.2rem;
  font-size: 1rem;
  letter-spacing: 1px;
}

.notification-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}