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

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Questrial', sans-serif;

  /* Color Palette - Premium Light Theme matching the Logo */
  --bg-light: #f8fafc;
  --bg-slate: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --border-glass: rgba(15, 23, 42, 0.06);
  --border-element: rgba(15, 23, 42, 0.06);
  --border-focus: rgba(0, 180, 216, 0.4);
  
  /* Gradient colors matching logo (Cyan to Purple) */
  --primary: #00b4d8;
  --primary-glow: rgba(0, 180, 216, 0.15);
  --secondary: #7209b7;
  --secondary-glow: rgba(114, 9, 183, 0.15);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-white: #ffffff;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 16px;
  --radius-md: 10px;
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  
  --max-content-width: 1600px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(circle at 5% 10%, rgba(0, 180, 216, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 95% 85%, rgba(114, 9, 183, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(114, 9, 183, 0.02) 0%, transparent 50%);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Header & Navigation */
.original-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-element);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.logo-text {
  display: none;
}

.header-row-1 {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-search-bar {
  position: relative;
  max-width: 380px;
  flex: 1;
  margin: 0 2rem;
  display: flex;
  align-items: center;
}

.global-search-bar input {
  width: 100%;
  padding: 0.55rem 2.8rem 0.55rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--bg-slate);
  border: 1px solid var(--border-element);
  border-radius: 20px;
  color: var(--text-main);
  transition: var(--transition);
}

.global-search-bar input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.global-search-bar button {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.global-search-bar button:hover {
  color: var(--primary);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-new-pill {
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.45rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-new-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(239, 68, 68, 0.35);
}

.lang-selector {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  user-select: none;
}

.lang-selector span {
  cursor: pointer;
  transition: var(--transition);
}

.lang-selector span:hover {
  color: var(--primary);
}

.lang-selector span.active {
  color: var(--text-main);
  font-weight: 800;
  cursor: default;
}

.header-icon-btn {
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header-icon-btn:hover {
  color: var(--primary);
}

/* Header Row 2: Secondary Navigation */
.header-row-2 {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-element);
}

.header-row-2 .nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header-row-2 .nav-links li {
  margin: 0;
  padding: 0;
  display: flex !important;
  align-items: center !important;
}

.header-contact-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* FORCE EXACT SAME STYLE, HEIGHT, FONT, AND ALIGNMENT FOR ALL ROW 2 LINKS */
.header-row-2 .nav-links a,
.header-contact-info a {
  text-decoration: none !important;
  color: var(--text-muted) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  transition: var(--transition) !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 32px !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.header-row-2 .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
}

.header-row-2 .nav-links a:hover,
.header-row-2 .nav-links a.active {
  color: var(--text-main) !important;
}

.header-row-2 .nav-links a:hover::after,
.header-row-2 .nav-links a.active::after {
  width: 100%;
}

.header-contact-info a:hover {
  color: var(--primary) !important;
}

/* Hamburger mobile button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.25rem;
}

/* Sections General */
section {
  padding: 6.5rem 2rem 4rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-main), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Hero Slider Styles */
.hero-slider-section {
  position: relative;
  height: 92vh;
  width: 100vw;
  max-width: 100% !important;
  padding: 0 !important;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Dots navigation */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.25);
  box-shadow: 0 0 10px var(--primary);
}

/* Navigation arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: monospace;
  font-weight: bold;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  color: var(--text-main);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 10, 19, 0.6) 0%, rgba(7, 10, 19, 0.25) 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 650px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

/* Premium Neon Glassmorphic Buttons */
.btn-primary-neon {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #070a13;
  box-shadow: 0 8px 20px rgba(0, 245, 255, 0.25);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
}

.btn-primary-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 245, 255, 0.45), 0 0 15px rgba(157, 78, 221, 0.3);
  color: #070a13;
}

.btn-secondary-neon {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-secondary-neon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 245, 255, 0.15);
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .btn-primary-neon, .btn-secondary-neon {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
  }
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 500px;
  width: 100%;
  animation: float-up 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-img {
  height: 90px;
  width: auto;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 5px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-element);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Sobre Nosotros Section */
.about-section {
  border-bottom: 1px solid var(--border-element);
  padding-bottom: 5rem;
}

.about-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-text-content p {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
}

.about-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.client-logo-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
  width: 130px;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.client-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  background: #ffffff;
}

.client-logo-card:hover img {
  transform: scale(1.05);
}

/* Nuevos Productos Section */
.new-products-section {
  border-bottom: 1px solid var(--border-element);
}

.starburst-new-ribbon {
  position: absolute;
  top: -24px;
  right: 5%;
  background: #dc2626;
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
  transform: rotate(3deg);
  letter-spacing: 1px;
}

.new-products-footer {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.btn-new-products-all {
  display: inline-block;
  background: #4f46e5;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
  transition: var(--transition);
}

.btn-new-products-all:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.product-tag-red {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #dc2626;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
}

/* Simple Footer */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border-element);
  padding: 2.25rem 1rem;
  text-align: center;
}

.footer-simple-content p {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Catalog section */
/* Catalog Search Bar */
.catalog-search-container {
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1rem;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
}

.catalog-search-container input {
  width: 100%;
  padding: 1rem 3rem 1rem 3.2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-element);
  border-radius: var(--radius-lg);
  color: var(--text-main);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.catalog-search-container input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.catalog-search-container input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.catalog-search-container input:focus + .search-icon {
  color: var(--primary);
}

.clear-search-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  transition: var(--transition);
}

.clear-search-btn:hover {
  background: var(--bg-slate);
  color: var(--text-main);
}

/* Catalog Scrollable Tabs Wrapper */
.tabs-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--max-content-width);
  margin: 0 auto 2.5rem;
  padding: 0 45px; /* Leave space for absolute positioned arrows */
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .tabs-scroll-wrapper {
    padding: 0 35px;
  }
}

.catalog-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0.5rem 0.25rem 0.75rem 0.25rem;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.catalog-tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.tabs-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid var(--border-element);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  outline: none;
}

.tabs-scroll-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.25);
}

.tabs-scroll-btn.prev {
  left: 0;
}

.tabs-scroll-btn.next {
  right: 0;
}

