@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;
  height: 100vh;
  min-height: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  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.25;
}

/* Blended gorilla background image - Full Opacity to match screenshot */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1.0;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
  animation: zoomReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomReveal {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.sticky-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 40px 20px 30px;
}

/* Top Co-branding logo container */
.top-logo-container {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.colab-logo {
  height: clamp(65px, 16vw, 95px); /* Big, responsive logo height */
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen; /* Remove black background natively */
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}


/* Pulsing Glow behind gorilla (Breathes slower) */
.hero-glow {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  background: radial-gradient(circle, rgba(242, 127, 101, 0.28) 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;
  }
}

/* Centered Mouth Countdown Timer (Matching Screenshot) */
.mouth-countdown {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  text-align: center;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.countdown-tag {
  font-size: clamp(0.68rem, 1.8vw, 0.8rem);
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  margin-top: 14px; /* Push down away from upper teeth */
  margin-bottom: 5px;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}


.mouth-timer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* More compact grid to raise bottom row */
  margin-top: -6px; /* Pull top row closer to countdown tag */
}


.timer-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.timer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(55px, 12vw, 75px);
}

.timer-val {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 6.5vw, 3rem); /* Larger font size since they are stacked */
  font-weight: 800;
  color: #ff3b30; /* Vibrant red */
  text-shadow: 0 0 15px rgba(255, 59, 48, 0.45);
  line-height: 1;
}

.timer-lbl {
  font-size: clamp(0.55rem, 1.3vw, 0.65rem);
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.timer-sep {
  font-size: clamp(1.8rem, 6vw, 2.7rem);
  font-weight: 800;
  color: #ff3b30;
  line-height: 0.9;
  margin: 0 6px;
  text-shadow: 0 0 15px rgba(255, 59, 48, 0.45);
}


/* Bottom Lead Capture Form (Matching Screenshot) */
.signup-wrapper {
  position: relative;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  margin-bottom: 10px;
}

.arizona-motto {
  font-family: var(--font-sans);
  font-size: clamp(1.13rem, 3.1vw, 1.33rem);
  letter-spacing: 0.18em;
  color: var(--accent-salmon); /* Salmon fire core */
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  animation: salmonFlame 1.8s ease-in-out infinite alternate;
}

@keyframes salmonFlame {
  0% {
    text-shadow: 
      0 0 4px #fff, 
      0 -1px 4px rgba(242, 127, 101, 0.6), 
      0 -4px 10px rgba(255, 90, 50, 0.7), 
      0 -8px 18px rgba(255, 0, 0, 0.5),
      0 -12px 26px rgba(150, 0, 0, 0.4);
  }
  100% {
    text-shadow: 
      0 0 6px #fff, 
      0 -3px 8px rgba(242, 127, 101, 0.9), 
      0 -8px 15px rgba(255, 90, 50, 0.9), 
      0 -15px 25px rgba(255, 0, 0, 0.7),
      0 -22px 35px rgba(150, 0, 0, 0.6);
  }
}

.signup-form {
  display: flex;
  background: #060608;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px;
  border-radius: 6px; /* Rectangular corners */
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.signup-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
  letter-spacing: 0.05em;
}

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

.signup-btn {
  background-color: #8B1C22; /* Dark red */
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.signup-btn:hover {
  background-color: #a32229;
}

@media (max-width: 480px) {
  .signup-wrapper {
    bottom: 20px;
  }
  .signup-input {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .signup-btn {
    padding: 10px 20px;
    font-size: 0.78rem;
  }
}

/* Bottom chevron scroll down indicator */
.bottom-chevron {
  margin-top: 20px;
  color: var(--text-muted);
  cursor: pointer;
  animation: bounce 2s infinite;
  display: flex;
  justify-content: center;
  transition: var(--transition-smooth);
}

.bottom-chevron:hover {
  color: var(--accent-salmon);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Floating Technical Metadata in screen corners (Desktop only) */
.hero-meta-left, .hero-meta-right {
  display: none; /* Hide on mobile/tablet to avoid cluttering clean flyer */
}

@media (min-width: 1025px) {
  .hero-meta-left, .hero-meta-right {
    display: block;
    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;
  }
}

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

.catalog-body {
  background: linear-gradient(rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.94)), url('media/gorilla_bg.jpg') no-repeat center top / cover;
  background-attachment: fixed;
  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;
}

.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;
}

.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;
  }
}

/* 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;
}

/* Centered layout for packaging details when info block is removed */
#packaging-detail {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

