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

:root {
  /* Premium Theme Palette - Refined */
  --bg: #f8fafc;
  --bg-secondary: #ffffff;
  --panel: #ffffff;
  --panel-hover: #f1f5f9;

  --fg: #0f172a;
  --fg-secondary: #475569;
  --muted: #64748b;

  --primary: #4f46e5;
  /* Indigo 600 */
  --primary-light: #6366f1;
  /* Indigo 500 */
  --primary-dark: #4338ca;
  /* Indigo 700 */
  --accent: #8b5cf6;
  /* Violet 500 */
  --accent-tertiary: #ec4899;
  /* Pink 500 */

  /* Slate Colors (Neutral Dark) */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --gradient-hover: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
  --gradient-text: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --gradient-surface: linear-gradient(to bottom right, #ffffff, #f8fafc);

  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.15);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --max-width: 1280px;
  /* Slightly wider for modern feel */

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--slate-900);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Background Elements */
.bg-gradient-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 25%);
  pointer-events: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.9;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav a {
  color: var(--slate-600);
  text-decoration: none;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 99px;
  /* Pill shape nav items */
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--primary);
  background: var(--slate-50);
}

.nav a.btn-primary {
  background: var(--slate-900);
  /* Dark button in header for contrast */
  color: white;
  padding: 0.6rem 1.5rem;
}

.nav a.btn-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--fg);
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(79, 70, 229, 0.05);
  /* Very light primary tint */
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: 99px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.pill-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(79, 70, 229, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--slate-900);
}

.hero .lead {
  font-size: 1.25rem;
  color: var(--slate-500);
  margin-bottom: 2.5rem;
  max-width: 90%;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 99px;
  /* Pill buttons */
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
  background: white;
  color: var(--slate-700);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--slate-300);
  color: var(--slate-900);
  background: var(--slate-50);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.tilt-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 2rem;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.01),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 10;
}

/* Solutions Section */
.solutions {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--slate-500);
  font-size: 1.25rem;
  line-height: 1.6;
}

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

.feature-card {
  background: var(--slate-50);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: white;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.feature-card .card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 2rem;
  /* Ensure SVG scales if using font icons, but SVGs inside will handle size */
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.feature-card:hover .card-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--slate-900);
}

.feature-card p {
  color: var(--slate-500);
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
}

.feature-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.feature-link:hover {
  gap: 0.75rem;
  color: var(--primary-dark);
}

/* Form Section */
.form-section {
  padding: 8rem 0;
  background: var(--slate-50);
  position: relative;
}

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

.form-wrapper {
  background: white;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-xl, 0 25px 50px -12px rgba(0, 0, 0, 0.05));
  /* Defined shadow here or use simpler */
  border: 1px solid var(--border-light);
}

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

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--slate-700);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--slate-50);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--fg);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
  background: white;
}