/* Ensure tab buttons don't shrink and look premium */
.catalog-tabs .tab-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Botón Cargar Más Container */
.catalog-load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.catalog-load-more-container button {
  min-width: 220px;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.tab-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-element);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--text-main);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.product-image-container {
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #ffffff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.product-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

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

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-glass);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.btn-customize {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-element);
  color: var(--text-main);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-customize:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  border-color: transparent;
  box-shadow: 0 4px 10px var(--primary-glow);
}

.btn-customize-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white) !important;
  border: none;
  padding: 0.55rem 1.45rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px var(--primary-glow);
  text-align: center;
}

.btn-customize-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 180, 216, 0.4);
}


/* Configurator section */
.configurator-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.configurator-preview-pane {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-lg);
}

.preview-canvas-container {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.06);
  background-color: #ffffff;
  border: 1px solid var(--border-element);
}

.preview-canvas-container canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.preview-instructions {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.preview-instructions span {
  color: var(--primary);
  font-weight: 600;
}

.configurator-controls {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.control-group {
  margin-bottom: 2rem;
}

.control-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.product-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
}

.picker-opt {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-element);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.picker-opt:hover {
  border-color: var(--primary);
  color: var(--text-main);
}

.picker-opt.active {
  background: rgba(0, 180, 216, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.05);
}

.swatch:hover {
  transform: scale(1.1);
}

.swatch.active {
  border-color: var(--text-main);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
}

/* Layer Manager styling */
.layer-manager-header {
  display: flex;
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  padding: 0.3rem;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-element);
}

.layer-select-tab {
  flex: 1;
  padding: 0.6rem 0.5rem;
  text-align: center;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.layer-select-tab.active {
  background: #ffffff;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid var(--secondary);
}

.layer-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd5e1;
  display: inline-block;
  transition: var(--transition);
}

.layer-select-tab.active-layer .layer-indicator-dot {
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
}

.layer-panel {
  display: none;
}

.layer-panel.active {
  display: block;
}

.layer-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-element);
  padding-bottom: 0.75rem;
}

.layer-toggle-row span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .3s;
  border-radius: 24px;
}

.slider-switch:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider-switch {
  background-color: var(--primary);
}

input:checked + .slider-switch:before {
  transform: translateX(22px);
}

.logo-type-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.logo-tab {
  flex: 1;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-element);
  padding: 0.55rem;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.logo-tab.active {
  background: rgba(0, 180, 216, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}

.tab-content {
  display: none;
}

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

.custom-text-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-element);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.03);
}

.custom-text-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--border-focus);
}

.font-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.font-btn {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-element);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.font-btn:hover {
  border-color: var(--primary);
}

.font-btn.active {
  background: rgba(0, 180, 216, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.upload-dropzone {
  border: 2px dashed var(--border-element);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(0,0,0,0.01);
}

.upload-dropzone:hover {
  border-color: var(--primary);
  background: rgba(0, 180, 216, 0.02);
}

.upload-dropzone svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.upload-dropzone p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.upload-dropzone span {
  color: var(--primary);
  font-weight: 600;
}

.range-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.range-slider-wrap input {
  flex: 1;
  accent-color: var(--primary);
  cursor: pointer;
}

.range-slider-wrap span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  min-width: 40px;
  text-align: right;
  color: var(--text-muted);
}

/* Calculator & Form section */
.calculator-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

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

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

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

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #ffffff;
  border: 1px solid var(--border-element);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--border-focus);
}

.calc-sidebar {
  background: var(--bg-slate);
  border: 1px solid var(--border-element);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-element);
  padding-bottom: 0.75rem;
  color: var(--text-main);
}

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

.calc-summary-item.total {
  border-top: 1px dashed var(--border-element);
  padding-top: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.calc-summary-item.total span:last-child {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  text-shadow: 0 2px 10px rgba(0, 180, 216, 0.15);
}

.calc-summary-item span:first-child {
  color: var(--text-muted);
}

.calc-summary-item span:last-child {
  color: var(--text-main);
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  margin-top: 2rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-white);
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.45);
}

/* Footer & contact */
footer {
  background: #0f172a;
  border-top: 1px solid var(--border-element);
  padding: 5rem 2rem 2.5rem;
  color: #94a3b8;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-info-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info-list a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}

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

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
}

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

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Keyframes */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); filter: blur(40px); }
  50% { transform: translate(10px, -20px) scale(1.1); filter: blur(50px); }
  100% { transform: translate(-10px, 10px) scale(0.9); filter: blur(40px); }
}

/* Responsive design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 6rem;
  }
  .hero-text p {
    margin: 0 auto 2.5rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .visual-card {
    transform: none !important;
  }
  .configurator-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .configurator-preview-pane {
    position: static;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition);
    border-top: 1px solid var(--border-element);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.open {
    left: 0;
  }
  
  .nav-links a {
    font-size: 1.4rem;
  }
  
  .btn-contact {
    display: none;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Catalog Loader Spinner */
.loader-container {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  width: 100%;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-element);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Product Detail View (Dedicated Page Container) */
.detail-modal-overlay {
  display: none; /* Controlled by JS block/none */
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 9.5rem 2rem 5rem; /* Space below fixed header */
  min-height: 70vh;
  width: 100%;
  box-sizing: border-box;
  animation: modal-fade-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-fade-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.detail-modal-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: transparent;
}

.btn-back-catalog {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.btn-back-catalog:hover {
  color: var(--primary);
  transform: translateX(-4px);
}

.btn-back-catalog svg {
  vertical-align: middle;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: flex-start;
}

/* Left Pane: Image & Gallery */
.detail-left-pane {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.detail-main-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border: 1px solid var(--border-element);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.detail-main-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.detail-thumbs-container {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.detail-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-element);
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.detail-thumb:hover,
.detail-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 8px var(--primary-glow);
  transform: translateY(-2px);
}

.detail-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Right Pane: Info */
.detail-right-pane {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.detail-right-pane h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.detail-metadata-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.argom-dark-mode .detail-metadata-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-meta-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
}

.argom-dark-mode .detail-meta-item {
  color: var(--text-white);
}

.detail-meta-item .meta-label {
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 0.25rem;
}

.argom-dark-mode .detail-meta-item .meta-label {
  color: rgba(255, 255, 255, 0.5);
}

.detail-meta-item span:not(.meta-label) {
  font-weight: 700;
  color: var(--primary);
}

.detail-color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

.detail-color-swatch:hover {
  transform: scale(1.18);
  border-color: #cbd5e1;
}

.detail-color-swatch.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.4);
  transform: scale(1.12);
}

