/* Minimal Tailwind-like utilities for pricing pages only.
   Purpose: keep existing utility classes working WITHOUT Tailwind preflight/reset,
   which can conflict with Bootstrap/header styles.
*/

/* Layout */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.min-h-0 { min-height: 0; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.block { display: block; }
.w-full { width: 100%; }

/* Spacing */
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }

/* Divide */
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; }
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) { border-top-color: #e5e7eb; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.leading-snug { line-height: 1.375; }
.font-normal { font-weight: 400; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Colors */
.bg-white { background-color: #ffffff; }
.bg-stone-100 { background-color: #f5f5f4; }
.text-gray-800 { color: #1f2937; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-blue-500 { color: #3b82f6; }

/* Borders / radius */
.border { border-width: 1px; border-style: solid; }
.border-gray-200 { border-color: #e5e7eb; }
.rounded-xl { border-radius: 0.75rem; }

/* SVG sizing helpers */
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.flex-shrink-0 { flex-shrink: 0; }

/* Interaction */
.cursor-pointer { cursor: pointer; }
.transition-all { transition-property: all; }
.duration-300 { transition-duration: 300ms; }
.transform { transform: translateZ(0); }

/* Responsive variants used on pricing pages */
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:gap-8 { gap: 2rem; }
  .lg\:mt-8 { margin-top: 2rem; }
}

