/* tw-lite.css: minimal utilities for navbar consistency (no CDN) */

/* Layout */
.fixed{position:fixed}.relative{position:relative}.absolute{position:absolute}
.top-0{top:0}.left-0{left:0}.right-0{right:0}.inset-y-0{top:0;bottom:0}
.z-50{z-index:50}.hidden{display:none}.block{display:block}.flex{display:flex}
.items-center{align-items:center}.justify-between{justify-content:space-between}
.flex-nowrap{flex-wrap:nowrap}
.shrink-0{flex-shrink:0}
.whitespace-nowrap{white-space:nowrap}

/* Container */
.container{max-width:1200px;width:100%;margin-left:auto;margin-right:auto}
.mx-auto{margin-left:auto;margin-right:auto}.px-4{padding-left:1rem;padding-right:1rem}
.py-3{padding-top:0.75rem;padding-bottom:0.75rem}
.py-4{padding-top:1rem;padding-bottom:1rem}

/* Spacing */
.space-x-4> :not([hidden])~ :not([hidden]){margin-left:1rem}
.space-x-6> :not([hidden])~ :not([hidden]){margin-left:1.5rem}

/* Sizing */
.w-16{width:4rem}.h-16{height:4rem}.w-24{width:6rem}.w-80{width:20rem}
.w-12{width:3rem}.h-12{height:3rem}.w-10{width:2.5rem}.h-10{height:2.5rem}
.w-5{width:1.25rem}.h-5{height:1.25rem}

/* Typography */
.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}
.text-xl{font-size:1.25rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}
.font-medium{font-weight:500}.font-bold{font-weight:700}
.text-white{color:#fff}.text-gray-700{color:#374151}
.text-pink-400{color:#f472b6}.text-pink-600{color:#db2777}.text-pink-800{color:#9d174d}
.hover\:text-pink-600:hover{color:#db2777}

/* Position helpers */
.-top-2{top:-0.5rem}.-right-2{right:-0.5rem}.top-1\/2{top:50%}
.transform{transform:translateZ(0)}.-translate-y-1\/2{transform:translateY(-50%)}

/* Borders/Radii */
.border{border:1px solid #e5e7eb}.border-b{border-bottom:1px solid #e5e7eb}
.border-white{border-color:#ffffff}.border-pink-200{border-color:#fbcfe8}
.border-opacity-30{border-color:rgba(255,255,255,.3)}
.rounded-full{border-radius:9999px}.rounded-2xl{border-radius:1rem}.rounded-xl{border-radius:.75rem}

/* Backgrounds */
.bg-pink-500{background-color:#ec4899}

/* Padding */
.pl-3{padding-left:.75rem}.pl-10{padding-left:2.5rem}.pr-3{padding-right:.75rem}.pr-4{padding-right:1rem}
.py-2\.5{padding-top:.625rem;padding-bottom:.625rem}
.pt-24{padding-top:6rem}
.pt-20{padding-top:5rem}
.pt-6{padding-top:1.5rem}
.pb-12{padding-bottom:3rem}

/* Inputs */
.outline-none{outline:0}
.focus\:w-64:focus{width:16rem}.focus\:border-pink-400:focus{border-color:#f472b6}

/* Display at md breakpoint */
@media (min-width:768px){.md\:flex{display:flex}.md\:block{display:block}.md\:hidden{display:none}}

/* Group hover (for search icon) */
.group{position:relative} .group:hover .group-hover\:text-pink-600{color:#db2777}

/* Cursor */
.cursor-pointer{cursor:pointer}