.argom-dark-mode .detail-color-swatch {
  border-color: #334155;
}

.argom-dark-mode .detail-color-swatch:hover {
  border-color: #475569;
}

.argom-dark-mode .detail-color-swatch.active {
  border-color: #00e5ff;
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.4);
}

.detail-status-badge {
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid var(--primary-glow);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.detail-stock-wrap {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Share Row */
.detail-share-row {
  border-top: 1px solid var(--border-element);
  border-bottom: 1px solid var(--border-element);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-share-row span {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.detail-share-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border-element);
  transition: var(--transition);
}

.share-btn svg {
  flex-shrink: 0;
}

.share-btn.fb:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.share-btn.tw:hover {
  background: #000000;
  color: white;
  border-color: #000000;
}

.share-btn.pin:hover {
  background: #e60023;
  color: white;
  border-color: #e60023;
}

.share-btn.email:hover {
  background: #64748b;
  color: white;
  border-color: #64748b;
}

.share-btn.copy:hover {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.share-btn.ig:hover {
  background: #db2777;
  color: white;
  border-color: #db2777;
}

.share-btn.tt:hover {
  background: #0f172a;
  color: white;
  border-color: #0f172a;
}

/* Info Section (Description & Buttons) */
.detail-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-info-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  position: relative;
}

.btn-detail-quote {
  background: var(--secondary);
  color: white;
  border: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px var(--secondary-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.btn-detail-quote:hover {
  background: #5e0797;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(114, 9, 183, 0.45);
}

.detail-description-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.detail-customize-wrap {
  margin-top: 0.5rem;
}

/* Responsive Modal Detail Grid */
@media (max-width: 850px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Scroll Animations (IntersectionObserver-driven) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.animate-on-scroll.animate-show {
  opacity: 1;
  transform: translateY(0);
}

/* Argom Tech Page Styles */
.argom-page-container {
  width: 100%;
  background-color: var(--bg-light);
  padding-bottom: 4rem;
}

.argom-banner-section {
  position: relative;
  width: 100vw;
  max-width: 100% !important;
  height: 65vh;
  min-height: 450px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url('assets/argom_cover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 0 5rem 6% !important;
}

.argom-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.55) 100%);
  z-index: 1;
}

.argom-banner-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--text-white);
  max-width: 750px;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.argom-banner-desc-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 680px;
  margin-top: 14rem;
}

.argom-banner-desc-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-family: var(--font-heading);
}

.argom-products-section {
  max-width: var(--max-content-width);
  margin: 3.5rem auto 0 auto;
  padding: 0 1.5rem;
}

/* Verano Page Styles */
.verano-page-container {
  width: 100%;
  background-color: var(--bg-light);
  padding-bottom: 4rem;
}

.verano-banner-section {
  position: relative;
  width: 100vw;
  max-width: 100% !important;
  height: 65vh;
  min-height: 450px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url('assets/verano_cover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 2rem !important;
}

.verano-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.25);
  z-index: 1;
}

.verano-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.verano-banner-desc-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  max-width: 800px;
}

.verano-banner-desc-card p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  font-family: var(--font-heading);
  font-weight: 500;
}

.verano-products-section {
  max-width: var(--max-content-width);
  margin: 3.5rem auto 0 auto;
  padding: 0 1.5rem;
}

