/* Static utility CSS (replaces the Tailwind CDN runtime script).
   Contains only the utility classes actually used in this theme's templates,
   hand-authored to match Tailwind's default scale so class names stay identical. */

/* Layout */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.grid { display: grid; }
.absolute { position: absolute; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.list-none { list-style: none; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }

/* Spacing */
.p-0 { padding: 0; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pt-10 { padding-top: 2.5rem; }
.m-0 { margin: 0; }
.mb-4 { margin-bottom: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }

/* Sizing */
.w-1\.5 { width: 0.375rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.h-1\.5 { height: 0.375rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }

/* Position offsets */
.top-2 { top: 0.5rem; }
.left-2 { left: 0.5rem; }
.right-2 { right: 0.5rem; }
.z-10 { z-index: 10; }

/* Borders / radius */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-brand-pinktint { border-color: #FFF1F2; }

/* Shadows */
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }

/* Backgrounds */
.bg-white { background-color: #FFFFFF; }
.bg-brand-pinktint { background-color: #FFF1F2; }
.bg-brand-bluetint { background-color: #F0F9FF; }
.bg-brand-green { background-color: #047857; }
.bg-brand-green\/10 { background-color: rgba(4,120,87,0.1); }
.hover\:bg-brand-blue:hover { background-color: #0284C7; }
.hover\:bg-brand-pink:hover { background-color: #9F1239; }
.hover\:bg-white:hover { background-color: #FFFFFF; }

.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to)); }
.from-black\/80 { --tw-gradient-from: rgba(0,0,0,0.8); }
.via-black\/10 { --tw-gradient-via: rgba(0,0,0,0.1); }
.to-transparent { --tw-gradient-to: transparent; }
.from-brand-goldlight { --tw-gradient-from: #D97706; }
.to-brand-gold { --tw-gradient-to: #B45309; }

/* Text color */
.text-white { color: #FFFFFF; }
.text-brand-pink { color: #9F1239; }
.text-brand-blue { color: #0284C7; }
.text-brand-green { color: #047857; }
.text-brand-dark { color: #111827; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.hover\:text-white:hover { color: #FFFFFF; }

/* Typography */
.text-center { text-align: center; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-relaxed { line-height: 1.625; }
.no-underline { text-decoration: none; }
.opacity-60 { opacity: 0.85; }
.opacity-70 { opacity: 0.7; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Responsive */
@media (min-width: 640px) {
	.sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
	.md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}
