/* WedBliss Custom CSS - Minimal Tailwind utilities */
*,*::before,*::after{box-sizing:border-box}
body{margin:0;font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:#f9fafb;color:#1f2937;line-height:1.5}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
button,input,select,textarea{font-family:inherit;font-size:inherit}

/* Layout */
.flex{display:flex}
.flex-col{flex-direction:column}
.flex-wrap{flex-wrap:wrap}
.items-center{align-items:center}
.items-start{align-items:flex-start}
.justify-between{justify-content:space-between}
.justify-center{justify-content:center}
.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}
.grid{display:grid}
.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}
.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}

/* Spacing */
.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.p-8{padding:2rem}
.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}
.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-8{padding-top:2rem;padding-bottom:2rem}
.pt-2{padding-top:.5rem}.pt-16{padding-top:4rem}.pt-4{padding-top:1rem}.pt-8{padding-top:2rem}.pb-2{padding-bottom:.5rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-4{padding-left:1rem}.pl-11{padding-left:2.75rem}.pr-2{padding-right:.5rem}
.m-0{margin:0}.m-auto{margin:auto}.mx-auto{margin-left:auto;margin-right:auto}
.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}
.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-5{margin-bottom:1.25rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}
.ml-2{margin-left:.5rem}.ml-4{margin-left:1rem}.ml-60{margin-left:15rem}.ml-64{margin-left:16rem}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}
.ml-60{margin-left:15rem}.mr-4{margin-right:1rem}.mb-0{margin-bottom:0}

/* Sizing */
.w-full{width:100%}.w-auto{width:auto}.w-4{width:1rem}.w-10{width:2.5rem}.w-12{width:3rem}.w-16{width:4rem}.w-20{width:5rem}.w-24{width:6rem}.w-60{width:15rem}.w-64{width:16rem}.w-1\/2{width:50%}.max-w-7xl{max-width:80rem}.max-w-lg{max-width:32rem}.max-w-md{max-width:28rem}
.h-full{height:100%}.h-screen{height:100vh}.h-10{height:2.5rem}.h-12{height:3rem}.h-16{height:4rem}.h-20{height:5rem}.h-24{height:6rem}.min-h-screen{min-height:100vh}
.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}

/* Display */
.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.hidden{display:none}
.overflow-hidden{overflow:hidden}.overflow-x-hidden{overflow-x:hidden}.overflow-y-auto{overflow-y:auto}