.verano-footer-button-container {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.btn-verano-all {
  display: inline-block;
  background: #ffffff;
  color: #333333;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 2.2rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-verano-all:hover {
  background: #f3f4f6;
  color: #000000;
  border-color: #999999;
  transform: translateY(-1px);
}

/* Contact Page Styles */
.contact-page-container {
  width: 100%;
  background-color: var(--bg-light);
  padding-top: 140px; /* Clears fixed header */
  padding-bottom: 5rem;
}

.contact-header-section {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto 3rem auto; /* Adjusted margin since padding-top clears the header */
  padding: 0 1.5rem;
}

.contact-header-section h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-list-section {
  max-width: 900px;
  margin: 0 auto 5rem auto;
  padding: 0 1.5rem;
}

.contact-list-item {
  display: flex;
  align-items: center;
  padding: 2.2rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.contact-list-item:first-of-type {
  border-top: 1px solid #e2e8f0;
}

.contact-item-icon {
  margin-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
}

.contact-item-label {
  width: 260px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: #1e293b;
}

.contact-item-value {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.2rem;
}

.contact-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-link:hover {
  color: #0f172a;
}

.contact-email-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #0284c7;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.contact-email-link:hover {
  color: #0369a1;
}

.contact-local-section {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.contact-local-info h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2.2rem;
}

.contact-info-block {
  margin-bottom: 2.2rem;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

.contact-directions-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-directions-link:hover {
  color: #2563eb;
}

.contact-plain-link {
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-plain-link:hover {
  color: #0f172a;
}

.contact-map-wrap {
  width: 100%;
  height: 400px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
  .contact-local-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-map-wrap {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-list-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem 0.5rem;
  }
  
  .contact-item-icon {
    margin-bottom: 0.75rem;
    margin-right: 0;
  }
  
  .contact-item-label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

/* Categories Page Styles */
.categories-page-container {
  width: 100%;
  background-color: var(--bg-light);
  padding-top: 140px; /* Clears fixed header */
  padding-bottom: 5rem;
}

.categories-header-section {
  text-align: center;
  max-width: 900px;
  margin: 2rem auto 3.5rem auto;
  padding: 0 1.5rem;
}

.categories-header-section h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.categories-subtitle {
  font-family: var(--font-body);
  font-size: 1.23rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.categories-grid-section {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--bg-glass);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-element);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.category-card-img-wrap {
  width: 100%;
  height: 180px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.category-card-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Gradient block for "Todos los productos" */
.category-card-img-wrap.gradient-placeholder {
  background: linear-gradient(135deg, #00b4d8 0%, #7209b7 100%);
  padding: 0;
  position: relative;
}

.category-card-img-wrap.gradient-placeholder span {
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.category-card-info {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid var(--border-element);
  background: var(--bg-slate);
}

.category-card-info h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card-info p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

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

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .category-card-img-wrap {
    height: 140px;
  }
}

/* ==========================================================================
   Showroom Section & Bento Grid Styles
   ========================================================================== */
.showroom-section {
  padding: 6rem 2rem;
  max-width: var(--max-content-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--border-element);
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 1.5rem;
  margin-top: 3rem;
}

.showroom-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: default;
}

.showroom-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.showroom-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 10, 19, 0.92) 0%, rgba(7, 10, 19, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0.95;
  transition: var(--transition);
}

.showroom-item-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.25rem;
  transform: translateY(5px);
  transition: var(--transition);
}

.showroom-item-overlay p {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

/* Hover effects */
.showroom-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 245, 255, 0.12);
  border-color: var(--primary);
}

.showroom-item:hover img {
  transform: scale(1.06);
}

.showroom-item:hover .showroom-item-overlay {
  background: linear-gradient(to top, rgba(7, 10, 19, 0.96) 0%, rgba(7, 10, 19, 0.2) 50%, transparent 100%);
}

.showroom-item:hover .showroom-item-overlay h3 {
  transform: translateY(0);
}

.showroom-item:hover .showroom-item-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* Bento Grid item sizes */
.showroom-item.size-large {
  grid-column: span 2;
  grid-row: span 2;
}

.showroom-item.size-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.showroom-item.size-full {
  grid-column: span 4;
  grid-row: span 1;
}

@media (max-width: 1024px) {
  .showroom-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }
  .showroom-item.size-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .showroom-item.size-full {
    grid-column: span 2;
  }
  .showroom-item {
    height: 250px;
  }
}

@media (max-width: 640px) {
  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .showroom-item.size-large,
  .showroom-item.size-medium,
  .showroom-item.size-full {
    grid-column: span 1;
  }
  .showroom-item {
    height: 220px;
  }
  /* Mobile alignment and sizing to prevent text from being cut off at the top */
  .showroom-item-overlay {
    padding: 1.25rem;
    justify-content: flex-end;
  }
  .showroom-item-overlay h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    transform: none;
    margin-bottom: 0.15rem;
  }
  .showroom-item-overlay p {
    opacity: 1;
    transform: none;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Showroom Lightbox Modal Styles
   ========================================================================== */
.showroom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 19, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.showroom-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrap {
  position: relative;
  width: 90%;
  max-width: 1050px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.showroom-lightbox.active .lightbox-content-wrap {
  transform: scale(1);
}

.lightbox-split-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 480px;
  max-height: 80vh;
}

@media (max-width: 768px) {
  .lightbox-split-container {
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
  }
}

.lightbox-media-side {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .lightbox-img {
    height: 250px;
  }
}

.lightbox-info-side {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: var(--text-main);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .lightbox-info-side {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
  }
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.lightbox-subcaption {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.lightbox-categories-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}

.lightbox-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-element);
  border-radius: 12px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.lightbox-cat-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  transform: translateX(4px);
}

.lightbox-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.lightbox-cat-btn:hover .lightbox-arrow {
  transform: translateX(2px);
}

.lightbox-footer {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1rem;
}

.lightbox-counter {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Premium Centered Hero Slider */
.hero-slide-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  z-index: 5;
  padding: 0 1rem;
}

.hero-glass-card {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3.5rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

@media (max-width: 768px) {
  .hero-glass-card {
    padding: 2.25rem 1.5rem;
    border-radius: 16px;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-slide.active .hero-glass-card {
  transform: translateY(0);
  opacity: 1;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.lightbox-close-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  backdrop-filter: blur(5px);
}

.lightbox-nav-btn:hover {
  background: var(--primary);
  color: var(--bg-light);
  box-shadow: 0 0 15px var(--primary-glow);
}

.lightbox-nav-btn.prev {
  left: -70px;
}

.lightbox-nav-btn.next {
  right: -70px;
}

@media (max-width: 1100px) {
  .lightbox-nav-btn.prev {
    left: 20px;
  }
  .lightbox-nav-btn.next {
    right: 20px;
  }
  .lightbox-close-btn {
    right: 20px;
    top: 20px;
    position: fixed;
  }
}

/* AI Chatbot Widget Styling */
#ai-chat-toggle-btn:hover {
  background: var(--primary-color) !important;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
  border-color: rgba(255, 255, 255, 0.2) !important;
}

#ai-chat-toggle-btn:active {
  transform: scale(0.95);
}

/* Scrollbar styling for chat message container */
#ai-chat-messages::-webkit-scrollbar {
  width: 6px;
}

#ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

#ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

#ai-chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Typing Indicator Animation */
.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px 12px 12px 2px;
  align-self: flex-start;
  max-width: 80px;
}

.ai-typing-dot {
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
  animation: ai-bounce 1.4s infinite ease-in-out both;
}

.ai-typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.ai-typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes ai-bounce {
  0%, 80%, 100% { 
    transform: scale(0);
  } 
  40% { 
    transform: scale(1.0);
  }
}

/* ==========================================================================
   Mobile Header and Full-Screen Menu Overlay Styles
   ========================================================================== */
/* Hide mobile-only triggers on desktop */
.mobile-search-trigger,
.mobile-account-trigger {
  display: none !important;
}

/* Mobile menu overlay styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999; /* Higher than header and chatbot widget */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.2);
}

