/*
 * IndianMarriage.com - Custom Tailwind Replacement CSS
 * Color scheme based on IndianMarriage.com (Light & Dark modes)
 * Version: 1.0.0
 */

/* ============================================================================
   CSS VARIABLES - IndianMarriage.com Color Scheme
   ========================================================================= */

:root {
  /* Primary Colors - Crimson Red (CTA buttons, accents) */
  --color-primary: #C45C5C;
  --color-primary-light: #E07777;
  --color-primary-dark: #A34A4A;
  --color-primary-50: #FDF2F2;
  --color-primary-100: #FCE7E7;
  --color-primary-200: #F9CFCF;
  --color-primary-300: #F4A8A8;
  --color-primary-400: #E07777;
  --color-primary-500: #C45C5C;
  --color-primary-600: #A34A4A;
  --color-primary-700: #893D3D;
  --color-primary-800: #6E3131;
  --color-primary-900: #5A2929;

  /* Gold/Ochre - Astrology features */
  --color-gold: #B8860B;
  --color-gold-light: #D4A012;
  --color-gold-dark: #996B08;
  --color-gold-50: #FFFBEB;
  --color-gold-100: #FEF3C7;
  --color-gold-200: #FDE68A;
  --color-gold-300: #FCD34D;
  --color-gold-400: #FBBF24;
  --color-gold-500: #D4A012;
  --color-gold-600: #B8860B;
  --color-gold-700: #996B08;
  --color-gold-800: #7A5506;
  --color-gold-900: #5C4004;

  /* Pink - Love/Romance theme */
  --color-pink-50: #FDF2F8;
  --color-pink-100: #FCE7F3;
  --color-pink-200: #FBCFE8;
  --color-pink-300: #F9A8D4;
  --color-pink-400: #F472B6;
  --color-pink-500: #EC4899;
  --color-pink-600: #DB2777;
  --color-pink-700: #BE185D;
  --color-pink-800: #9D174D;
  --color-pink-900: #831843;

  /* Rose Warm - Background tones */
  --color-rose-warm-50: #FFF9F7;
  --color-rose-warm-100: #FFF1ED;
  --color-rose-warm-200: #FFE4DB;
  --color-rose-warm-300: #FFCFC0;
  --color-rose-warm-400: #FFB199;
  --color-rose-warm-500: #FF8C66;

  /* Purple - Premium features */
  --color-purple-50: #FAF5FF;
  --color-purple-100: #F3E8FF;
  --color-purple-200: #E9D5FF;
  --color-purple-300: #D8B4FE;
  --color-purple-400: #C084FC;
  --color-purple-500: #A855F7;
  --color-purple-600: #9333EA;
  --color-purple-700: #7E22CE;
  --color-purple-800: #6B21A8;
  --color-purple-900: #581C87;

  /* Gray Scale */
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-300: #D1D5DB;
  --color-gray-400: #9CA3AF;
  --color-gray-500: #6B7280;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-gray-900: #111827;
  --color-gray-950: #030712;

  /* Dark Mode Specific */
  --color-dark-700: #2D2D35;
  --color-dark-800: #1E1E23;
  --color-dark-900: #121215;

  /* Semantic Colors */
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* Blue Scale */
  --color-blue-50: #EFF6FF;
  --color-blue-100: #DBEAFE;
  --color-blue-200: #BFDBFE;
  --color-blue-300: #93C5FD;
  --color-blue-400: #60A5FA;
  --color-blue-500: #3B82F6;
  --color-blue-600: #2563EB;
  --color-blue-700: #1D4ED8;
  --color-blue-800: #1E40AF;
  --color-blue-900: #1E3A8A;

  /* Green Scale */
  --color-green-50: #F0FDF4;
  --color-green-100: #DCFCE7;
  --color-green-200: #BBF7D0;
  --color-green-300: #86EFAC;
  --color-green-400: #4ADE80;
  --color-green-500: #22C55E;
  --color-green-600: #16A34A;
  --color-green-700: #15803D;
  --color-green-800: #166534;
  --color-green-900: #14532D;

  /* Red Scale */
  --color-red-50: #FEF2F2;
  --color-red-100: #FEE2E2;
  --color-red-200: #FECACA;
  --color-red-300: #FCA5A5;
  --color-red-400: #F87171;
  --color-red-500: #EF4444;
  --color-red-600: #DC2626;
  --color-red-700: #B91C1C;
  --color-red-800: #991B1B;
  --color-red-900: #7F1D1D;

  /* Yellow Scale */
  --color-yellow-50: #FEFCE8;
  --color-yellow-100: #FEF9C3;
  --color-yellow-200: #FEF08A;
  --color-yellow-300: #FDE047;
  --color-yellow-400: #FACC15;
  --color-yellow-500: #EAB308;
  --color-yellow-600: #CA8A04;
  --color-yellow-700: #A16207;
  --color-yellow-800: #854D0E;
  --color-yellow-900: #713F12;

  /* Orange Scale */
  --color-orange-50: #FFF7ED;
  --color-orange-100: #FFEDD5;
  --color-orange-200: #FED7AA;
  --color-orange-300: #FDBA74;
  --color-orange-400: #FB923C;
  --color-orange-500: #F97316;
  --color-orange-600: #EA580C;
  --color-orange-700: #C2410C;
  --color-orange-800: #9A3412;
  --color-orange-900: #7C2D12;

  /* Indigo Scale */
  --color-indigo-50: #EEF2FF;
  --color-indigo-100: #E0E7FF;
  --color-indigo-200: #C7D2FE;
  --color-indigo-300: #A5B4FC;
  --color-indigo-400: #818CF8;
  --color-indigo-500: #6366F1;
  --color-indigo-600: #4F46E5;
  --color-indigo-700: #4338CA;
  --color-indigo-800: #3730A3;
  --color-indigo-900: #312E81;

  /* Teal Scale */
  --color-teal-50: #F0FDFA;
  --color-teal-100: #CCFBF1;
  --color-teal-200: #99F6E4;
  --color-teal-300: #5EEAD4;
  --color-teal-400: #2DD4BF;
  --color-teal-500: #14B8A6;
  --color-teal-600: #0D9488;
  --color-teal-700: #0F766E;
  --color-teal-800: #115E59;
  --color-teal-900: #134E4A;

  /* Emerald Scale */
  --color-emerald-50: #ECFDF5;
  --color-emerald-100: #D1FAE5;
  --color-emerald-200: #A7F3D0;
  --color-emerald-300: #6EE7B7;
  --color-emerald-400: #34D399;
  --color-emerald-500: #10B981;
  --color-emerald-600: #059669;
  --color-emerald-700: #047857;
  --color-emerald-800: #065F46;
  --color-emerald-900: #064E3B;

  /* Amber Scale */
  --color-amber-50: #FFFBEB;
  --color-amber-100: #FEF3C7;
  --color-amber-200: #FDE68A;
  --color-amber-300: #FCD34D;
  --color-amber-400: #FBBF24;
  --color-amber-500: #F59E0B;
  --color-amber-600: #D97706;
  --color-amber-700: #B45309;
  --color-amber-800: #92400E;
  --color-amber-900: #78350F;
}

/* ============================================================================
   CSS RESET
   ========================================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--color-gray-200);
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
}

body {
  margin: 0;
  line-height: inherit;
}

hr { height: 0; color: inherit; border-top-width: 1px; }
abbr:where([title]) { text-decoration: underline dotted; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
code, kbd, samp, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
table { text-indent: 0; border-color: inherit; border-collapse: collapse; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button, select { text-transform: none; }
button, [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; background-color: transparent; background-image: none; }
:-moz-focusring { outline: auto; }
:-moz-ui-invalid { box-shadow: none; }
progress { vertical-align: baseline; }
::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; }
[type='search'] { -webkit-appearance: textfield; outline-offset: -2px; }
::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
summary { display: list-item; }
blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre { margin: 0; }
fieldset { margin: 0; padding: 0; }
legend { padding: 0; }
ol, ul, menu { list-style: none; margin: 0; padding: 0; }
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { opacity: 1; color: var(--color-gray-400); }
button, [role="button"] { cursor: pointer; }
:disabled { cursor: default; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
[hidden] { display: none; }

/* ============================================================================
   LAYOUT - Container
   ========================================================================= */