/* Text */
.text-xs{font-size:.75rem;line-height:1rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-2xl{font-size:1.5rem;line-height:2rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}
.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}
.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}
.uppercase{text-transform:uppercase}.capitalize{text-transform:capitalize}.tracking-widest{letter-spacing:.1em}
.leading-tight{line-height:1.25}.leading-relaxed{line-height:1.625}
.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.text-white{color:#fff}.text-black{color:#000}.text-gray-50{color:#f9fafb}.text-gray-100{color:#f3f4f6}.text-gray-200{color:#e5e7eb}.text-gray-300{color:#d1d5db}.text-gray-400{color:#9ca3af}.text-gray-500{color:#6b7280}.text-gray-600{color:#4b5563}.text-gray-700{color:#374151}.text-gray-800{color:#1f2937}.text-gray-900{color:#111827}
.text-red-400{color:#f87171}.text-red-500{color:#ef4444}.text-red-600{color:#dc2626}
.text-green-400{color:#4ade80}.text-green-500{color:#22c55e}.text-green-600{color:#16a34a}.text-green-700{color:#15803d}
.text-yellow-400{color:#facc15}.text-yellow-500{color:#eab308}.text-yellow-600{color:#ca8a04}.text-yellow-700{color:#a16207}
.text-blue-400{color:#60a5fa}.text-blue-500{color:#3b82f6}.text-blue-600{color:#2563eb}
.text-pink-400{color:#f472b6}.text-pink-500{color:#ec4899}.text-pink-600{color:#db2777}
.text-orange-500{color:#f97316}

/* Backgrounds */
.bg-white{background:#fff}.bg-gray-50{background:#f9fafb}.bg-gray-100{background:#f3f4f6}.bg-gray-200{background:#e5e7eb}.bg-gray-800{background:#1f2937}
.bg-red-50{background:#fef2f2}.bg-red-100{background:#fee2e2}.bg-red-500{background:#ef4444}
.bg-green-50{background:#f0fdf4}.bg-green-100{background:#dcfce7}.bg-green-500{background:#22c55e}
.bg-yellow-100{background:#fef9c3}.bg-yellow-200{background:#fef08a}.bg-yellow-500{background:#eab308}
.bg-blue-50{background:#eff6ff}.bg-blue-100{background:#dbeafe}.bg-blue-500{background:#3b82f6}
.bg-pink-50{background:#fdf2f8}.bg-pink-100{background:#fce7f3}.bg-pink-500{background:#ec4899}.bg-pink-600{background:#db2777}
.bg-yellow-200{background:#fef08a}

/* Borders */
.border{border:1px solid #e5e7eb}.border-2{border-width:2px}.border-b{border-bottom:1px solid #e5e7eb}.border-t{border-top:1px solid #e5e7eb}.border-l{border-left:1px solid #e5e7eb}.border-r{border-right:1px solid #e5e7eb}
.border-gray-100{border-color:#f3f4f6}.border-gray-200{border-color:#e5e7eb}.border-gray-300{border-color:#d1d5db}.border-white\/10{border-color:rgba(255,255,255,.1)}.border-green-200{border-color:#bbf7d0}.border-red-200{border-color:#fecaca}
.border-b-2{border-bottom-width:2px}
.rounded{border-radius:.25rem}.rounded-xl{border-radius:.75rem}.rounded-2xl{border-radius:1rem}.rounded-full{radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.rounded-t-xl{border-radius:.75rem .75rem 0 0}
.rounded-bl-xl{border-radius:0 0 0 .75rem}.rounded-br-xl{border-radius:0 0 .75rem 0}

/* Shadows */
.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1)}.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1)}.shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1)}.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1)}
.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}

/* Effects */
.transition{transition:all .15s ease-in-out}.hover\:opacity-90:hover{opacity:.9}.hover\:bg-gray-100:hover{background:#f3f4f6}.hover\:bg-gray-200:hover{background:#e5e7eb}.hover\:text-pink-500:hover{color:#ec4899}
.opacity-50{opacity:.5}.opacity-70{opacity:.7}.opacity-90{opacity:.9}.opacity-100{opacity:1}
.cursor-pointer{cursor:pointer}.cursor-not-allowed{cursor:not-allowed}

/* Positioning */
.relative{position:relative}.absolute{position:absolute}.fixed{position:fixed}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}
.top-0{top:0}.top-2{top:.5rem}.top-4{top:1rem}.bottom-24{bottom:6rem}.right-24{right:6rem}
.left-0{left:0}.left-4{left:1rem}.left-auto{left:auto}.right-0{right:0}.right-2{right:.5rem}
.-translate-y-1\/2{transform:translateY(-50%)}
.top-1\/2{top:50%}
.z-10{z-index:10}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.z-9999{z-index:9999}

/* Width/Height percentages */
.h-screen{height:100vh}.w-screen{width:100vw}

/* Button styles */
.btn-primary,.bp{background:linear-gradient(135deg,#d4495a,#f09035);color:#fff;font-weight:600;padding:.75rem 1.5rem;border-radius:.75rem;border:none;cursor:pointer;transition:opacity .15s}
.btn-primary:hover,.bp:hover{opacity:.9}
.btn-primary:focus,.bp:focus{outline:2px solid #f09035;outline-offset:2px}
.btn-primary:disabled,.bp:disabled{opacity:.5;cursor:not-allowed}
.text-white{color:#fff}

/* Input styles */
.input-field,.input-field:focus{border:1px solid #e5e7eb;border-radius:.75rem;padding:.75rem 1rem;font-size:.875rem;outline:none;transition:border-color .15s}
.input-field:focus{border-color:#f09035;box-shadow:0 0 0 3px rgba(240,144,53,.1)}
input,select,textarea{font-size:.875rem}

/* Card styles */
.card{background:#fff;border-radius:1rem;box-shadow:0 1px 3px rgba(0,0,0,.06)}

/* Sidebar styles */
.admin-sidebar{background:linear-gradient(180deg,#1a1a2e,#16213e)}

/* Gradient text */
.gradient-text,.gt{background:linear-gradient(135deg,#d4495a,#f09035);-webkit-background-clip:text;-webkit-text-fill-color:transparent}

/* Special utilities */
.line-through{text-decoration:line-through}
.whitespace-nowrap{white-space:nowrap}
.resize-none{resize:none}
.overflow-hidden{overflow:hidden}
.object-cover{object-fit:cover}
.aspect-video{aspect-ratio:16/9}
.aspect-square{aspect-ratio:1/1}

/* Container */
.container{max-width:1200px;margin:0 auto;padding:0 1rem}

/* Form elements */
input[type="text"],input[type="email"],input[type="password"],input[type="number"],input[type="tel"],input[type="url"],select,textarea{width:100%;padding:.75rem 1rem;border:1px solid #e5e7eb;border-radius:.75rem;font-size:.875rem}
input:focus,select:focus,textarea:focus{outline:none;border-color:#f09035;box-shadow:0 0 0 3px rgba(240,144,53,.1)}
input[disabled],select[disabled]{background:#f9fafb;color:#9ca3af;cursor:not-allowed}
input[type="checkbox"],input[type="radio"]{width:auto;margin-right:.5rem}
input[type="file"]{padding:.5rem;background:#f9fafb;border-radius:.5rem}
input[type="color"]{padding:.25rem;height:3rem;width:4rem;border-radius:.75rem;cursor:pointer}

/* Button override */
button,input[type="submit"],.btn{cursor:pointer}
button:disabled,input[type="submit"]:disabled{opacity:.6;cursor:not-allowed}

/* Badge styles */
.badge,.px-2,.px-3,.px-4{padding:.25rem .5rem;border-radius:.375rem;font-size:.75rem;font-weight:600}
.bg-yellow-100{background:#fef9c3}.text-yellow-600{color:#ca8a04}
.bg-yellow-200{background:#fef08a}.text-yellow-700{color:#a16207}
.bg-pink-100{background:#fce7f3}.text-pink-600{color:#db2777}
.bg-green-100{background:#dcfce7}.text-green-600{color:#16a34a}
.bg-red-100{background:#fee2e2}.text-red-600{color:#dc2626}
.bg-blue-100{background:#dbeafe}.text-blue-600{color:#2563eb}

/* Utility */
.inline-block{display:inline-block}
.text-sm{font-size:.875rem}
.text-xs{font-size:.75rem}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}
.mb-1{margin-bottom:.25rem}.mb-2{margin-bottom:.5rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}
.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-6{margin-top:1.5rem}
.ml-1{margin-left:.25rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}
.space-y-1>*:not([hidden])~*:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem * var(--tw-space-y-reverse));margin-bottom:calc(.25rem * calc(1 - var(--tw-space-y-reverse)))}
.space-y-2>*:not([hidden])~*:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem * var(--tw-space-y-reverse));margin-bottom:calc(.5rem * calc(1 - var(--tw-space-y-reverse)))}
.space-y-3>*:not([hidden])~*:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.75rem * var(--tw-space-y-reverse));margin-bottom:calc(.75rem * calc(1 - var(--tw-space-y-reverse)))}
.space-y-4>*:not([hidden])~*:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem * var(--tw-space-y-reverse));margin-bottom:calc(1rem * calc(1 - var(--tw-space-y-reverse)))}
.space-y-5>*:not([hidden])~*:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem * var(--tw-space-y-reverse));margin-bottom:calc(1.25rem * calc(1 - var(--tw-space-y-reverse)))}
.space-y-6>*:not([hidden])~*:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.5rem * var(--tw-space-y-reverse));margin-bottom:calc(1.5rem * calc(1 - var(--tw-space-y-reverse)))}

/* Responsive grids */
@media (min-width:640px){.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:flex-row{flex-direction:row}}
@media (min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:p-6{padding:1.5rem}.md\:p-8{padding:2rem}.md\:pt-8{padding-top:2rem}.md\:w-auto{width:auto}.md\:ml-60{margin-left:15rem}.md\:text-left{text-align:left}}
@media (min-width:1024px){.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:flex-row{flex-direction:row}}
@media (min-width:1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}}

/* Print */
@media print{.no-print{display:none}}