.mobile-menu-header-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.mobile-menu-header-controls .header-icon-btn {
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-header-controls .header-icon-btn:hover {
  color: var(--primary);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-close svg {
  stroke: #ffffff;
  transition: var(--transition);
}

.mobile-menu-close:hover svg {
  stroke: var(--primary);
  transform: scale(1.1);
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu-lang {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.mobile-menu-lang .lang-opt {
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-lang .lang-opt:hover {
  color: var(--primary);
}

.mobile-menu-lang .lang-opt.active {
  color: #ffffff;
  font-weight: 800;
  cursor: default;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.mobile-nav-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.mobile-menu-search {
  width: 100%;
}

.mobile-menu-search input {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.mobile-menu-search input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.mobile-menu-contact {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-contact p {
  margin: 0;
}

.mobile-menu-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
}

.mobile-menu-contact a:hover {
  color: var(--primary);
}

.mobile-menu-new-btn {
  text-align: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
  transition: var(--transition);
  margin-top: 1rem;
  letter-spacing: 0.5px;
}

.mobile-menu-new-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.45);
}

/* Mobile Media Queries Overrides (max-width: 768px) */
@media (max-width: 768px) {
  /* Hide Desktop Header items */
  .original-header .lang-selector,
  .original-header .btn-new-pill,
  .original-header .header-account-desktop {
    display: none !important;
  }

  /* Show and adjust Global Search Bar on Mobile */
  .original-header .global-search-bar {
    display: flex !important;
    width: auto !important;
    flex: 1 !important;
    max-width: 240px !important;
    height: 34px !important;
    margin: 0 0.5rem !important;
    border-radius: 20px !important;
  }
  .original-header .global-search-bar input {
    font-size: 0.75rem !important;
    padding: 0 0.5rem 0 0.75rem !important;
  }
  .original-header .global-search-bar button {
    width: 32px !important;
    height: 32px !important;
  }

  /* Show Mobile Header controls */
  .mobile-search-trigger {
    display: none !important;
  }
  
  .mobile-account-trigger {
    display: flex !important;
  }
  
  .menu-toggle {
    display: flex !important;
  }

  .header-row-1 {
    padding: 0.5rem 1rem !important;
  }

  .logo-img {
    height: 44px !important;
  }

  /* Carousel Ratio Optimization - Display Complete Image */
  .hero-slider-section {
    height: 56.25vw !important; /* Perfect 16:9 ratio matches showroom images */
    min-height: 220px !important;
    margin-top: 54px !important; /* Compact header offset */
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .hero-slide {
    padding-top: 0 !important;
    background-size: cover !important;
  }

  /* Hide arrows and adjust dots on mobile */
  .slider-arrow {
    display: none !important;
  }

  .slider-dots {
    bottom: 12px !important;
    gap: 8px !important;
  }

  .slider-dots .dot {
    width: 8px !important;
    height: 8px !important;
  }

  /* General Spacing / Padding cleanup */
  section {
    padding: 3.5rem 1rem 2rem !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  .section-header h2 {
    font-size: 1.85rem !important;
  }

  /* About section formatting */
  .about-section {
    padding: 3rem 1.25rem 2rem !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .about-text-content {
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
  }
  
  /* Client Logo grid stack */
  .about-logos-grid {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin-top: 2rem !important;
  }

  .client-logo-card {
    width: calc(33.33% - 0.5rem) !important;
    min-width: 80px !important;
    flex-shrink: 1 !important;
    padding: 0.5rem !important;
  }

  /* Product Catalog grid default */
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 1rem !important;
  }

  .product-card {
    padding: 0.75rem !important;
    border-radius: 14px !important;
  }

  .product-info h3 {
    font-size: 0.95rem !important;
  }

  .product-info p {
    font-size: 0.75rem !important;
    margin-bottom: 0.75rem !important;
    min-height: 32px !important;
  }

  .product-price {
    font-size: 0.9rem !important;
  }

  .btn-customize-gradient {
    padding: 0.45rem 1rem !important;
    font-size: 0.75rem !important;
    border-radius: 8px !important;
  }

  /* Customizer Modal & Layout Mobile Overrides */
  .detail-modal-overlay {
    padding: 5.5rem 0.5rem 3rem !important;
  }

  .detail-modal-container {
    width: 100% !important;
  }

  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .detail-left-pane {
    align-items: center !important;
    width: 100% !important;
  }

  .detail-main-img-wrap {
    padding: 0.5rem !important;
    width: 100% !important;
    max-width: 400px !important;
    aspect-ratio: 1/1 !important;
    margin: 0 auto !important;
  }

  #preview-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .detail-right-pane {
    padding: 0 0.5rem !important;
    width: 100% !important;
  }

  #detail-controls-placeholder {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .configurator-controls {
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Customizer elements sizing */
  .layer-select-tab {
    font-size: 0.78rem !important;
    padding: 0.55rem 0.25rem !important;
    gap: 0.2rem !important;
  }

  .layer-indicator-dot {
    width: 6px !important;
    height: 6px !important;
  }

  .logo-tab {
    font-size: 0.82rem !important;
    padding: 0.5rem !important;
  }

  .font-btn {
    font-size: 0.78rem !important;
    padding: 0.45rem 0.20rem !important;
  }

  .font-select-grid {
    gap: 0.35rem !important;
  }

  .range-slider-wrap {
    gap: 0.5rem !important;
  }

  .range-slider-wrap input {
    min-width: 0 !important;
  }

  .range-slider-wrap span {
    font-size: 0.8rem !important;
    min-width: 35px !important;
  }

  /* Stack X/Y position and Perspective H/V sliders on mobile devices */
  .configurator-controls div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* Cart Modal Header Mobile Centering Overrides */
  .cart-modal-header {
    padding: 1rem !important;
  }

  .cart-modal-logo {
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
  }

  .cart-modal-logo img {
    height: 24px !important;
    width: auto !important;
  }

  .cart-modal-logo span {
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
  }

  .cart-modal-title {
    position: static !important;
    transform: none !important;
    font-size: 0.95rem !important;
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    line-height: 1.15 !important;
  }

  .cart-modal-title svg {
    width: 18px !important;
    height: 18px !important;
  }

  .cart-modal-close {
    font-size: 1.5rem !important;
    padding: 0.25rem !important;
  }

  /* Header controls alignment: move icons to the far right on mobile */
  .header-row-1 {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  .header-controls {
    margin-left: auto !important;
    justify-content: flex-end !important;
    gap: 1rem !important;
  }

  /* --- Argom Tech Banner Mobile Optimization --- */
  .argom-banner-section {
    height: 56.25vw !important; /* Perfect 16:9 ratio matches hero slider */
    min-height: 220px !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1rem !important;
    display: flex !important;
    align-items: center !important; /* Center content vertically */
    justify-content: center !important; /* Center content horizontally */
    text-align: center !important;
  }
  
  .argom-banner-content {
    align-items: center !important;
    text-align: center !important;
    max-width: 90% !important;
  }

  .argom-banner-desc-card {
    margin-top: 0 !important; /* Remove the huge desktop top margin */
    max-width: 100% !important;
  }

  .argom-banner-desc-card p {
    font-size: 0.82rem !important; /* Smaller text size to fit full image banner */
    line-height: 1.45 !important;
    margin: 0 !important;
  }

  /* --- Verano Banner Mobile Optimization --- */
  .verano-banner-section {
    height: 56.25vw !important; /* Perfect 16:9 ratio matches hero slider */
    min-height: 220px !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .verano-banner-content {
    max-width: 90% !important;
    align-items: center !important;
  }

  .verano-banner-desc-card {
    max-width: 100% !important;
  }

  .verano-banner-desc-card p {
    font-size: 0.82rem !important; /* Smaller text size to fit full image banner */
    line-height: 1.45 !important;
    margin: 0 !important;
  }
}

/* ==========================================================================
   Mikey AI Chatbot Styling & Animations
   ========================================================================== */
.mikey-chat-toggle {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  outline: none !important;
  animation: mikey-glow-pulse 2.5s infinite alternate ease-in-out !important;
}

.mikey-chat-toggle:hover {
  transform: scale(1.08) translateY(-2px) !important;
  border-color: var(--primary) !important;
}

.mikey-chat-logo-img {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.6)) !important;
  transition: var(--transition) !important;
}

.mikey-chat-toggle:hover .mikey-chat-logo-img {
  transform: rotate(10deg) scale(1.05) !important;
  filter: drop-shadow(0 0 12px rgba(114, 9, 183, 0.8)) !important;
}

/* Glowing Pulse Animation */
@keyframes mikey-glow-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 
                0 0 10px rgba(0, 180, 216, 0.3), 
                0 0 15px rgba(114, 9, 183, 0.15);
  }
  100% {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5), 
                0 0 22px rgba(0, 180, 216, 0.75), 
                0 0 28px rgba(114, 9, 183, 0.45);
    border-color: rgba(0, 245, 255, 0.45);
  }
}

/* Mikey Sweep Entry Animation */
@keyframes mikey-sweep {
  0% {
    transform: translate(150px, 0) scale(0.3) rotate(0deg);
    opacity: 0;
  }
  15% {
    transform: translate(-100px, -20px) scale(0.8) rotate(-20deg);
    opacity: 1;
  }
  35% {
    transform: translate(-60vw, -15vh) scale(1.4) rotate(-45deg);
  }
  50% {
    transform: translate(-75vw, -45vh) scale(1.6) rotate(-90deg);
  }
  65% {
    transform: translate(-30vw, -60vh) scale(1.3) rotate(-45deg);
  }
  80% {
    transform: translate(-10vw, -20vh) scale(1.1) rotate(15deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(360deg);
    opacity: 1;
  }
}

/* Mikey Wiggle Attention Loop */
@keyframes mikey-wiggle {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 
                0 0 10px rgba(0, 180, 216, 0.3), 
                0 0 15px rgba(114, 9, 183, 0.15);
  }
  25% {
    transform: translateY(-8px) rotate(4deg) scale(1.03);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.45), 
                0 0 16px rgba(0, 180, 216, 0.5), 
                0 0 20px rgba(114, 9, 183, 0.3);
  }
  50% {
    transform: translateY(0) rotate(-4deg) scale(0.97);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 
                0 0 10px rgba(0, 180, 216, 0.3), 
                0 0 15px rgba(114, 9, 183, 0.15);
  }
  75% {
    transform: translateY(-5px) rotate(2deg) scale(1.02);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5), 
                0 0 22px rgba(0, 180, 216, 0.75), 
                0 0 28px rgba(114, 9, 183, 0.45);
  }
}

.mikey-chat-toggle.sweep-active {
  animation: mikey-sweep 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

.mikey-chat-toggle.wiggle-active {
  animation: mikey-wiggle 4s ease-in-out infinite !important;
}

/* Mikey Speech Bubble (Nubecita) */
.mikey-bubble {
  position: absolute !important;
  bottom: 74px !important;
  right: 0px !important;
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #ffffff !important;
  padding: 6px 12px !important;
  border-radius: 12px 12px 0px 12px !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  pointer-events: none !important;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  z-index: 10000 !important;
}

/* Only run bubble animation when widget is in wiggle/idle state */
.mikey-chat-toggle.wiggle-active .mikey-bubble {
  animation: mikey-bubble-loop 8s infinite ease-in-out !important;
}

/* Tail pointer */
.mikey-bubble::after {
  content: '' !important;
  position: absolute !important;
  bottom: -6px !important;
  right: 15px !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 6px solid transparent !important;
  border-right: 6px solid transparent !important;
  border-top: 6px solid rgba(15, 23, 42, 0.45) !important;
}

/* Hide bubble when chat panel is open */
.mikey-chat-toggle.chat-open .mikey-bubble {
  opacity: 0 !important;
  display: none !important;
  animation: none !important;
}

@keyframes mikey-bubble-loop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  5% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  30% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  35% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
}

/* ==========================================================================
   Contact Actions Popover Modal Styles
   ========================================================================== */
.contact-action-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 100000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease !important;
}

