/* KatikVitamin - Main Styles */

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

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222.2, 84%, 4.9%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222.2, 84%, 4.9%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(222.2, 84%, 4.9%);
  --primary: hsl(158, 64%, 52%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 40%, 96.1%);
  --secondary-foreground: hsl(222.2, 47.4%, 11.2%);
  --muted: hsl(210, 40%, 96.1%);
  --muted-foreground: hsl(215.4, 16.3%, 46.9%);
  --accent: hsl(210, 40%, 96.1%);
  --accent-foreground: hsl(222.2, 47.4%, 11.2%);
  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(210, 40%, 98%);
  --border: hsl(214.3, 31.8%, 91.4%);
  --input: hsl(214.3, 31.8%, 91.4%);
  --ring: hsl(158, 64%, 52%);

  /* Sections */
  --section-pink: hsl(330, 60%, 98.5%);
  --section-mint: hsl(158, 40%, 97.5%);
  --section-smoke: hsl(220, 14%, 98%);
  --section-sky: hsl(200, 80%, 98%);

  /* Text */
  --text-heading: hsl(222.2, 47.4%, 11.2%);
  --text-body: hsl(215.4, 16.3%, 46.9%);

  /* Effects */
  --radius: 0.75rem;
  --shadow-card: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-card-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* ===== BASE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  color: var(--text-body);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== UTILITY CLASSES ===== */
.section-pink {
  background-color: var(--section-pink);
}

.section-mint {
  background-color: var(--section-mint);
}

.section-smoke {
  background-color: var(--section-smoke);
}

.section-sky {
  background-color: var(--section-sky);
}

.gradient-primary {
  background: linear-gradient(135deg, hsl(158, 64%, 52%) 0%, hsl(168, 70%, 45%) 100%);
}

.text-gradient {
  background: linear-gradient(135deg, hsl(158, 64%, 52%) 0%, hsl(168, 70%, 45%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-shadow {
  box-shadow: var(--shadow-card);
}

.card-shadow-hover {
  box-shadow: var(--shadow-card-hover);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--radius) - 4px);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  background: linear-gradient(135deg, hsl(158, 64%, 52%) 0%, hsl(168, 70%, 45%) 100%);
  color: var(--primary-foreground);
  box-shadow: 0 4px 12px hsl(158 64% 52% / 0.2);
}

.btn-hero:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-hero:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(158 64% 52% / 0.4);
}

.btn-hero:active:not(:disabled) {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--radius) - 4px);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline:hover:not(:disabled) {
  background: var(--secondary);
  border-color: var(--primary);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.calendly-cta {
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid #d4e2ff;
  background: linear-gradient(135deg, #eff5ff 0%, #f9fbff 100%);
}

.btn-calendly {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #1f6feb;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1f6feb 0%, #0f5de0 100%);
  box-shadow: 0 6px 16px rgba(31, 111, 235, 0.25);
}

.btn-calendly:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(31, 111, 235, 0.35);
}

.calendly-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.order-product-card {
  margin-bottom: 0.5rem;
}

.payment-success-steps {
  margin-top: 0.25rem;
}

.payment-next-wrapper-with-calendly {
  padding-bottom: 0;
  margin-bottom: 8px!important;
}

.payment-success-step.flex {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  background: #fbfcfd;
  padding: 1rem;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.payment-success-steps-with-calendly .payment-success-step:last-child {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}

.payment-success-calendly-joined {
  margin-top: -0.75rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 1px solid #d4e2ff;
}

.payment-success-step-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto;
}

.payment-success-step-body {
  width: 100%;
}

.payment-success-step-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  line-height: 1.35;
}

.payment-success-step-text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.45;
}

.payment-form-links {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-top: 0.9rem;
  padding: 0.8rem;
  border: 1px solid #e6ecef;
  border-radius: calc(var(--radius) + 2px);
  background: #fcfefe;
}

.payment-form-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid #bde9de;
  background: #f4fdf9;
  color: #15725c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.payment-form-link:hover {
  border-color: #8fdac8;
  background: #eaf9f4;
  color: #0d5f4b;
}

.payment-contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 0.9rem;
  padding: 0.8rem;
  border: 1px solid #e6ecef;
  border-radius: calc(var(--radius) + 2px);
  background: #fcfefe;
}

.payment-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.payment-contact-btn-email {
  border-color: #d6dbe2;
  background: #ffffff;
  color: #1f2937;
}

.payment-contact-btn-email:hover {
  border-color: #b7c0cb;
  background: #f7f9fb;
}

.payment-contact-btn-telegram {
  border-color: #21b386;
  background: linear-gradient(135deg, #2ecb96 0%, #22b07f 100%);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(34, 176, 127, 0.24);
}

.payment-contact-btn-telegram:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(34, 176, 127, 0.32);
}

@media (max-width: 640px) {
  .btn-calendly {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .payment-form-links {
    grid-template-columns: 1fr 1fr;
  }

  .payment-contact-actions {
    grid-template-columns: 1.4fr 1fr;
  }
}

/* ===== FORM ELEMENTS ===== */
.input,
.textarea,
.select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--background);
  border: 1px solid var(--input);
  border-radius: calc(var(--radius) - 4px);
  outline: none;
  transition: all 0.2s ease;
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px hsl(158 64% 52% / 0.1);
}

.textarea {
  resize: vertical;
  min-height: 100px;
}

.label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: var(--primary);
}

