/* Helper Utilities */

/* Display Utilities */
.hidden { display: none !important; }
.block { display: block !important; }
.inline { display: inline !important; }
.inline-block { display: inline-block !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* Position */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }

/* Flexbox Utilities */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

/* Text Utilities */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.font-light { font-weight: var(--fw-300) !important; }
.font-normal { font-weight: var(--fw-400) !important; }
.font-medium { font-weight: var(--fw-500) !important; }
.font-semibold { font-weight: var(--fw-600) !important; }

/* Color Utilities */
.text-primary { color: var(--orange-yellow-crayola) !important; }
.text-secondary { color: var(--light-gray-70) !important; }
.text-white { color: var(--white-2) !important; }
.text-gray { color: var(--light-gray) !important; }

/* Background Utilities */
.bg-primary { background: var(--orange-yellow-crayola) !important; }
.bg-secondary { background: var(--onyx) !important; }
.bg-dark { background: var(--eerie-black-2) !important; }
.bg-transparent { background: transparent !important; }

/* Spacing Utilities */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }

.m-1 { margin: 5px !important; }
.mt-1 { margin-top: 5px !important; }
.mr-1 { margin-right: 5px !important; }
.mb-1 { margin-bottom: 5px !important; }
.ml-1 { margin-left: 5px !important; }

.m-2 { margin: 10px !important; }
.mt-2 { margin-top: 10px !important; }
.mr-2 { margin-right: 10px !important; }
.mb-2 { margin-bottom: 10px !important; }
.ml-2 { margin-left: 10px !important; }

.m-3 { margin: 15px !important; }
.mt-3 { margin-top: 15px !important; }
.mr-3 { margin-right: 15px !important; }
.mb-3 { margin-bottom: 15px !important; }
.ml-3 { margin-left: 15px !important; }

.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }

.p-1 { padding: 5px !important; }
.pt-1 { padding-top: 5px !important; }
.pr-1 { padding-right: 5px !important; }
.pb-1 { padding-bottom: 5px !important; }
.pl-1 { padding-left: 5px !important; }

.p-2 { padding: 10px !important; }
.pt-2 { padding-top: 10px !important; }
.pr-2 { padding-right: 10px !important; }
.pb-2 { padding-bottom: 10px !important; }
.pl-2 { padding-left: 10px !important; }

.p-3 { padding: 15px !important; }
.pt-3 { padding-top: 15px !important; }
.pr-3 { padding-right: 15px !important; }
.pb-3 { padding-bottom: 15px !important; }
.pl-3 { padding-left: 15px !important; }

/* Border Utilities */
.border { border: 1px solid var(--jet) !important; }
.border-0 { border: 0 !important; }
.border-primary { border-color: var(--orange-yellow-crayola) !important; }

.rounded { border-radius: var(--radius-12) !important; }
.rounded-sm { border-radius: var(--radius-8) !important; }
.rounded-lg { border-radius: var(--radius-16) !important; }
.rounded-xl { border-radius: var(--radius-20) !important; }
.rounded-full { border-radius: 50% !important; }

/* Width & Height */
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.w-auto { width: auto !important; }
.h-auto { height: auto !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-scroll { overflow: scroll !important; }

/* Z-index */
.z-0 { z-index: 0 !important; }
.z-10 { z-index: 10 !important; }
.z-20 { z-index: 20 !important; }
.z-30 { z-index: 30 !important; }

/* Cursor */
.cursor-pointer { cursor: pointer !important; }
.cursor-not-allowed { cursor: not-allowed !important; }

/* User Select */
.select-none { user-select: none !important; }
.select-text { user-select: text !important; }

/* Pointer Events */
.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }

/* Opacity */
.opacity-0 { opacity: 0 !important; }
.opacity-25 { opacity: 0.25 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

/* Shadow */
.shadow-sm { box-shadow: var(--shadow-1) !important; }
.shadow { box-shadow: var(--shadow-2) !important; }
.shadow-lg { box-shadow: var(--shadow-3) !important; }
.shadow-xl { box-shadow: var(--shadow-4) !important; }
.shadow-none { box-shadow: none !important; }