.contact-action-overlay.active {
  opacity: 1 !important;
}

.contact-action-card {
  width: 90% !important;
  max-width: 340px !important;
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  transform: translateY(20px) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-align: center !important;
  color: #ffffff !important;
  font-family: inherit !important;
}

.contact-action-overlay.active .contact-action-card {
  transform: translateY(0) !important;
}

.contact-action-title {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.35rem !important;
  color: #ffffff !important;
}

.contact-action-subtitle {
  font-size: 0.9rem !important;
  color: #94a3b8 !important;
  margin-bottom: 1.5rem !important;
  word-break: break-all !important;
}

.contact-action-btn-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin-bottom: 1.25rem !important;
}

.contact-action-btn {
  width: 100% !important;
  padding: 0.8rem 1rem !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  transition: all 0.2s ease !important;
  outline: none !important;
}

.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.contact-action-btn svg {
  flex-shrink: 0 !important;
}

.contact-action-btn.primary-action {
  background: var(--primary-color) !important;
  border-color: transparent !important;
}

.contact-action-btn.primary-action:hover {
  opacity: 0.9 !important;
}

.contact-action-btn.secondary-action {
  background: #10b981 !important; /* WhatsApp Green */
  border-color: transparent !important;
}

.contact-action-btn.secondary-action:hover {
  opacity: 0.9 !important;
}

