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

:root {
  --bg-primary: #050505;
  --bg-secondary: #0c0c0e;
  --bg-tertiary: #141416;
  --accent-salmon: #f27f65;
  --accent-salmon-rgb: 242, 127, 101;
  --accent-hover: #ff9e88;
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-muted: #6e6e73;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(242, 127, 101, 0.5);
  --font-sans: 'Outfit', sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-cursive: 'Alex Brush', cursive;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(18, 18, 18, 0.8);
  --glass-border: rgba(255, 255, 255, 0.06);
}

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

html, body {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  width: 100%;
}

/* Global Laser Scanline animation overlay */
body::after {
  content: '';
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-salmon), transparent);
  box-shadow: 0 0 10px var(--accent-salmon);
  z-index: 999;
  pointer-events: none;
  opacity: 0.18;
  animation: scanLine 8s linear infinite;
}

@keyframes scanLine {
  0% { top: -100px; }
  100% { top: 100%; }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-salmon);
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

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

/* ==========================================================================
   PAGE 1: INDEX.HTML (EXPECTANCY & COUNTDOWN)
   ========================================================================== */

/* Fullscreen Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #030303;
  overflow: hidden;
}

/* Technical Scanline Grid Overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(10, 10, 10, 0) 50%, rgba(0, 0, 0, 0.3) 50%), 
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px), 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 4px, 45px 45px, 45px 45px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}

/* Blended gorilla background image */
.hero-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 80vh;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  object-fit: contain;
  mix-blend-mode: lighten;
  animation: zoomReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .hero-bg-image {
    height: 52vh;
    opacity: 0.28;
  }
}

/* Pulsing Glow behind gorilla (Breathes slower) */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  background: radial-gradient(circle, rgba(242, 127, 101, 0.22) 0%, rgba(242, 127, 101, 0) 70%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes zoomReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Overlay for backdrop readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.85) 60%, rgba(5,5,5,1) 100%);
  z-index: 1;
}

.sticky-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Floating Technical Metadata in screen corners (Desktop only) */
.hero-meta-left, .hero-meta-right {
  position: absolute;
  bottom: 40px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  z-index: 3;
  font-family: var(--font-sans);
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-meta-left {
  left: 40px;
  text-align: left;
  border-left: 2px solid var(--accent-salmon);
  padding-left: 15px;
}

.hero-meta-right {
  right: 40px;
  text-align: right;
  border-right: 2px solid var(--accent-salmon);
  padding-right: 15px;
}

@media (max-width: 900px) {
  .hero-meta-left, .hero-meta-right {
    display: none; /* Hide on mobile to prevent clutter */
  }
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.brand-badge .dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-salmon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-salmon);
}

.brand-badge span {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
}