/* Savor/Dawn section overrides to guarantee full screen */
.shopify-section > div,
.shopify-section .page-width,
.shopify-section .grid {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.temp-catalog-btn {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -5px;
  margin-bottom: 20px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  display: inline-block;
  cursor: pointer;
}

.temp-catalog-btn:hover {
  color: var(--accent-salmon);
  border-bottom-color: var(--accent-salmon);
  text-shadow: 0 0 8px rgba(242, 127, 101, 0.5);
}

/* ==========================================================================
   HIGH-FIDELITY CHECKOUT SIMULATOR WIZARD
   ========================================================================== */
.checkout-wizard-card {
  background: rgba(10, 10, 12, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: 92%;
  max-width: 820px;
  max-height: 85vh;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 80px rgba(242, 127, 101, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-checkout-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  transition: var(--transition-smooth);
}

.close-checkout-btn:hover {
  background: var(--accent-salmon);
  color: #000;
  transform: rotate(90deg);
}

/* Steps Transition */
.checkout-step {
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px;
  box-sizing: border-box;
}

.checkout-step.active {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Columna Izquierda: Resumen */
.checkout-summary-side {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-side-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.checkout-product-preview {
  display: flex;
  gap: 16px;
  align-items: center;
}

.checkout-product-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000;
}

.checkout-product-details h5 {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.checkout-product-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.checkout-price-highlight {
  color: var(--accent-salmon) !important;
  font-weight: 700;
  margin-top: 4px;
}

.checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.free-shipping-text {
  color: #30d158;
  font-weight: 500;
}

.total-row.grand-total {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  margin-top: 4px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Columna Derecha: Formulario */
.checkout-form-side {
  display: flex;
  flex-direction: column;
}

.checkout-step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.checkout-step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.checkout-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.checkout-input:focus {
  border-color: var(--accent-salmon);
  box-shadow: 0 0 12px rgba(242, 127, 101, 0.2);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.checkout-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}

.checkout-row .compact-field {
  grid-column: span 1;
}

/* Buttons Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.btn-secondary-link {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 8px 12px;
  transition: var(--transition-smooth);
}

.btn-secondary-link:hover {
  color: var(--accent-salmon);
}

.checkout-next-btn,
.checkout-pay-btn {
  background-color: var(--accent-salmon);
  color: #000;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.checkout-next-btn:hover,
.checkout-pay-btn:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 15px rgba(242, 127, 101, 0.3);
  transform: translateY(-1px);
}

/* INTERACTIVE CREDIT CARD VISUAL */
.payment-visual-side {
  align-items: center;
}

.credit-card-container {
  width: 100%;
  max-width: 290px;
  aspect-ratio: 1.586 / 1;
  perspective: 1000px;
}

.credit-card-visual {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.credit-card-visual.flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-front {
  background: linear-gradient(135deg, #18181f 0%, #0d0d11 60%, #201313 100%);
  z-index: 2;
}

.card-back {
  background: linear-gradient(135deg, #0d0d11 0%, #18181f 100%);
  transform: rotateY(180deg);
}

.card-front-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-chip {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 40%, #b8860b 100%);
  border-radius: 4px;
  position: relative;
}

.card-chip::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 8px;
  right: 8px;
  bottom: 4px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
}

.card-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.card-logo.visa {
  color: #58a6ff;
  text-shadow: 0 0 10px rgba(88,166,255,0.4);
}

.card-logo.mastercard {
  color: #ff9f0a;
  text-shadow: 0 0 10px rgba(255,159,10,0.4);
}

.card-logo.amex {
  color: #64d2ff;
  text-shadow: 0 0 10px rgba(100,210,255,0.4);
}

.card-number {
  font-family: monospace;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  word-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  margin: 10px 0;
  text-align: center;
}

.card-details-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder {
  flex: 1;
  min-width: 0;
  padding-right: 10px;
}

.card-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.card-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-expiry {
  text-align: right;
  flex-shrink: 0;
}

/* Card Back Design */
.card-magnetic-strip {
  height: 35px;
  background: #000;
  margin: 10px -20px 0 -20px;
}

.card-signature-area {
  background: rgba(255, 255, 255, 0.9);
  height: 32px;
  border-radius: 4px;
  margin: 15px 0 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 12px;
}

.card-cvv-display {
  color: #111;
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.payment-safety-notice {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* STEP 3: PROCESSING SCREEN */
.processing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 20px;
}

#processing-status-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.processing-sub-status {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* STEP 4: SUCCESS RECEIPT SCREEN */
.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 0;
}

.success-icon-wrapper {
  margin-bottom: 20px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #30d158;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(48,209,88,0.25);
}

.success-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Checkmark Animation */
.success-checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #30d158;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #30d158;
  animation: fillCheckmark .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s forwards;
}

.success-checkmark-circle {
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-miterlimit: 10;
  stroke: #30d158;
  fill: none;
  animation: strokeCircle .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes strokeCircle {
  100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  100% { stroke-dashoffset: 0; }
}

@keyframes fillCheckmark {
  100% { box-shadow: inset 0px 0px 0px 36px rgba(48,209,88,0.1); }
}

@keyframes scaleCheckmark {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

/* Order Receipt Card */
.order-receipt-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  width: 100%;
  padding: 24px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.receipt-header strong {
  color: var(--text-primary);
}

.receipt-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.receipt-product {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-primary);
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.receipt-total {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.receipt-total span:last-child {
  color: var(--accent-salmon);
}

.receipt-shipping-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.receipt-shipping-summary strong {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.receipt-shipping-summary p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.btn-success-close {
  background-color: var(--text-primary);
  color: #000;
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-success-close:hover {
  background-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

/* RESPONSIVE DESIGN FOR CHECKOUT WIZARD */
@media (max-width: 768px) {
  .checkout-wizard-card {
    width: 95%;
    max-height: 92vh;
    border-radius: 16px;
    margin: 10px auto;
  }
  .checkout-step {
    padding: 60px 16px 20px 16px;
    overflow-x: hidden;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    min-width: 0;
  }
  .checkout-summary-side {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .checkout-product-preview img {
    width: 65px;
    height: 65px;
  }
  .credit-card-container {
    margin: 10px auto;
  }
  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
    margin-top: 15px;
  }
  .form-actions button,
  .form-actions .btn-secondary-link {
    width: 100%;
    text-align: center;
    padding: 14px;
    margin: 0;
  }
  .success-title {
    font-size: 1.5rem;
  }
  .success-checkmark {
    width: 60px;
    height: 60px;
  }
  .order-receipt-card {
    padding: 16px;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   PRODUCT GRID CATALOG (4 CAPS SHOWCASE)
   ========================================================================== */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 30px auto 0;
  width: 100%;
}

@media (max-width: 600px) {
  .caps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
}

.cap-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

.cap-card:hover {
  transform: scale(1.03);
}

.cap-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-card:hover .cap-img-wrapper img {
  transform: scale(1.08);
}

.buy-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: var(--accent-salmon);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.cap-card:hover .buy-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.cap-info {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.cap-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cap-price {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 900;
  color: #ffffff;
  display: block;
}




/* ==========================================================================
   UI/UX PRO MAX: ENHANCED GLASSMORPHISM & TYPOGRAPHY POLISH
   ========================================================================== */

.mouth-countdown {
  margin: auto auto !important;
  max-width: 320px !important;
}

.countdown-tag {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.24em !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(168, 35, 41, 0.9) 0%, rgba(100, 18, 22, 0.9) 100%) !important;
  padding: 5px 16px !important;
  border-radius: 100px !important;
  border: 1px solid rgba(242, 127, 101, 0.55) !important;
  box-shadow: 0 0 20px rgba(242, 127, 101, 0.45), 0 4px 12px rgba(0,0,0,0.8) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  backdrop-filter: blur(8px) !important;
}

.countdown-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #f27f65;
  border-radius: 50%;
  box-shadow: 0 0 8px #f27f65, 0 0 14px #ffffff;
  animation: liveDot 1.2s infinite alternate;
}

@keyframes liveDot {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

.mouth-timer-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(145deg, rgba(22, 16, 24, 0.82) 0%, rgba(8, 6, 10, 0.88) 100%) !important;
  padding: 14px 20px 16px 20px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(242, 127, 101, 0.35) !important;
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(242, 127, 101, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 20px rgba(242, 127, 101, 0.08) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.timer-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.timer-col {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 64px !important;
  padding: 4px 6px 6px 6px !important;
  background: rgba(0, 0, 0, 0.45) !important;
  border-radius: 10px !important;
  border: 1px solid rgba(242, 127, 101, 0.18) !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6) !important;
}

.timer-val {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.85rem, 6.5vw, 2.35rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
  font-variant-numeric: tabular-nums !important;
  text-shadow: 
    0 0 18px rgba(242, 127, 101, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.95) !important;
}

.timer-lbl {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.62rem !important;
  font-weight: 800 !important;
  color: #f27f65 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  margin-top: 4px !important;
}

.timer-sep {
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
  font-weight: 900 !important;
  color: #f27f65 !important;
  line-height: 1 !important;
  margin: 0 2px !important;
  margin-top: -6px !important;
  text-shadow: 0 0 12px rgba(242, 127, 101, 0.9) !important;
  animation: sepBlink 1s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate !important;
}

@keyframes sepBlink {
  0% { opacity: 0.4; filter: drop-shadow(0 0 2px #f27f65); }
  100% { opacity: 1; filter: drop-shadow(0 0 8px #f27f65); }
}

.motto-title {
  font-family: 'Syne', sans-serif !important;
  font-size: clamp(1.5rem, 5.8vw, 2.25rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin: 0 0 12px 0 !important;
  background: linear-gradient(180deg, #FFFFFF 30%, #f27f65 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 22px rgba(242, 127, 101, 0.55)) drop-shadow(0 4px 10px rgba(0,0,0,0.9)) !important;
}

.signup-wrapper {
  width: 100% !important;
  max-width: 360px !important;
}

.signup-form {
  width: 100% !important;
  max-width: 350px !important;
  padding: 3px !important;
  border-radius: 12px !important;
  background: rgba(10, 8, 14, 0.85) !important;
  border: 1px solid rgba(242, 127, 101, 0.45) !important;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(242, 127, 101, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(12px) !important;
}

.signup-form:focus-within {
  border-color: #f27f65 !important;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(242, 127, 101, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.signup-input {
  background: transparent !important;
  border: none !important;
  padding: 0 14px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}

.signup-btn {
  padding: 0 20px !important;
  background: linear-gradient(135deg, #c42930 0%, #8b1e22 60%, #601215 100%) !important;
  border-radius: 9px !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 15px rgba(168, 35, 41, 0.5) !important;
}

.vip-trust-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin-top: 10px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: rgba(242, 127, 101, 0.85) !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}