.contact-action-close-btn {
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  transition: color 0.2s !important;
  outline: none !important;
  padding: 0.25rem 1rem !important;
}

.contact-action-close-btn:hover {
  color: #ffffff !important;
}

/* ==========================================================================
   ARGOM TECH SUB-SITE EXPERIMENTAL STYLING
   ========================================================================== */

/* State Theme Overrides */
body.argom-mode {
  background-color: #080c14 !important;
  color: #f8fafc !important;
  transition: background-color 0.5s ease;
}

body.argom-mode header {
  background: rgba(8, 12, 20, 0.9) !important;
  border-bottom: 2px solid #00e5ff !important;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transition: all 0.5s ease;
}

body.argom-mode header .logo-link span {
  color: #00e5ff !important;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

body.argom-mode .nav-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease;
}

body.argom-mode .nav-links a:hover {
  color: #00e5ff !important;
}

body.argom-mode .nav-links a.active {
  color: #00e5ff !important;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

body.argom-mode .header-contact-info a {
  color: rgba(255, 255, 255, 0.75) !important;
  transition: color 0.3s ease;
}

body.argom-mode .header-contact-info a:hover {
  color: #00e5ff !important;
}

body.argom-mode .desktop-lang-selector {
  color: rgba(255, 255, 255, 0.4) !important;
}

body.argom-mode .desktop-lang-selector .lang-opt {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease;
}

body.argom-mode .desktop-lang-selector .lang-opt.active {
  color: #00e5ff !important;
  font-weight: 700 !important;
}

body.argom-mode .desktop-lang-selector .lang-opt:hover {
  color: #00e5ff !important;
}

body.argom-mode .header-icon-btn,
body.argom-mode .menu-toggle {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.3s ease;
}

body.argom-mode .header-icon-btn:hover,
body.argom-mode .menu-toggle:hover {
  color: #00e5ff !important;
}

/* Neon scrollbar inside Argom Tech */
body.argom-mode ::-webkit-scrollbar-thumb {
  background: rgba(0, 229, 255, 0.3) !important;
}
body.argom-mode ::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 229, 255, 0.5) !important;
}

/* Argom Page container */
.argom-page-container {
  width: 100%;
  background-color: #080c14 !important;
  padding-bottom: 4rem;
  overflow: hidden;
}

.argom-cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}

.argom-brand-hologram {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.argom-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.3rem;
  color: #00e5ff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: monospace;
}

.argom-neon-logo {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.15rem;
  margin: 0;
  line-height: 1;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(0, 229, 255, 0.5),
    0 0 30px rgba(0, 229, 255, 0.3);
  font-family: system-ui, -apple-system, sans-serif;
  animation: logo-glow-anim 2.5s ease-in-out infinite alternate;
}

@keyframes logo-glow-anim {
  from {
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(0, 229, 255, 0.5),
      0 0 30px rgba(0, 229, 255, 0.3);
  }
  to {
    text-shadow: 
      0 0 15px rgba(255, 255, 255, 0.9),
      0 0 25px rgba(0, 229, 255, 0.8),
      0 0 40px rgba(0, 229, 255, 0.6),
      0 0 60px rgba(41, 121, 255, 0.4);
  }
}