/* ===== SECTIONS ===== */
section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .md\:grid-cols-2,
  .md\:grid-cols-3,
  .lg\:grid-cols-2,
  .lg\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* ===== FLEX ===== */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* ===== SPACING ===== */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* ===== RESPONSIVE UTILITIES ===== */
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }
}

/* ===== MISC ===== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted-foreground);
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-xl {
  border-radius: calc(var(--radius) + 4px);
}

.rounded-2xl {
  border-radius: calc(var(--radius) + 8px);
}

.rounded-3xl {
  border-radius: calc(var(--radius) + 16px);
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.opacity-90 {
  opacity: 0.9;
}

.line-through {
  text-decoration: line-through;
}

/* Size utilities */
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }

.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }

/* Spacing utilities */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.mt-2 { margin-top: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* Display utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

/* Border utilities */
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }

/* Background utilities */
.bg-secondary { background-color: var(--secondary); }
.bg-primary { background-color: var(--primary); }

/* Text color utilities */
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }

/* Hover utilities */
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:text-primary-foreground:hover { color: var(--primary-foreground); }
.hover\:text-foreground:hover { color: var(--foreground); }

/* Transition utilities */
.transition-colors { transition: color 0.3s ease; }
.transition-all { transition: all 0.3s ease; }

/* Other utilities */
.flex-shrink-0 { flex-shrink: 0; }
.leading-tight { line-height: 1.25; }
.font-medium { font-weight: 500; }
.font-extrabold { font-weight: 800; }
.max-w-lg { max-width: 32rem; }

/* Z-index */
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }

/* Backdrop blur */
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* Min height */
.min-h-screen { min-height: 100vh; }

/* Top/Right/Bottom/Left */
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

/* Border radius special */
.rounded-bl-\[100px\] { border-bottom-left-radius: 100px; }

/* Gap utilities (for flex/grid) */
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Modal overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-overlay.hidden {
  display: none;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  margin-bottom: 1rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.7;
}

.modal-close:hover {
  opacity: 1;
}

/* Input field */
.input-field {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: all 0.2s ease;
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(158 64% 52% / 0.1);
}

/* Checkout phone field with intl-tel-input */
.iti {
  width: 100%;
}

.iti .input,
.iti .input-field {
  width: 100%;
  box-sizing: border-box;
}

.iti .input {
  padding-left: 3.25rem;
}

.iti .input-field {
  width: 100%;
  padding-left: 3.25rem;
}

.iti__country-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
}

.iti__selected-flag {
  border-radius: var(--radius) 0 0 var(--radius);
}

/* Background colors with opacity */
.bg-background\/95 { background-color: hsl(0 0% 100% / 0.95); }

/* Border colors with opacity */
.border-border\/50 { border-color: hsl(220 14% 90% / 0.5); }

/* Background smoke and sky colors */
.bg-smoke-50 { background-color: hsl(220, 14%, 96%); }
.bg-sky-50 { background-color: hsl(200, 80%, 96%); }
.bg-sky-100 { background-color: hsl(200, 80%, 92%); }

/* Positioning utilities */
.-top-4 { top: -1rem; }
.-right-4 { right: -1rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }

/* Width utilities */
.w-1\/2 { width: 50%; }

/* Additional max-width utilities */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-none { max-width: none; }

/* Additional padding utilities */
.pt-28 { padding-top: 7rem; }
.pt-32 { padding-top: 8rem; }
.pb-16 { padding-bottom: 4rem; }
.pr-12 { padding-right: 3rem; }
.pl-6 { padding-left: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-8 { margin-bottom: 2rem; }

/* Sticky positioning */
.sticky { position: sticky; }
.top-28 { top: 7rem; }

/* Grid column span utilities */
.lg\:col-span-2 {
  grid-column: span 2 / span 2;
}
.lg\:col-span-3 {
  grid-column: span 3 / span 3;
}
.lg\:col-span-5 {
  grid-column: span 5 / span 5;
}

/* Order utilities */
.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* Grid template columns responsive */
.sm\:grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

/* Text size responsive */
.md\:text-4xl {
  font-size: 2.25rem;
}

@media (max-width: 768px) {
  .md\:text-4xl {
    font-size: 1.875rem;
  }
}

/* Additional text utilities */
.leading-relaxed { line-height: 1.625; }
.cursor-pointer { cursor: pointer; }

/* Margin utilities */
.mr-2 { margin-right: 0.5rem; }

/* List utilities */
.list-disc { list-style-type: disc; }

/* Fill utilities */
.fill-primary { fill: var(--primary); }

/* Prose utilities for content areas */
.prose {
  color: var(--text-body);
  max-width: 65ch;
}

.prose h2 {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose h3 {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

.prose a:hover {
  text-decoration: none;
}

.prose strong {
  font-weight: 600;
  color: var(--text-heading);
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Grid utilities for larger screens */
@media (min-width: 1024px) {
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Background white */
.bg-white { background-color: #ffffff; }

/* Shadow utilities */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }

/* Border utilities */
.border { border: 1px solid var(--border); }
.border-border { border-color: var(--border); }

/* Gradient utilities */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-primary\/5 { --tw-gradient-from: hsl(158 64% 52% / 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-background { --tw-gradient-to: var(--background); }
.from-primary\/10 { --tw-gradient-from: hsl(158 64% 52% / 0.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-sky-200 { --tw-gradient-to: hsl(200, 80%, 85%); }

/* Flex utilities */
.flex-1 { flex: 1 1 0%; }

@media (min-width: 640px) {
  .sm\:flex-1 { flex: 1 1 0%; }
  .sm\:flex-row { flex-direction: row; }
}

/* Additional responsive flex utilities */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
}