.form-title-group {
  background: transparent;
  padding: 0;
  border-left: none;
  margin: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.form-title-group h3 {
  font-size: 1.25rem;
  color: var(--slate-900);
  margin: 0;
}

.form-title-group p {
  margin-top: 0.5rem;
  font-weight: normal;
}

.electrovanne-section {
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.info-panel {
  background: var(--slate-900);
  /* Dark panel now to match professional vibe */
  color: white;
  border-radius: 24px;
  padding: 3rem;
  position: sticky;
  top: 8rem;
  box-shadow: var(--shadow-lg);
}

.info-panel h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.info-panel ul {
  list-style: none;
  margin: 2rem 0;
}

.info-panel li {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  opacity: 1;
  /* removed opacity for better readability */
  color: var(--slate-300);
  font-size: 1.05rem;
}

.info-panel li::before {
  content: '✓';
  background: var(--primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  font-weight: bold;
}

/* Contact Section (Already Updated previously but ensuring alignment)
 * User said "based on the contact new design", so I assume the Contact Section CSS
 * from previous turn is exactly what they want. I will not touch .contact-section
 * as I am replacing UP TO it usually, but here I am replacing UP TO footer.
 * So I MUST include the Contact Section CSS here to ensure it persists or update it.
 * I will copy the Contact Section CSS from the READ (lines 498-615) and paste it here essentially unchanged,
 * or refine it slightly if needed. I'll stick to the "Modern" one I saw.
 */

/* --- Modern Contact Section (Preserved/Refined) --- */
.contact-section {
  padding: 8rem 0;
  /* More padding */
  background: var(--slate-900);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.contact-modern-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-cta {
  max-width: 550px;
}

.contact-heading {
  font-size: 3.5rem;
  /* Larger */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 1.25rem;
  color: var(--slate-400);
  line-height: 1.7;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 4rem;
}

.contact-list-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
  transition: all 0.3s;
}

.contact-list-item:hover .icon-circle {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  /* Squircle */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-link,
.contact-text {
  font-size: 1.35rem;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .contact-modern-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-list {
    border-left: none;
    padding-left: 0;
    gap: 2rem;
  }

  .contact-heading {
    font-size: 2.5rem;
  }
}

/* Footer (Dark Premium) */
.site-footer {
  background: var(--slate-900);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-400);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.footer-inner a {
  color: var(--slate-300);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-inner a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .form-container {
    grid-template-columns: 1fr;
  }

  .info-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    min-width: 250px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* Hero Product Video/Image Slider */
.hero-visual {
  width: 100%;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.product-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  /* Adjust ratio as needed */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #000;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-end;
  /* Overlay for text readability */
}

.slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

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

.slide-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  color: white;
  width: 100%;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 0.3s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.slide-content h3 {
  font-size: 1.75rem;
  margin: 0;
  color: white;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Controls */
.slider-controls {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 0;
}

.slider-btn:hover {
  background: white;
  color: var(--fg);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  transform: scale(1.3);
}

/* Responsive adjustment for slider */
@media (max-width: 768px) {
  .product-slider {
    aspect-ratio: 16/10;
  }

  .slide-content h3 {
    font-size: 1.4rem;
  }
}

/* Electrovanne Section Styles */
.electrovanne-section {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.electrovanne-section:hover {
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.08);
}

.electrovanne-section h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.electrovanne-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.electrovanne-row .form-row {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .electrovanne-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .electrovanne-row .form-row {
    width: 100%;
  }
}

/* Admin Input Styles */
.admin-input {
  width: 100px;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  text-align: right;
  font-family: monospace;
  transition: var(--transition);
}

.admin-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.15);
}

.admin-input.calculated {
  background: #f1f5f9;
  color: var(--muted);
}

.btn-send-email {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-send-email:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.btn-send-email:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-send-email.sending {
  background: #64748b;
}

.btn-send-email.success {
  background: #059669;
}

/* Status Dropdown Styles */
.status-dropdown {
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.8em;
  padding-right: 1.75rem;
  min-width: 110px;
}

.status-dropdown:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-dropdown:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.status-dropdown.status-updated {
  animation: statusPulse 0.5s ease;
}

@keyframes statusPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* Premium Product Selection Grid */
.product-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.product-option-card {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.product-option-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-option-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-option-card input:checked+.product-content {
  color: var(--primary);
}

.product-option-card input:checked~.check-circle {
  background: var(--primary);
  border-color: var(--primary);
  opacity: 1;
  transform: scale(1);
}

.product-option-card:has(input:checked) {
  border-color: var(--primary);
  background: rgba(79, 70, 229, 0.03);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.15);
}

.product-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--slate-400);
  transition: color 0.3s;
}

.product-option-card input:checked+.product-content .product-icon {
  color: var(--primary);
}

.product-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--slate-900);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.4;
}

.check-circle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: white;
}

.check-circle svg {
  width: 14px;
  height: 14px;
}

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