/* High Contrast Title Typography & Hover Glitch */
.hero-title {
  line-height: 0.95;
  margin-bottom: 20px;
  animation: zoomIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.outline-text {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  transition: var(--transition-smooth);
}

.solid-text {
  display: block;
  color: var(--accent-salmon);
  font-weight: 900;
  text-shadow: 0 0 40px rgba(242, 127, 101, 0.3);
  font-size: clamp(2.2rem, 7.5vw, 5.7rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-top: -5px;
  transition: var(--transition-smooth);
}

/* Cyberpunk micro-glitch on title hover */
.hero-title:hover .solid-text {
  animation: textGlitch 0.3s linear infinite;
}

@keyframes textGlitch {
  0% { text-shadow: 2px -1px 0 rgba(255, 59, 48, 0.5), -2px 1px 0 rgba(0, 245, 255, 0.3); }
  25% { text-shadow: -1px 2px 0 rgba(255, 59, 48, 0.5), 1px -2px 0 rgba(0, 245, 255, 0.3); }
  50% { text-shadow: 2px 1px 0 rgba(255, 59, 48, 0.4), -1px -1px 0 rgba(0, 245, 255, 0.3); }
  75% { text-shadow: -2px -2px 0 rgba(255, 59, 48, 0.5), 2px 2px 0 rgba(0, 245, 255, 0.4); }
  100% { text-shadow: 1px -1px 0 rgba(255, 59, 48, 0.4), -2px 1px 0 rgba(0, 245, 255, 0.3); }
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s;
  animation-fill-mode: both;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  margin-bottom: 45px;
  animation: fadeInUp 0.8s ease 0.4s;
  animation-fill-mode: both;
}

.countdown-box {
  background: rgba(12, 12, 14, 0.55);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-color);
  width: clamp(68px, 10vw, 95px);
  height: clamp(78px, 11vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.countdown-number {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.countdown-label {
  font-size: clamp(0.55rem, 1.1vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-salmon);
  margin-top: 6px;
  font-weight: 600;
}

/* Sign-up Form (VIP Access) */
.signup-wrapper {
  width: 100%;
  animation: fadeInUp 0.8s ease 0.6s;
  animation-fill-mode: both;
}

.vip-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.18);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.vip-dot {
  width: 6px;
  height: 6px;
  background-color: #ff453a;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

.vip-status span:last-child {
  font-size: 0.68rem;
  font-weight: 700;
  color: #ff453a;
  letter-spacing: 0.08em;
}

.signup-title {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.4;
}

.signup-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: 50px;
  transition: var(--transition-smooth);
  width: 100%;
}

.signup-form:focus-within {
  border-color: var(--accent-salmon);
  box-shadow: 0 0 15px rgba(242, 127, 101, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.signup-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
}

.signup-input::placeholder {
  color: var(--text-muted);
}

.signup-btn {
  background-color: var(--accent-salmon);
  color: #000;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.signup-btn:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 0 15px rgba(242, 127, 101, 0.4);
  transform: translateY(-1px);
}

/* Stacking Form elements on narrow mobile screens */
@media (max-width: 480px) {
  .signup-form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }
  .signup-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    width: 100%;
    text-align: center;
    padding: 15px;
  }
  .signup-btn {
    width: 100%;
    border-radius: 30px;
    padding: 15px;
    text-align: center;
  }
}

/* Navigation button to enter catalog products.html */
.scroll-action-container {
  margin-top: 35px;
  width: 100%;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.8s;
  animation-fill-mode: both;
  z-index: 5;
}

.scroll-products-btn {
  background: transparent;
  border: 2px solid var(--accent-salmon);
  color: var(--accent-salmon);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.scroll-products-btn:hover {
  background-color: var(--accent-salmon);
  color: #000;
  box-shadow: 0 8px 25px rgba(242, 127, 101, 0.4);
  transform: translateY(-2px);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.scroll-products-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   PAGE 2: PRODUCTS.HTML (CATALOG SHOWCASE)
   ========================================================================== */

.catalog-body {
  background-color: var(--bg-primary);
  min-height: 100vh;
}

/* Fixed Header navigation */
.catalog-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 90;
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-salmon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.back-btn svg {
  transition: transform 0.3s ease;
}

.back-btn:hover {
  color: var(--accent-hover);
}

.back-btn:hover svg {
  transform: translateX(-4px);
}

.header-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }
  .back-btn {
    font-size: 0.78rem;
    gap: 6px;
  }
  .header-logo {
    font-size: 0.82rem;
  }
}

/* Catalog Main Panel content */
.catalog-main {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 130px 24px 40px;
}

@media (max-width: 480px) {
  .catalog-main {
    padding: 110px 16px 40px;
  }
}

.catalog-intro {
  text-align: center;
  margin-bottom: 70px;
}

@media (max-width: 480px) {
  .catalog-intro {
    margin-bottom: 40px;
  }
}

.catalog-subtitle {
  color: var(--accent-salmon);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.catalog-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-primary);
}

.catalog-desc {
  max-width: 620px;
  margin: 15px auto 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Catalog Product Section Grid */
.catalog-product-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
  width: 100%;
}

.catalog-product-section > * {
  min-width: 0;
}

@media (max-width: 950px) {
  .catalog-product-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
}

/* Gallery inside products */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-salmon);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.main-media-display {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  background-color: #0b0b0d;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: zoom-in;
}