.container { width: 100%; margin-right: auto; margin-left: auto; padding-right: 1rem; padding-left: 1rem; }
@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

/* ============================================================================
   DISPLAY
   ========================================================================= */

.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.table { display: table; }
.inline-table { display: inline-table; }
.table-caption { display: table-caption; }
.table-cell { display: table-cell; }
.table-column { display: table-column; }
.table-column-group { display: table-column-group; }
.table-footer-group { display: table-footer-group; }
.table-header-group { display: table-header-group; }
.table-row-group { display: table-row-group; }
.table-row { display: table-row; }
.flow-root { display: flow-root; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }
.contents { display: contents; }
.list-item { display: list-item; }
.hidden { display: none; }

/* ============================================================================
   FLEXBOX
   ========================================================================= */

.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }
.flex-wrap { flex-wrap: wrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }
.flex-shrink { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Justify Content */
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* Align Items */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

/* Align Content */
.content-start { align-content: flex-start; }
.content-end { align-content: flex-end; }
.content-center { align-content: center; }
.content-between { align-content: space-between; }
.content-around { align-content: space-around; }
.content-evenly { align-content: space-evenly; }

/* Align Self */
.self-auto { align-self: auto; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }
.self-baseline { align-self: baseline; }

/* ============================================================================
   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)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }
.grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }
.grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.grid-cols-none { grid-template-columns: none; }

.grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)); }
.grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)); }
.grid-rows-4 { grid-template-rows: repeat(4, minmax(0, 1fr)); }
.grid-rows-5 { grid-template-rows: repeat(5, minmax(0, 1fr)); }
.grid-rows-6 { grid-template-rows: repeat(6, minmax(0, 1fr)); }
.grid-rows-none { grid-template-rows: none; }

.col-auto { grid-column: auto; }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-span-9 { grid-column: span 9 / span 9; }
.col-span-10 { grid-column: span 10 / span 10; }
.col-span-11 { grid-column: span 11 / span 11; }
.col-span-12 { grid-column: span 12 / span 12; }
.col-span-full { grid-column: 1 / -1; }

.row-auto { grid-row: auto; }
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.row-span-3 { grid-row: span 3 / span 3; }
.row-span-4 { grid-row: span 4 / span 4; }
.row-span-5 { grid-row: span 5 / span 5; }
.row-span-6 { grid-row: span 6 / span 6; }
.row-span-full { grid-row: 1 / -1; }

/* Gap */
.gap-0 { gap: 0px; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-9 { gap: 2.25rem; }
.gap-10 { gap: 2.5rem; }
.gap-11 { gap: 2.75rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }
.gap-28 { gap: 7rem; }
.gap-32 { gap: 8rem; }
.gap-36 { gap: 9rem; }
.gap-40 { gap: 10rem; }
.gap-44 { gap: 11rem; }
.gap-48 { gap: 12rem; }
.gap-52 { gap: 13rem; }
.gap-56 { gap: 14rem; }
.gap-60 { gap: 15rem; }
.gap-64 { gap: 16rem; }
.gap-72 { gap: 18rem; }
.gap-80 { gap: 20rem; }
.gap-96 { gap: 24rem; }

.gap-x-0 { column-gap: 0px; }
.gap-x-1 { column-gap: 0.25rem; }
.gap-x-2 { column-gap: 0.5rem; }
.gap-x-3 { column-gap: 0.75rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-5 { column-gap: 1.25rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-x-16 { column-gap: 4rem; }

.gap-y-0 { row-gap: 0px; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-5 { row-gap: 1.25rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }
.gap-y-10 { row-gap: 2.5rem; }
.gap-y-12 { row-gap: 3rem; }
.gap-y-16 { row-gap: 4rem; }

/* ============================================================================
   SPACING - Padding
   ========================================================================= */

.p-0 { padding: 0px; }
.p-0\.5 { padding: 0.125rem; }
.p-1 { padding: 0.25rem; }
.p-1\.5 { padding: 0.375rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-9 { padding: 2.25rem; }
.p-10 { padding: 2.5rem; }
.p-11 { padding: 2.75rem; }
.p-12 { padding: 3rem; }
.p-14 { padding: 3.5rem; }
.p-16 { padding: 4rem; }
.p-20 { padding: 5rem; }
.p-24 { padding: 6rem; }
.p-28 { padding: 7rem; }
.p-32 { padding: 8rem; }

.px-0 { padding-left: 0px; padding-right: 0px; }
.px-0\.5 { padding-left: 0.125rem; padding-right: 0.125rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-1\.5 { padding-left: 0.375rem; padding-right: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.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-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-9 { padding-left: 2.25rem; padding-right: 2.25rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-11 { padding-left: 2.75rem; padding-right: 2.75rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.px-20 { padding-left: 5rem; padding-right: 5rem; }
.px-24 { padding-left: 6rem; padding-right: 6rem; }

.py-0 { padding-top: 0px; padding-bottom: 0px; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-9 { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-11 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-0 { padding-top: 0px; }
.pt-0\.5 { padding-top: 0.125rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-1\.5 { padding-top: 0.375rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-2\.5 { padding-top: 0.625rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-3\.5 { padding-top: 0.875rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-7 { padding-top: 1.75rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }

.pr-0 { padding-right: 0px; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-5 { padding-right: 1.25rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }
.pr-10 { padding-right: 2.5rem; }
.pr-12 { padding-right: 3rem; }
.pr-16 { padding-right: 4rem; }

.pb-0 { padding-bottom: 0px; }
.pb-0\.5 { padding-bottom: 0.125rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-1\.5 { padding-bottom: 0.375rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-2\.5 { padding-bottom: 0.625rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-3\.5 { padding-bottom: 0.875rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-7 { padding-bottom: 1.75rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-32 { padding-bottom: 8rem; }

.pl-0 { padding-left: 0px; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-12 { padding-left: 3rem; }
.pl-16 { padding-left: 4rem; }

/* ============================================================================
   SPACING - Margin
   ========================================================================= */

.m-0 { margin: 0px; }
.m-0\.5 { margin: 0.125rem; }
.m-1 { margin: 0.25rem; }
.m-1\.5 { margin: 0.375rem; }
.m-2 { margin: 0.5rem; }
.m-2\.5 { margin: 0.625rem; }
.m-3 { margin: 0.75rem; }
.m-3\.5 { margin: 0.875rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-7 { margin: 1.75rem; }
.m-8 { margin: 2rem; }
.m-9 { margin: 2.25rem; }
.m-10 { margin: 2.5rem; }
.m-11 { margin: 2.75rem; }
.m-12 { margin: 3rem; }
.m-14 { margin: 3.5rem; }
.m-16 { margin: 4rem; }
.m-20 { margin: 5rem; }
.m-24 { margin: 6rem; }
.m-auto { margin: auto; }

.mx-0 { margin-left: 0px; margin-right: 0px; }
.mx-0\.5 { margin-left: 0.125rem; margin-right: 0.125rem; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-1\.5 { margin-left: 0.375rem; margin-right: 0.375rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-2\.5 { margin-left: 0.625rem; margin-right: 0.625rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-3\.5 { margin-left: 0.875rem; margin-right: 0.875rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; }
.mx-12 { margin-left: 3rem; margin-right: 3rem; }
.mx-16 { margin-left: 4rem; margin-right: 4rem; }
.mx-20 { margin-left: 5rem; margin-right: 5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0px; margin-bottom: 0px; }
.my-0\.5 { margin-top: 0.125rem; margin-bottom: 0.125rem; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-1\.5 { margin-top: 0.375rem; margin-bottom: 0.375rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-2\.5 { margin-top: 0.625rem; margin-bottom: 0.625rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-3\.5 { margin-top: 0.875rem; margin-bottom: 0.875rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-7 { margin-top: 1.75rem; margin-bottom: 1.75rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }
.my-20 { margin-top: 5rem; margin-bottom: 5rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.mt-0 { margin-top: 0px; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-2\.5 { margin-top: 0.625rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-3\.5 { margin-top: 0.875rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-32 { margin-top: 8rem; }
.mt-auto { margin-top: auto; }

.mr-0 { margin-right: 0px; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-5 { margin-right: 1.25rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-8 { margin-right: 2rem; }
.mr-10 { margin-right: 2.5rem; }
.mr-12 { margin-right: 3rem; }
.mr-auto { margin-right: auto; }

.mb-0 { margin-bottom: 0px; }
.mb-0\.5 { margin-bottom: 0.125rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-2\.5 { margin-bottom: 0.625rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-3\.5 { margin-bottom: 0.875rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }

.ml-0 { margin-left: 0px; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-5 { margin-left: 1.25rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-8 { margin-left: 2rem; }
.ml-10 { margin-left: 2.5rem; }
.ml-12 { margin-left: 3rem; }
.ml-auto { margin-left: auto; }

.-m-1 { margin: -0.25rem; }
.-m-2 { margin: -0.5rem; }
.-m-3 { margin: -0.75rem; }
.-m-4 { margin: -1rem; }
.-mt-1 { margin-top: -0.25rem; }
.-mt-2 { margin-top: -0.5rem; }
.-mt-3 { margin-top: -0.75rem; }
.-mt-4 { margin-top: -1rem; }
.-mt-8 { margin-top: -2rem; }
.-mt-16 { margin-top: -4rem; }
.-mb-1 { margin-bottom: -0.25rem; }
.-mb-2 { margin-bottom: -0.5rem; }
.-ml-1 { margin-left: -0.25rem; }
.-ml-2 { margin-left: -0.5rem; }
.-mr-1 { margin-right: -0.25rem; }
.-mr-2 { margin-right: -0.5rem; }

/* Space Between */
.space-x-0 > :not([hidden]) ~ :not([hidden]) { margin-left: 0px; }
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.25rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-5 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.25rem; }
.space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-x-10 > :not([hidden]) ~ :not([hidden]) { margin-left: 2.5rem; }
.space-x-12 > :not([hidden]) ~ :not([hidden]) { margin-left: 3rem; }

.space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem; }

/* ============================================================================
   SIZING - Width
   ========================================================================= */

.w-0 { width: 0px; }
.w-0\.5 { width: 0.125rem; }
.w-1 { width: 0.25rem; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-40 { width: 10rem; }
.w-44 { width: 11rem; }
.w-48 { width: 12rem; }
.w-52 { width: 13rem; }
.w-56 { width: 14rem; }
.w-60 { width: 15rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-auto { width: auto; }
.w-px { width: 1px; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-2\/4 { width: 50%; }
.w-3\/4 { width: 75%; }
.w-1\/5 { width: 20%; }
.w-2\/5 { width: 40%; }
.w-3\/5 { width: 60%; }
.w-4\/5 { width: 80%; }
.w-1\/6 { width: 16.666667%; }
.w-2\/6 { width: 33.333333%; }
.w-3\/6 { width: 50%; }
.w-4\/6 { width: 66.666667%; }
.w-5\/6 { width: 83.333333%; }
.w-1\/12 { width: 8.333333%; }
.w-2\/12 { width: 16.666667%; }
.w-3\/12 { width: 25%; }
.w-4\/12 { width: 33.333333%; }
.w-5\/12 { width: 41.666667%; }
.w-6\/12 { width: 50%; }
.w-7\/12 { width: 58.333333%; }
.w-8\/12 { width: 66.666667%; }
.w-9\/12 { width: 75%; }
.w-10\/12 { width: 83.333333%; }
.w-11\/12 { width: 91.666667%; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-min { width: min-content; }
.w-max { width: max-content; }
.w-fit { width: fit-content; }

.min-w-0 { min-width: 0px; }
.min-w-full { min-width: 100%; }
.min-w-min { min-width: min-content; }
.min-w-max { min-width: max-content; }
.min-w-fit { min-width: fit-content; }

.max-w-0 { max-width: 0rem; }
.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-min { max-width: min-content; }
.max-w-max { max-width: max-content; }
.max-w-fit { max-width: fit-content; }
.max-w-prose { max-width: 65ch; }
.max-w-screen-sm { max-width: 640px; }
.max-w-screen-md { max-width: 768px; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-xl { max-width: 1280px; }
.max-w-screen-2xl { max-width: 1536px; }

/* ============================================================================
   SIZING - Height
   ========================================================================= */

.h-0 { height: 0px; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-56 { height: 14rem; }
.h-60 { height: 15rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-px { height: 1px; }
.h-0\.5 { height: 0.125rem; }
.h-1\/2 { height: 50%; }
.h-1\/3 { height: 33.333333%; }
.h-2\/3 { height: 66.666667%; }
.h-1\/4 { height: 25%; }
.h-2\/4 { height: 50%; }
.h-3\/4 { height: 75%; }
.h-1\/5 { height: 20%; }
.h-2\/5 { height: 40%; }
.h-3\/5 { height: 60%; }
.h-4\/5 { height: 80%; }
.h-1\/6 { height: 16.666667%; }
.h-5\/6 { height: 83.333333%; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-min { height: min-content; }
.h-max { height: max-content; }
.h-fit { height: fit-content; }

.min-h-0 { min-height: 0px; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-min { min-height: min-content; }
.min-h-max { min-height: max-content; }
.min-h-fit { min-height: fit-content; }

.max-h-0 { max-height: 0px; }
.max-h-none { max-height: none; }
.max-h-full { max-height: 100%; }
.max-h-screen { max-height: 100vh; }
.max-h-min { max-height: min-content; }
.max-h-max { max-height: max-content; }
.max-h-fit { max-height: fit-content; }
.max-h-48 { max-height: 12rem; }
.max-h-64 { max-height: 16rem; }
.max-h-80 { max-height: 20rem; }
.max-h-96 { max-height: 24rem; }

/* ============================================================================
   TYPOGRAPHY
   ========================================================================= */

.font-sans { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.font-serif { font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.font-display { font-family: "Cormorant Garamond", Georgia, serif; }
.font-body { font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif; }

.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-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; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.underline { text-decoration-line: underline; }
.line-through { text-decoration-line: line-through; }
.no-underline { text-decoration-line: none; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-line { white-space: pre-line; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* TEXT COLORS */
.text-transparent { color: transparent; }
.text-current { color: currentColor; }
.text-black { color: #000000; }
.text-white { color: #ffffff; }
.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-50 { color: #FEF2F2; } .text-red-100 { color: #FEE2E2; } .text-red-200 { color: #FECACA; } .text-red-300 { color: #FCA5A5; } .text-red-400 { color: #F87171; } .text-red-500 { color: #EF4444; } .text-red-600 { color: #DC2626; } .text-red-700 { color: #B91C1C; } .text-red-800 { color: #991B1B; } .text-red-900 { color: #7F1D1D; }
.text-pink-50 { color: #FDF2F8; } .text-pink-100 { color: #FCE7F3; } .text-pink-200 { color: #FBCFE8; } .text-pink-300 { color: #F9A8D4; } .text-pink-400 { color: #F472B6; } .text-pink-500 { color: #EC4899; } .text-pink-600 { color: #DB2777; } .text-pink-700 { color: #BE185D; } .text-pink-800 { color: #9D174D; } .text-pink-900 { color: #831843; }
.text-purple-50 { color: #FAF5FF; } .text-purple-100 { color: #F3E8FF; } .text-purple-200 { color: #E9D5FF; } .text-purple-300 { color: #D8B4FE; } .text-purple-400 { color: #C084FC; } .text-purple-500 { color: #A855F7; } .text-purple-600 { color: #9333EA; } .text-purple-700 { color: #7E22CE; } .text-purple-800 { color: #6B21A8; } .text-purple-900 { color: #581C87; }
.text-indigo-50 { color: #EEF2FF; } .text-indigo-100 { color: #E0E7FF; } .text-indigo-200 { color: #C7D2FE; } .text-indigo-300 { color: #A5B4FC; } .text-indigo-400 { color: #818CF8; } .text-indigo-500 { color: #6366F1; } .text-indigo-600 { color: #4F46E5; } .text-indigo-700 { color: #4338CA; } .text-indigo-800 { color: #3730A3; } .text-indigo-900 { color: #312E81; }
.text-blue-50 { color: #EFF6FF; } .text-blue-100 { color: #DBEAFE; } .text-blue-200 { color: #BFDBFE; } .text-blue-300 { color: #93C5FD; } .text-blue-400 { color: #60A5FA; } .text-blue-500 { color: #3B82F6; } .text-blue-600 { color: #2563EB; } .text-blue-700 { color: #1D4ED8; } .text-blue-800 { color: #1E40AF; } .text-blue-900 { color: #1E3A8A; }
.text-green-50 { color: #F0FDF4; } .text-green-100 { color: #DCFCE7; } .text-green-200 { color: #BBF7D0; } .text-green-300 { color: #86EFAC; } .text-green-400 { color: #4ADE80; } .text-green-500 { color: #22C55E; } .text-green-600 { color: #16A34A; } .text-green-700 { color: #15803D; } .text-green-800 { color: #166534; } .text-green-900 { color: #14532D; }
.text-yellow-50 { color: #FEFCE8; } .text-yellow-100 { color: #FEF9C3; } .text-yellow-200 { color: #FEF08A; } .text-yellow-300 { color: #FDE047; } .text-yellow-400 { color: #FACC15; } .text-yellow-500 { color: #EAB308; } .text-yellow-600 { color: #CA8A04; } .text-yellow-700 { color: #A16207; } .text-yellow-800 { color: #854D0E; } .text-yellow-900 { color: #713F12; }
.text-orange-50 { color: #FFF7ED; } .text-orange-100 { color: #FFEDD5; } .text-orange-200 { color: #FED7AA; } .text-orange-300 { color: #FDBA74; } .text-orange-400 { color: #FB923C; } .text-orange-500 { color: #F97316; } .text-orange-600 { color: #EA580C; } .text-orange-700 { color: #C2410C; } .text-orange-800 { color: #9A3412; } .text-orange-900 { color: #7C2D12; }
.text-amber-50 { color: #FFFBEB; } .text-amber-100 { color: #FEF3C7; } .text-amber-200 { color: #FDE68A; } .text-amber-300 { color: #FCD34D; } .text-amber-400 { color: #FBBF24; } .text-amber-500 { color: #F59E0B; } .text-amber-600 { color: #D97706; } .text-amber-700 { color: #B45309; } .text-amber-800 { color: #92400E; } .text-amber-900 { color: #78350F; }
.text-teal-50 { color: #F0FDFA; } .text-teal-100 { color: #CCFBF1; } .text-teal-200 { color: #99F6E4; } .text-teal-300 { color: #5EEAD4; } .text-teal-400 { color: #2DD4BF; } .text-teal-500 { color: #14B8A6; } .text-teal-600 { color: #0D9488; } .text-teal-700 { color: #0F766E; } .text-teal-800 { color: #115E59; } .text-teal-900 { color: #134E4A; }
.text-emerald-50 { color: #ECFDF5; } .text-emerald-100 { color: #D1FAE5; } .text-emerald-200 { color: #A7F3D0; } .text-emerald-300 { color: #6EE7B7; } .text-emerald-400 { color: #34D399; } .text-emerald-500 { color: #10B981; } .text-emerald-600 { color: #059669; } .text-emerald-700 { color: #047857; } .text-emerald-800 { color: #065F46; } .text-emerald-900 { color: #064E3B; }
.text-love-pink { color: #EC4899; }
.text-gold { color: #D4A012; }
.text-astro-gold { color: #B8860B; }
.text-primary { color: #C45C5C; }

/* BACKGROUND COLORS */
.bg-transparent { background-color: transparent; }
.bg-current { background-color: currentColor; }
.bg-black { background-color: #000000; }
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #F9FAFB; } .bg-gray-100 { background-color: #F3F4F6; } .bg-gray-200 { background-color: #E5E7EB; } .bg-gray-300 { background-color: #D1D5DB; } .bg-gray-400 { background-color: #9CA3AF; } .bg-gray-500 { background-color: #6B7280; } .bg-gray-600 { background-color: #4B5563; } .bg-gray-700 { background-color: #374151; } .bg-gray-800 { background-color: #1F2937; } .bg-gray-900 { background-color: #111827; }
.bg-red-50 { background-color: #FEF2F2; } .bg-red-100 { background-color: #FEE2E2; } .bg-red-200 { background-color: #FECACA; } .bg-red-300 { background-color: #FCA5A5; } .bg-red-400 { background-color: #F87171; } .bg-red-500 { background-color: #EF4444; } .bg-red-600 { background-color: #DC2626; } .bg-red-700 { background-color: #B91C1C; } .bg-red-800 { background-color: #991B1B; } .bg-red-900 { background-color: #7F1D1D; }
.bg-pink-50 { background-color: #FDF2F8; } .bg-pink-100 { background-color: #FCE7F3; } .bg-pink-200 { background-color: #FBCFE8; } .bg-pink-300 { background-color: #F9A8D4; } .bg-pink-400 { background-color: #F472B6; } .bg-pink-500 { background-color: #EC4899; } .bg-pink-600 { background-color: #DB2777; } .bg-pink-700 { background-color: #BE185D; } .bg-pink-800 { background-color: #9D174D; } .bg-pink-900 { background-color: #831843; }
.bg-purple-50 { background-color: #FAF5FF; } .bg-purple-100 { background-color: #F3E8FF; } .bg-purple-200 { background-color: #E9D5FF; } .bg-purple-300 { background-color: #D8B4FE; } .bg-purple-400 { background-color: #C084FC; } .bg-purple-500 { background-color: #A855F7; } .bg-purple-600 { background-color: #9333EA; } .bg-purple-700 { background-color: #7E22CE; } .bg-purple-800 { background-color: #6B21A8; } .bg-purple-900 { background-color: #581C87; }
.bg-indigo-50 { background-color: #EEF2FF; } .bg-indigo-100 { background-color: #E0E7FF; } .bg-indigo-200 { background-color: #C7D2FE; } .bg-indigo-300 { background-color: #A5B4FC; } .bg-indigo-400 { background-color: #818CF8; } .bg-indigo-500 { background-color: #6366F1; } .bg-indigo-600 { background-color: #4F46E5; } .bg-indigo-700 { background-color: #4338CA; } .bg-indigo-800 { background-color: #3730A3; } .bg-indigo-900 { background-color: #312E81; }
.bg-blue-50 { background-color: #EFF6FF; } .bg-blue-100 { background-color: #DBEAFE; } .bg-blue-200 { background-color: #BFDBFE; } .bg-blue-300 { background-color: #93C5FD; } .bg-blue-400 { background-color: #60A5FA; } .bg-blue-500 { background-color: #3B82F6; } .bg-blue-600 { background-color: #2563EB; } .bg-blue-700 { background-color: #1D4ED8; } .bg-blue-800 { background-color: #1E40AF; } .bg-blue-900 { background-color: #1E3A8A; }
.bg-green-50 { background-color: #F0FDF4; } .bg-green-100 { background-color: #DCFCE7; } .bg-green-200 { background-color: #BBF7D0; } .bg-green-300 { background-color: #86EFAC; } .bg-green-400 { background-color: #4ADE80; } .bg-green-500 { background-color: #22C55E; } .bg-green-600 { background-color: #16A34A; } .bg-green-700 { background-color: #15803D; } .bg-green-800 { background-color: #166534; } .bg-green-900 { background-color: #14532D; }
.bg-yellow-50 { background-color: #FEFCE8; } .bg-yellow-100 { background-color: #FEF9C3; } .bg-yellow-200 { background-color: #FEF08A; } .bg-yellow-300 { background-color: #FDE047; } .bg-yellow-400 { background-color: #FACC15; } .bg-yellow-500 { background-color: #EAB308; } .bg-yellow-600 { background-color: #CA8A04; } .bg-yellow-700 { background-color: #A16207; } .bg-yellow-800 { background-color: #854D0E; } .bg-yellow-900 { background-color: #713F12; }
.bg-orange-50 { background-color: #FFF7ED; } .bg-orange-100 { background-color: #FFEDD5; } .bg-orange-200 { background-color: #FED7AA; } .bg-orange-300 { background-color: #FDBA74; } .bg-orange-400 { background-color: #FB923C; } .bg-orange-500 { background-color: #F97316; } .bg-orange-600 { background-color: #EA580C; } .bg-orange-700 { background-color: #C2410C; } .bg-orange-800 { background-color: #9A3412; } .bg-orange-900 { background-color: #7C2D12; }
.bg-amber-50 { background-color: #FFFBEB; } .bg-amber-100 { background-color: #FEF3C7; } .bg-amber-200 { background-color: #FDE68A; } .bg-amber-300 { background-color: #FCD34D; } .bg-amber-400 { background-color: #FBBF24; } .bg-amber-500 { background-color: #F59E0B; } .bg-amber-600 { background-color: #D97706; } .bg-amber-700 { background-color: #B45309; } .bg-amber-800 { background-color: #92400E; } .bg-amber-900 { background-color: #78350F; }
.bg-teal-50 { background-color: #F0FDFA; } .bg-teal-100 { background-color: #CCFBF1; } .bg-teal-200 { background-color: #99F6E4; } .bg-teal-300 { background-color: #5EEAD4; } .bg-teal-400 { background-color: #2DD4BF; } .bg-teal-500 { background-color: #14B8A6; } .bg-teal-600 { background-color: #0D9488; } .bg-teal-700 { background-color: #0F766E; } .bg-teal-800 { background-color: #115E59; } .bg-teal-900 { background-color: #134E4A; }
.bg-emerald-50 { background-color: #ECFDF5; } .bg-emerald-100 { background-color: #D1FAE5; } .bg-emerald-200 { background-color: #A7F3D0; } .bg-emerald-300 { background-color: #6EE7B7; } .bg-emerald-400 { background-color: #34D399; } .bg-emerald-500 { background-color: #10B981; } .bg-emerald-600 { background-color: #059669; } .bg-emerald-700 { background-color: #047857; } .bg-emerald-800 { background-color: #065F46; } .bg-emerald-900 { background-color: #064E3B; }
/* IndianMarriage specific */
.bg-rose-warm-50 { background-color: #FFF9F7; }
.bg-rose-warm-100 { background-color: #FFF1ED; }
.bg-love-pink { background-color: #EC4899; }
.bg-gold { background-color: #D4A012; }
.bg-astro-gold { background-color: #B8860B; }
.bg-primary { background-color: #C45C5C; }
.bg-dark-700 { background-color: #2D2D35; }
.bg-dark-800 { background-color: #1E1E23; }
.bg-dark-900 { background-color: #121215; }

/* BORDERS */
.border-0 { border-width: 0px; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-8 { border-width: 8px; }
.border-t-0 { border-top-width: 0px; } .border-t { border-top-width: 1px; } .border-t-2 { border-top-width: 2px; } .border-t-4 { border-top-width: 4px; }
.border-r-0 { border-right-width: 0px; } .border-r { border-right-width: 1px; } .border-r-2 { border-right-width: 2px; } .border-r-4 { border-right-width: 4px; }
.border-b-0 { border-bottom-width: 0px; } .border-b { border-bottom-width: 1px; } .border-b-2 { border-bottom-width: 2px; } .border-b-4 { border-bottom-width: 4px; }
.border-l-0 { border-left-width: 0px; } .border-l { border-left-width: 1px; } .border-l-2 { border-left-width: 2px; } .border-l-4 { border-left-width: 4px; }

.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }
.border-double { border-style: double; }
.border-none { border-style: none; }

.border-transparent { border-color: transparent; }
.border-current { border-color: currentColor; }
.border-black { border-color: #000000; }
.border-white { border-color: #ffffff; }
.border-gray-50 { border-color: #F9FAFB; } .border-gray-100 { border-color: #F3F4F6; } .border-gray-200 { border-color: #E5E7EB; } .border-gray-300 { border-color: #D1D5DB; } .border-gray-400 { border-color: #9CA3AF; } .border-gray-500 { border-color: #6B7280; } .border-gray-600 { border-color: #4B5563; } .border-gray-700 { border-color: #374151; } .border-gray-800 { border-color: #1F2937; } .border-gray-900 { border-color: #111827; }
.border-red-100 { border-color: #FEE2E2; } .border-red-200 { border-color: #FECACA; } .border-red-300 { border-color: #FCA5A5; } .border-red-400 { border-color: #F87171; } .border-red-500 { border-color: #EF4444; }
.border-pink-100 { border-color: #FCE7F3; } .border-pink-200 { border-color: #FBCFE8; } .border-pink-300 { border-color: #F9A8D4; } .border-pink-400 { border-color: #F472B6; } .border-pink-500 { border-color: #EC4899; }
.border-purple-100 { border-color: #F3E8FF; } .border-purple-200 { border-color: #E9D5FF; } .border-purple-300 { border-color: #D8B4FE; } .border-purple-400 { border-color: #C084FC; } .border-purple-500 { border-color: #A855F7; }
.border-blue-100 { border-color: #DBEAFE; } .border-blue-200 { border-color: #BFDBFE; } .border-blue-300 { border-color: #93C5FD; } .border-blue-400 { border-color: #60A5FA; } .border-blue-500 { border-color: #3B82F6; }
.border-green-100 { border-color: #DCFCE7; } .border-green-200 { border-color: #BBF7D0; } .border-green-300 { border-color: #86EFAC; } .border-green-400 { border-color: #4ADE80; } .border-green-500 { border-color: #22C55E; }
.border-yellow-100 { border-color: #FEF9C3; } .border-yellow-200 { border-color: #FEF08A; } .border-yellow-300 { border-color: #FDE047; } .border-yellow-400 { border-color: #FACC15; } .border-yellow-500 { border-color: #EAB308; }
.border-rose-warm-100 { border-color: #FFF1ED; }
.border-love-pink { border-color: #EC4899; }
.border-primary { border-color: #C45C5C; }
.border-dark-700 { border-color: #2D2D35; }
.border-dark-800 { border-color: #1E1E23; }

/* BORDER RADIUS */
.rounded-none { border-radius: 0px; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-none { border-top-left-radius: 0px; border-top-right-radius: 0px; }
.rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; }
.rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }
.rounded-b-none { border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; }
.rounded-b { border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-b-md { border-bottom-left-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }
.rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.rounded-b-xl { border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }
.rounded-l { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; }
.rounded-l-lg { border-top-left-radius: 0.5rem; border-bottom-left-radius: 0.5rem; }
.rounded-r { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* SHADOWS */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
.shadow-none { box-shadow: 0 0 #0000; }

/* OPACITY */
.opacity-0 { opacity: 0; } .opacity-5 { opacity: 0.05; } .opacity-10 { opacity: 0.1; } .opacity-20 { opacity: 0.2; } .opacity-25 { opacity: 0.25; } .opacity-30 { opacity: 0.3; } .opacity-40 { opacity: 0.4; } .opacity-50 { opacity: 0.5; } .opacity-60 { opacity: 0.6; } .opacity-70 { opacity: 0.7; } .opacity-75 { opacity: 0.75; } .opacity-80 { opacity: 0.8; } .opacity-90 { opacity: 0.9; } .opacity-95 { opacity: 0.95; } .opacity-100 { opacity: 1; }

/* POSITION */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }
.inset-0 { inset: 0px; } .inset-auto { inset: auto; } .inset-x-0 { left: 0px; right: 0px; } .inset-y-0 { top: 0px; bottom: 0px; }
.top-0 { top: 0px; } .top-1 { top: 0.25rem; } .top-2 { top: 0.5rem; } .top-3 { top: 0.75rem; } .top-4 { top: 1rem; } .top-5 { top: 1.25rem; } .top-6 { top: 1.5rem; } .top-8 { top: 2rem; } .top-10 { top: 2.5rem; } .top-12 { top: 3rem; } .top-16 { top: 4rem; } .top-20 { top: 5rem; } .top-auto { top: auto; } .top-full { top: 100%; } .top-1\/2 { top: 50%; }
.right-0 { right: 0px; } .right-1 { right: 0.25rem; } .right-2 { right: 0.5rem; } .right-3 { right: 0.75rem; } .right-4 { right: 1rem; } .right-5 { right: 1.25rem; } .right-6 { right: 1.5rem; } .right-8 { right: 2rem; } .right-auto { right: auto; }
.bottom-0 { bottom: 0px; } .bottom-1 { bottom: 0.25rem; } .bottom-2 { bottom: 0.5rem; } .bottom-3 { bottom: 0.75rem; } .bottom-4 { bottom: 1rem; } .bottom-5 { bottom: 1.25rem; } .bottom-6 { bottom: 1.5rem; } .bottom-8 { bottom: 2rem; } .bottom-auto { bottom: auto; }
.left-0 { left: 0px; } .left-1 { left: 0.25rem; } .left-2 { left: 0.5rem; } .left-3 { left: 0.75rem; } .left-4 { left: 1rem; } .left-5 { left: 1.25rem; } .left-6 { left: 1.5rem; } .left-8 { left: 2rem; } .left-auto { left: auto; } .left-1\/2 { left: 50%; }
.-top-1 { top: -0.25rem; } .-top-2 { top: -0.5rem; } .-top-4 { top: -1rem; }
.-right-1 { right: -0.25rem; } .-right-2 { right: -0.5rem; }
.-bottom-1 { bottom: -0.25rem; } .-bottom-2 { bottom: -0.5rem; }
.-left-1 { left: -0.25rem; } .-left-2 { left: -0.5rem; }

/* Z-INDEX */
.z-0 { z-index: 0; } .z-10 { z-index: 10; } .z-20 { z-index: 20; } .z-30 { z-index: 30; } .z-40 { z-index: 40; } .z-50 { z-index: 50; } .z-auto { z-index: auto; }

/* OVERFLOW */
.overflow-auto { overflow: auto; } .overflow-hidden { overflow: hidden; } .overflow-clip { overflow: clip; } .overflow-visible { overflow: visible; } .overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; } .overflow-x-hidden { overflow-x: hidden; } .overflow-x-scroll { overflow-x: scroll; }
.overflow-y-auto { overflow-y: auto; } .overflow-y-hidden { overflow-y: hidden; } .overflow-y-scroll { overflow-y: scroll; }

/* VISIBILITY */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.collapse { visibility: collapse; }

/* CURSOR */
.cursor-auto { cursor: auto; } .cursor-default { cursor: default; } .cursor-pointer { cursor: pointer; } .cursor-wait { cursor: wait; } .cursor-text { cursor: text; } .cursor-move { cursor: move; } .cursor-not-allowed { cursor: not-allowed; }

/* POINTER EVENTS */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* USER SELECT */
.select-none { user-select: none; } .select-text { user-select: text; } .select-all { user-select: all; } .select-auto { user-select: auto; }

/* TRANSITIONS & TRANSFORMS */
.transition-none { transition-property: none; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; 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-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-75 { transition-duration: 75ms; } .duration-100 { transition-duration: 100ms; } .duration-150 { transition-duration: 150ms; } .duration-200 { transition-duration: 200ms; } .duration-300 { transition-duration: 300ms; } .duration-500 { transition-duration: 500ms; } .duration-700 { transition-duration: 700ms; } .duration-1000 { transition-duration: 1000ms; }
.ease-linear { transition-timing-function: linear; } .ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); } .ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); } .ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.delay-75 { transition-delay: 75ms; } .delay-100 { transition-delay: 100ms; } .delay-150 { transition-delay: 150ms; } .delay-200 { transition-delay: 200ms; } .delay-300 { transition-delay: 300ms; }

.scale-0 { transform: scale(0); } .scale-50 { transform: scale(.5); } .scale-75 { transform: scale(.75); } .scale-90 { transform: scale(.9); } .scale-95 { transform: scale(.95); } .scale-100 { transform: scale(1); } .scale-105 { transform: scale(1.05); } .scale-110 { transform: scale(1.1); } .scale-125 { transform: scale(1.25); } .scale-150 { transform: scale(1.5); }
.rotate-0 { transform: rotate(0deg); } .rotate-1 { transform: rotate(1deg); } .rotate-2 { transform: rotate(2deg); } .rotate-3 { transform: rotate(3deg); } .rotate-6 { transform: rotate(6deg); } .rotate-12 { transform: rotate(12deg); } .rotate-45 { transform: rotate(45deg); } .rotate-90 { transform: rotate(90deg); } .rotate-180 { transform: rotate(180deg); }
.-rotate-1 { transform: rotate(-1deg); } .-rotate-2 { transform: rotate(-2deg); } .-rotate-3 { transform: rotate(-3deg); } .-rotate-6 { transform: rotate(-6deg); } .-rotate-12 { transform: rotate(-12deg); } .-rotate-45 { transform: rotate(-45deg); } .-rotate-90 { transform: rotate(-90deg); } .-rotate-180 { transform: rotate(-180deg); }
.translate-x-0 { transform: translateX(0px); } .translate-x-1 { transform: translateX(0.25rem); } .translate-x-2 { transform: translateX(0.5rem); } .translate-x-4 { transform: translateX(1rem); } .translate-x-full { transform: translateX(100%); } .translate-x-1\/2 { transform: translateX(50%); }
.-translate-x-1 { transform: translateX(-0.25rem); } .-translate-x-2 { transform: translateX(-0.5rem); } .-translate-x-4 { transform: translateX(-1rem); } .-translate-x-full { transform: translateX(-100%); } .-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0 { transform: translateY(0px); } .translate-y-1 { transform: translateY(0.25rem); } .translate-y-2 { transform: translateY(0.5rem); } .translate-y-4 { transform: translateY(1rem); } .translate-y-full { transform: translateY(100%); } .translate-y-1\/2 { transform: translateY(50%); }
.-translate-y-1 { transform: translateY(-0.25rem); } .-translate-y-2 { transform: translateY(-0.5rem); } .-translate-y-4 { transform: translateY(-1rem); } .-translate-y-full { transform: translateY(-100%); } .-translate-y-1\/2 { transform: translateY(-50%); }
.origin-center { transform-origin: center; } .origin-top { transform-origin: top; } .origin-top-right { transform-origin: top right; } .origin-right { transform-origin: right; } .origin-bottom-right { transform-origin: bottom right; } .origin-bottom { transform-origin: bottom; } .origin-bottom-left { transform-origin: bottom left; } .origin-left { transform-origin: left; } .origin-top-left { transform-origin: top left; }

/* GRADIENTS */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-bl { background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-tl { background-image: linear-gradient(to top left, var(--tw-gradient-stops)); }
.from-pink-500 { --tw-gradient-from: #EC4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(236 72 153 / 0)); }
.from-pink-600 { --tw-gradient-from: #DB2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(219 39 119 / 0)); }
.from-purple-500 { --tw-gradient-from: #A855F7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(168 85 247 / 0)); }
.from-purple-600 { --tw-gradient-from: #9333EA; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(147 51 234 / 0)); }
.from-gold-500 { --tw-gradient-from: #D4A012; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(212 160 18 / 0)); }
.to-pink-500 { --tw-gradient-to: #EC4899; }
.to-pink-600 { --tw-gradient-to: #DB2777; }
.to-purple-500 { --tw-gradient-to: #A855F7; }
.to-purple-600 { --tw-gradient-to: #9333EA; }
.to-gold-600 { --tw-gradient-to: #B8860B; }

/* FILTERS & EFFECTS */
.blur-none { filter: blur(0); } .blur-sm { filter: blur(4px); } .blur { filter: blur(8px); } .blur-md { filter: blur(12px); } .blur-lg { filter: blur(16px); } .blur-xl { filter: blur(24px); } .blur-2xl { filter: blur(40px); } .blur-3xl { filter: blur(64px); }
.backdrop-blur-none { backdrop-filter: blur(0); } .backdrop-blur-sm { backdrop-filter: blur(4px); } .backdrop-blur { backdrop-filter: blur(8px); } .backdrop-blur-md { backdrop-filter: blur(12px); } .backdrop-blur-lg { backdrop-filter: blur(16px); } .backdrop-blur-xl { backdrop-filter: blur(24px); }
.grayscale-0 { filter: grayscale(0); } .grayscale { filter: grayscale(100%); }
.invert-0 { filter: invert(0); } .invert { filter: invert(100%); }

/* OBJECT FIT/POSITION */
.object-contain { object-fit: contain; } .object-cover { object-fit: cover; } .object-fill { object-fit: fill; } .object-none { object-fit: none; } .object-scale-down { object-fit: scale-down; }
.object-bottom { object-position: bottom; } .object-center { object-position: center; } .object-left { object-position: left; } .object-right { object-position: right; } .object-top { object-position: top; }

/* ASPECT RATIO */
.aspect-auto { aspect-ratio: auto; } .aspect-square { aspect-ratio: 1 / 1; } .aspect-video { aspect-ratio: 16 / 9; }

/* RING */
.ring-0 { box-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.ring-1 { box-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.ring-2 { box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.ring-4 { box-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.ring-inset { --tw-ring-inset: inset; }
.ring-pink-500 { --tw-ring-color: #EC4899; }
.ring-primary { --tw-ring-color: #C45C5C; }
.ring-love-pink { --tw-ring-color: #EC4899; }
.ring-offset-2 { --tw-ring-offset-width: 2px; }

/* OUTLINE */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.outline { outline-style: solid; }
.outline-dashed { outline-style: dashed; }
.outline-dotted { outline-style: dotted; }
.outline-0 { outline-width: 0px; } .outline-1 { outline-width: 1px; } .outline-2 { outline-width: 2px; } .outline-4 { outline-width: 4px; }
.outline-offset-0 { outline-offset: 0px; } .outline-offset-1 { outline-offset: 1px; } .outline-offset-2 { outline-offset: 2px; } .outline-offset-4 { outline-offset: 4px; }

/* LISTS */
.list-none { list-style-type: none; } .list-disc { list-style-type: disc; } .list-decimal { list-style-type: decimal; }
.list-inside { list-style-position: inside; } .list-outside { list-style-position: outside; }

/* TABLES */
.border-collapse { border-collapse: collapse; } .border-separate { border-collapse: separate; }
.table-auto { table-layout: auto; } .table-fixed { table-layout: fixed; }

/* APPEARANCE */
.appearance-none { appearance: none; }

/* RESIZE */
.resize-none { resize: none; } .resize-y { resize: vertical; } .resize-x { resize: horizontal; } .resize { resize: both; }

/* SCROLL */
.scroll-smooth { scroll-behavior: smooth; }
.scroll-auto { scroll-behavior: auto; }

/* FILL/STROKE */
.fill-current { fill: currentColor; }
.stroke-current { stroke: currentColor; }
.stroke-0 { stroke-width: 0; } .stroke-1 { stroke-width: 1; } .stroke-2 { stroke-width: 2; }

/* SR ONLY */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
.not-sr-only { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* ============================================================================
   HOVER STATES
   ========================================================================= */

.hover\:bg-gray-50:hover { background-color: #F9FAFB; }
.hover\:bg-gray-100:hover { background-color: #F3F4F6; }
.hover\:bg-gray-200:hover { background-color: #E5E7EB; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-gray-800:hover { background-color: #1F2937; }
.hover\:bg-pink-600:hover { background-color: #DB2777; }
.hover\:bg-pink-700:hover { background-color: #BE185D; }
.hover\:bg-purple-600:hover { background-color: #9333EA; }
.hover\:bg-primary:hover { background-color: #C45C5C; }
.hover\:bg-primary\/90:hover { background-color: rgb(196 92 92 / 0.9); }
.hover\:bg-love-pink\/90:hover { background-color: rgb(236 72 153 / 0.9); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-gray-100:hover { color: #F3F4F6; }
.hover\:text-gray-300:hover { color: #D1D5DB; }
.hover\:text-gray-700:hover { color: #374151; }
.hover\:text-gray-900:hover { color: #111827; }
.hover\:text-pink-500:hover { color: #EC4899; }
.hover\:text-pink-600:hover { color: #DB2777; }
.hover\:text-primary:hover { color: #C45C5C; }
.hover\:text-primary-dark:hover { color: #A34A4A; }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:no-underline:hover { text-decoration-line: none; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover\:shadow-pink-500\/25:hover { box-shadow: 0 10px 15px -3px rgb(236 72 153 / 0.25); }
.hover\:shadow-pink-500\/50:hover { box-shadow: 0 10px 15px -3px rgb(236 72 153 / 0.5); }
.hover\:border-gray-300:hover { border-color: #D1D5DB; }
.hover\:border-pink-500:hover { border-color: #EC4899; }
.hover\:ring-2:hover { box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); }

/* FOCUS STATES */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.focus\:ring-4:focus { box-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.focus\:ring-pink-500:focus { --tw-ring-color: #EC4899; }
.focus\:ring-love-pink:focus { --tw-ring-color: #EC4899; }
.focus\:ring-primary:focus { --tw-ring-color: #C45C5C; }
.focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px; }
.focus\:border-pink-500:focus { border-color: #EC4899; }
.focus\:border-transparent:focus { border-color: transparent; }
.focus\:bg-gray-100:focus { background-color: #F3F4F6; }

/* FOCUS-WITHIN */
.focus-within\:ring-2:focus-within { box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.focus-within\:ring-pink-500:focus-within { --tw-ring-color: #EC4899; }

/* ACTIVE STATES */
.active\:scale-95:active { transform: scale(0.95); }
.active\:bg-gray-200:active { background-color: #E5E7EB; }

/* DISABLED STATES */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }
.disabled\:bg-gray-100:disabled { background-color: #F3F4F6; }

/* GROUP HOVER */
.group:hover .group-hover\:visible { visibility: visible; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-pink-500 { color: #EC4899; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }

/* PEER */
.peer:checked ~ .peer-checked\:bg-pink-500 { background-color: #EC4899; }
.peer:focus ~ .peer-focus\:ring-2 { box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); }

/* ============================================================================
   DARK MODE
   ========================================================================= */

.dark .dark\:bg-gray-700 { background-color: #374151; }
.dark .dark\:bg-gray-800 { background-color: #1F2937; }
.dark .dark\:bg-gray-900 { background-color: #111827; }
.dark .dark\:bg-dark-700 { background-color: #2D2D35; }
.dark .dark\:bg-dark-800 { background-color: #1E1E23; }
.dark .dark\:bg-dark-900 { background-color: #121215; }
.dark .dark\:bg-white { background-color: #ffffff; }
.dark .dark\:bg-transparent { background-color: transparent; }
.dark .dark\:text-white { color: #ffffff; }
.dark .dark\:text-gray-50 { color: #F9FAFB; }
.dark .dark\:text-gray-100 { color: #F3F4F6; }
.dark .dark\:text-gray-200 { color: #E5E7EB; }
.dark .dark\:text-gray-300 { color: #D1D5DB; }
.dark .dark\:text-gray-400 { color: #9CA3AF; }
.dark .dark\:text-gray-500 { color: #6B7280; }
.dark .dark\:border-gray-600 { border-color: #4B5563; }
.dark .dark\:border-gray-700 { border-color: #374151; }
.dark .dark\:border-gray-800 { border-color: #1F2937; }
.dark .dark\:border-dark-700 { border-color: #2D2D35; }
.dark .dark\:border-white\/10 { border-color: rgb(255 255 255 / 0.1); }
.dark .dark\:border-white\/20 { border-color: rgb(255 255 255 / 0.2); }
.dark .dark\:shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3); }
.dark .dark\:hover\:bg-gray-700:hover { background-color: #374151; }
.dark .dark\:hover\:bg-gray-800:hover { background-color: #1F2937; }
.dark .dark\:hover\:text-white:hover { color: #ffffff; }
.dark .dark\:hover\:text-gray-100:hover { color: #F3F4F6; }
.dark .dark\:placeholder-gray-500::placeholder { color: #6B7280; }
.dark .dark\:ring-offset-gray-900 { --tw-ring-offset-color: #111827; }

/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================= */

/* SM - 640px and up */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block { display: block; }
  .sm\:inline { display: inline; }
  .sm\:grid { display: grid; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-col { flex-direction: column; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:p-4 { padding: 1rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-left { text-align: left; }
  .sm\:w-auto { width: auto; }
  .sm\:w-1\/2 { width: 50%; }
  .sm\:max-w-md { max-width: 28rem; }
  .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
  .sm\:rounded-lg { border-radius: 0.5rem; }
}

/* MD - 768px and up */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:inline-flex { display: inline-flex; }
  .md\:grid { display: grid; }
  .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\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-start { justify-content: flex-start; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-left { text-align: left; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:max-w-lg { max-width: 32rem; }
  .md\:max-w-xl { max-width: 36rem; }
  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
  .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
  .md\:mt-0 { margin-top: 0px; }
  .md\:ml-4 { margin-left: 1rem; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
}

/* LG - 1024px and up */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:grid { display: grid; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:w-1\/3 { width: 33.333333%; }
  .lg\:w-1\/4 { width: 25%; }
  .lg\:max-w-2xl { max-width: 42rem; }
  .lg\:max-w-4xl { max-width: 56rem; }
  .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
  .lg\:mt-0 { margin-top: 0px; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
}

/* XL - 1280px and up */
@media (min-width: 1280px) {
  .xl\:flex { display: flex; }
  .xl\:hidden { display: none; }
  .xl\:block { display: block; }
  .xl\:grid { display: grid; }
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .xl\:gap-10 { gap: 2.5rem; }
  .xl\:gap-12 { gap: 3rem; }
  .xl\:p-10 { padding: 2.5rem; }
  .xl\:p-12 { padding: 3rem; }
  .xl\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .xl\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .xl\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .xl\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .xl\:text-5xl { font-size: 3rem; line-height: 1; }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .xl\:w-1\/4 { width: 25%; }
  .xl\:max-w-6xl { max-width: 72rem; }
  .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
}

/* 2XL - 1536px and up */
@media (min-width: 1536px) {
  .2xl\:flex { display: flex; }
  .2xl\:grid { display: grid; }
  .2xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .2xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .2xl\:gap-12 { gap: 3rem; }
  .2xl\:p-12 { padding: 3rem; }
  .2xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .2xl\:max-w-7xl { max-width: 80rem; }
}

/* ============================================================================
   INDIAN MARRIAGE SPECIFIC COMPONENTS
   ========================================================================= */

/* Custom Colors with Opacity */
.bg-love-pink\/10 { background-color: rgb(236 72 153 / 0.1); }
.bg-love-pink\/20 { background-color: rgb(236 72 153 / 0.2); }
.bg-love-pink\/50 { background-color: rgb(236 72 153 / 0.5); }
.bg-primary\/10 { background-color: rgb(196 92 92 / 0.1); }
.bg-primary\/20 { background-color: rgb(196 92 92 / 0.2); }
.bg-gold\/10 { background-color: rgb(212 160 18 / 0.1); }
.bg-gold\/20 { background-color: rgb(212 160 18 / 0.2); }
.bg-white\/80 { background-color: rgb(255 255 255 / 0.8); }
.bg-white\/90 { background-color: rgb(255 255 255 / 0.9); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.bg-black\/50 { background-color: rgb(0 0 0 / 0.5); }
.bg-black\/60 { background-color: rgb(0 0 0 / 0.6); }
.bg-gray-900\/90 { background-color: rgb(17 24 39 / 0.9); }
.bg-gray-900\/95 { background-color: rgb(17 24 39 / 0.95); }

/* Line Clamp */
.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.line-clamp-4 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }

/* Placeholder */
.placeholder-gray-400::placeholder { color: #9CA3AF; }
.placeholder-gray-500::placeholder { color: #6B7280; }

/* Print */
@media print {
  .print\:hidden { display: none; }
}

/* Form Focus Ring Variables */
:root {
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(236 72 153 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

/* ============================================================================
   ADDITIONAL MISSING CLASSES
   ========================================================================= */

/* Flex-1 for main content */
.flex-1 { flex: 1 1 0%; }

/* Additional background with opacity */
.bg-gray-900\/95 { background-color: rgb(17 24 39 / 0.95); }
.bg-gray-900\/98 { background-color: rgb(17 24 39 / 0.98); }

/* Additional hover states */
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-gray-800:hover { background-color: #1F2937; }

/* Heartbeat animation */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.heartbeat, .animate-heartbeat { animation: heartbeat 2s ease-in-out infinite; }

/* Slide up animation */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up { animation: slideUp 0.5s ease-out; }

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-in { animation: fadeIn 0.5s ease-out; }

/* Additional text colors */
.text-yellow-400 { color: #FACC15; }

/* Form input base styles */
.form-input {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #D1D5DB;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-input:focus {
  outline: none;
  border-color: #EC4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

/* Additional dark mode styles */
.dark .dark\:bg-dark-700 { background-color: #2D2D35; }
.dark .dark\:border-dark-700 { border-color: #2D2D35; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Inset positioning */
.inset-y-0 { top: 0px; bottom: 0px; }

/* Additional rounded variants */
.rounded-2xl { border-radius: 1rem; }

/* Text sizes */
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }

/* Additional spacing */
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.pl-10 { padding-left: 2.5rem; }
.pr-4 { padding-right: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }

/* Focus ring for love-pink */
.focus\:ring-love-pink:focus { --tw-ring-color: #EC4899; box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); }
.focus\:border-transparent:focus { border-color: transparent; }

/* Animate pulse */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Animate spin */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin { animation: spin 1s linear infinite; }

/* Animate bounce */
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
.animate-bounce { animation: bounce 1s infinite; }