.btn-argom-cta {
  background: linear-gradient(135deg, #00e5ff 0%, #2979ff 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  color: #080c14;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.btn-argom-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
  opacity: 0.95;
}

/* Secondary Sub-Navbar */
.argom-sub-nav {
  background: rgba(10, 15, 30, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 70px;
  z-index: 99;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.argom-sub-nav-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.argom-sub-nav-container::-webkit-scrollbar {
  display: none;
}

.argom-filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  outline: none;
}

.argom-filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.argom-filter-btn.active {
  background: rgba(0, 229, 255, 0.1);
  border-color: #00e5ff;
  color: #00e5ff;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.15);
}

/* Bento Grid Technical Specifications Showcase */
.argom-specs-section {
  max-width: var(--max-content-width);
  margin: 4rem auto 0 auto;
  padding: 0 1.5rem;
}

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

.spec-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.spec-card:hover {
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.05);
}

.spec-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.spec-card-blue .spec-icon-box {
  background: rgba(41, 121, 255, 0.1);
  color: #2979ff;
  box-shadow: 0 0 10px rgba(41, 121, 255, 0.2);
}

.spec-card-cyan .spec-icon-box {
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.spec-card-purple .spec-icon-box {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.spec-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.spec-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* Glassmorphic Product Cards inside Argom Page */
.argom-page-container .product-card {
  background: rgba(15, 23, 42, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.argom-page-container .product-card:hover {
  background: rgba(15, 23, 42, 0.65) !important;
  border-color: #00e5ff !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2) !important;
}

.argom-page-container .product-card h3 {
  color: #ffffff !important;
}

.argom-page-container .product-card p {
  color: #00e5ff !important;
  font-weight: 600;
}

/* Portal Transition Animations */
@keyframes portal-glitch-anim {
  0% {
    transform: translate(0);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  }
  20% {
    transform: translate(-2px, 2px);
    text-shadow: 2px -2px #ff0055, -2px 2px #00e5ff;
  }
  40% {
    transform: translate(-2px, -2px);
    text-shadow: -2px 2px #ff0055, 2px -2px #00e5ff;
  }
  60% {
    transform: translate(2px, 2px);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  }
  80% {
    transform: translate(2px, -2px);
    text-shadow: 2px 2px #ff0055, -2px -2px #00e5ff;
  }
  100% {
    transform: translate(0);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
  }
}

@keyframes portal-loader-anim {
  0% { left: -100px; }
  100% { left: 200px; }
}

@media (max-width: 768px) {
  .argom-specs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .argom-neon-logo {
    font-size: 2.5rem;
  }
}

/* Argom Mode Section Header and Footer Overrides */
.argom-page-container .section-header h2 {
  background: linear-gradient(135deg, #ffffff 0%, #00e5ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.2) !important;
}

.argom-page-container .section-header p {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.argom-mode footer {
  background: #080c14 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: background 0.5s ease, border-top 0.5s ease;
}

body.argom-mode .footer-simple-content p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Make date picker calendar icon white for readability */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(100%);
  opacity: 0.85;
  cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* --- CART MODAL RESPONSIVE STYLING --- */
.cart-modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1rem;
}

.cart-modal-dialog {
  max-width: 1400px;
  width: 100%;
  max-height: 94vh;
  background: #1a1e2c;
  border-radius: 12px;
  border: 1px solid #334155;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2.5rem;
}

.cart-modal-left-form {
  flex: 1.1;
  min-width: 0;
  margin: 0;
}

.cart-modal-right-summary {
  flex: 0.9;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #334155;
  padding-left: 2.5rem;
}

/* Compact input and label spacing to reduce height */
.cart-form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.cart-form-group {
  flex: 1;
  min-width: 0;
}

.cart-form-label {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.cart-form-input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  background: #0f172a !important;
  border: 1px solid #334155 !important;
  border-radius: 6px;
  color: #ffffff !important;
  font-family: inherit;
  font-size: 0.85rem;
  box-sizing: border-box;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .cart-modal-container {
    padding: 0.5rem;
  }
  .cart-modal-dialog {
    max-height: 98vh;
  }
  .cart-modal-body {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 1.5rem;
  }
  .cart-modal-right-summary {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #334155;
    padding-top: 1.25rem;
  }
  .cart-modal-header {
    padding: 1rem 1.25rem !important;
  }
  .cart-modal-title {
    font-size: 1.15rem !important;
  }
  .cart-form-row {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

/* Custom Admin Tabs Styling */
.admin-tabs {
  scrollbar-width: none; /* Firefox */
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  height: 48px !important;
  min-height: 48px !important;
  flex-shrink: 0 !important;
  overflow-y: hidden !important;
  gap: 0.75rem !important;
  white-space: nowrap !important;
}
.admin-tabs::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}
.admin-tab-btn {
  background: transparent !important;
  border: none !important;
  color: #94a3b8 !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  padding: 0.5rem 0.75rem !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  border-bottom: 2px solid transparent !important;
  display: inline-flex;
  align-items: center !important;
  gap: 0.4rem !important;
  height: 38px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}
.admin-tab-btn:hover {
  color: #ffffff !important;
}
.admin-tab-btn.active {
  color: var(--primary) !important;
  border-bottom: 2px solid transparent !important;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.status-badge.status-pendiente {
  background: rgba(234, 179, 8, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(234, 179, 8, 0.25);
}

.status-badge.status-aceptado {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.status-badge.status-facturado {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.status-badge.status-pagado {
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.status-badge.status-rechazado,
.status-badge.status-cancelado {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ==========================================================================
   Marketing Service Custom Styling
   ========================================================================== */

/* Marketing Instructions Modal */
.marketing-instructions-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.marketing-instructions-modal.active {
  opacity: 1;
  visibility: visible;
}

.marketing-modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-element);
  width: 90%;
  max-width: 600px;
  max-height: 85vh;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.marketing-instructions-modal.active .marketing-modal-card {
  transform: translateY(0);
}

.marketing-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-element);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketing-modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.marketing-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.marketing-modal-close:hover {
  background: var(--bg-slate);
  color: var(--text-main);
}

.marketing-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.marketing-step-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.marketing-step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.marketing-step-num {
  background: var(--primary-glow);
  color: var(--primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.marketing-step-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 0.25rem 0;
}

.marketing-step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Upload Container */
.marketing-upload-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.marketing-upload-box {
  border: 2px dashed rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  background: var(--bg-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.marketing-upload-box.dragover {
  border-color: var(--primary);
  background: var(--primary-glow);
}

.marketing-upload-box svg {
  color: var(--text-muted);
  transition: var(--transition);
}

.marketing-upload-box:hover svg,
.marketing-upload-box.dragover svg {
  color: var(--primary);
  transform: translateY(-2px);
}

.marketing-upload-box span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.marketing-upload-box span strong {
  color: var(--primary);
}

.marketing-file-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.marketing-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-slate);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-element);
  animation: slideIn 0.2s ease-out;
}

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

.marketing-file-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  flex: 1;
}

.marketing-file-info svg {
  color: var(--primary);
  flex-shrink: 0;
}

.marketing-file-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marketing-file-size {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.marketing-file-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition);
}

.marketing-file-remove:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Toggle Switches */
.marketing-toggle-container {
  display: flex;
  background: var(--bg-slate);
  padding: 0.25rem;
  border-radius: 30px;
  border: 1px solid var(--border-element);
  position: relative;
  gap: 0.25rem;
}

.marketing-toggle-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 25px;
  transition: var(--transition);
}

.marketing-toggle-btn.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Dark Mode Overrides */
.argom-dark-mode .marketing-modal-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
}

.argom-dark-mode .marketing-modal-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.argom-dark-mode .marketing-modal-title {
  color: #ffffff;
}

.argom-dark-mode .marketing-modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.argom-dark-mode .marketing-step-num {
  background: rgba(0, 229, 255, 0.15);
  color: #00e5ff;
}

.argom-dark-mode .marketing-step-content h4 {
  color: #ffffff;
}

.argom-dark-mode .marketing-step-content p {
  color: #94a3b8;
}

.argom-dark-mode .marketing-upload-box {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.5);
}

.argom-dark-mode .marketing-upload-box.dragover {
  border-color: #00e5ff;
  background: rgba(0, 229, 255, 0.08);
}

.argom-dark-mode .marketing-upload-box svg {
  color: #94a3b8;
}

.argom-dark-mode .marketing-upload-box:hover svg,
.argom-dark-mode .marketing-upload-box.dragover svg {
  color: #00e5ff;
}

.argom-dark-mode .marketing-upload-box span {
  color: #94a3b8;
}

.argom-dark-mode .marketing-upload-box span strong {
  color: #00e5ff;
}

.argom-dark-mode .marketing-file-item {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(255, 255, 255, 0.05);
}

.argom-dark-mode .marketing-file-name {
  color: #ffffff;
}

.argom-dark-mode .marketing-file-size {
  color: #94a3b8;
}

.argom-dark-mode .marketing-toggle-container {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.05);
}

.argom-dark-mode .marketing-toggle-btn.active {
  background: rgba(30, 41, 59, 0.8);
  color: #00e5ff;
}