/* Gallery cross-fade transitions */
.main-media-display img,
.main-media-display video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-media-display img.active,
.main-media-display video.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hover Zoom effect */
.main-media-display:hover img.active {
  transform: scale(1.04);
}

.main-media-display:hover video.active {
  transform: scale(1.02);
}

/* Thumbnails scroll rows */
.thumbs-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 10;
}

.thumbs-row::-webkit-scrollbar {
  height: 4px;
}
.thumbs-row::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 2px;
}

.thumb-item {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: var(--transition-smooth);
  background-color: #000;
  flex-shrink: 0;
}

.thumb-item.active,
.thumb-item:hover {
  opacity: 1;
  border-color: var(--accent-salmon);
}

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

.video-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-tertiary);
}

.thumb-video-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Information Blocks details */
.product-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.info-limited-tag {
  align-self: flex-start;
  background-color: rgba(255, 59, 48, 0.1);
  color: #ff453a;
  border: 1px solid rgba(255, 59, 48, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.info-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.15;
  color: var(--text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.info-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-salmon);
}

.info-description {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Specs layout inside blocks */
.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.specs-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.specs-list li svg {
  fill: var(--accent-salmon);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Big Action Buy button */
.buy-now-btn {
  width: 100%;
  background-color: var(--accent-salmon);
  color: #000;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.buy-now-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242, 127, 101, 0.35);
}

/* Tech Info/UX Alert bottom section */
.ux-notice-split {
  background: rgba(242, 127, 101, 0.04);
  border: 1px dashed rgba(242, 127, 101, 0.25);
  padding: 20px;
  border-radius: 16px;
  margin: 40px 0 60px;
}

.ux-notice-split h4 {
  font-size: 0.9rem;
  color: var(--accent-salmon);
  margin-bottom: 8px;
}

.ux-notice-split p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Footer layout inside scrollpane */
.catalog-footer {
  text-align: center;
  padding: 60px 20px 80px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   SCROLL REVEAL (NATIVE INTERSECTION OBSERVER ANIMATION)
   ========================================================================== */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   CHECKOUT SIMULATOR OVERLAY MODAL
   ========================================================================== */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 3, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.checkout-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 320px;
  padding: 20px;
}

.spinner-ring {
  width: 55px;
  height: 55px;
  border: 3px solid rgba(242, 127, 101, 0.15);
  border-top-color: var(--accent-salmon);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(242, 127, 101, 0.25);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#checkout-status-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkout-sub-status {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile responsive details */
@media (max-width: 480px) {
  .brand-badge {
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    margin-bottom: 25px;
  }
  .countdown-container {
    gap: 6px;
    margin-bottom: 35px;
  }
  .countdown-box {
    width: 66px;
    height: 74px;
    border-radius: 8px;
  }
  .countdown-number {
    font-size: 1.6rem;
  }
  .countdown-label {
    font-size: 0.55rem;
    margin-top: 4px;
  }
  .product-gallery {
    gap: 10px;
  }
  .main-media-display {
    border-radius: 12px;
  }
  .info-title {
    font-size: 1.5rem;
  }
}

/* Philosophy Section */
.philosophy-banner {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)),
              url('media/display_packaging.jpeg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.philosophy-quote-red {
  color: #ff3b30;
  text-shadow: 0 0 20px rgba(255, 59, 48, 0.4);
}

.philosophy-subtitle {
  font-family: var(--font-cursive);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent-salmon);
  margin-bottom: 20px;
  line-height: 0.8;
}

.philosophy-text {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}
