/* Asisi Bakery Bootstrap 5 Custom Theme */
:root {
    --asisi-primary: #944a00;
    --asisi-primary-hover: #783b00;
    --asisi-secondary: #685d4a;
    --asisi-bg: #fbf9f8;
    --asisi-soft: #FAF7F2;
    --asisi-ink: #2D1E12;
    --asisi-outline: #897365;
    --asisi-outline-variant: #dcc1b1;
    --asisi-container: #eddec6;
}

body {
    background-color: var(--asisi-bg);
    color: var(--asisi-ink);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.text-asisi-primary {
    color: var(--asisi-primary) !important;
}

.bg-asisi-primary {
    background-color: var(--asisi-primary) !important;
}

.bg-asisi-soft {
    background-color: var(--asisi-soft) !important;
}

/* Material symbols vertical alignment */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

/* Custom Buttons */
.btn-asisi-primary {
    background-color: var(--asisi-primary);
    color: #ffffff;
    border: none;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.6rem 1.25rem;
    transition: all 0.2s ease-in-out;
}
.btn-asisi-primary:hover, .btn-asisi-primary:focus, .btn-asisi-primary:active {
    background-color: var(--asisi-primary-hover);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(148, 74, 0, 0.25);
}

.btn-asisi-outline {
    background-color: transparent;
    color: var(--asisi-primary);
    border: 1.5px solid var(--asisi-primary);
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.6rem 1.25rem;
    transition: all 0.2s ease-in-out;
}
.btn-asisi-outline:hover, .btn-asisi-outline:focus, .btn-asisi-outline:active {
    background-color: rgba(148, 74, 0, 0.08);
    color: var(--asisi-primary-hover);
    border-color: var(--asisi-primary-hover);
}

.btn-asisi-soft {
    background-color: var(--asisi-soft);
    color: var(--asisi-ink);
    border: 1px solid var(--asisi-outline-variant);
    font-weight: 600;
    border-radius: 0.75rem;
}
.btn-asisi-soft:hover {
    background-color: var(--asisi-container);
    color: var(--asisi-ink);
}

/* Custom Card */
.card-asisi {
    background-color: #ffffff;
    border: 1px solid rgba(220, 193, 177, 0.4);
    border-radius: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Category Pills */
.category-pill {
    padding: 0.4rem 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.825rem;
    border: 1px solid var(--asisi-outline-variant);
    background-color: var(--asisi-soft);
    color: var(--asisi-ink);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}
.category-pill.active, .category-pill:hover {
    background-color: var(--asisi-primary);
    color: #ffffff;
    border-color: var(--asisi-primary);
}

/* Custom scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Tailwind Layout Utility Compatibility Layer (Local CSS, no Tailwind script needed) */
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-grow { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-stretch { align-items: stretch !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.justify-end { justify-content: flex-end !important; }
.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.inline-flex { display: inline-flex !important; }
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; position: absolute; }
.top-0 { top: 0 !important; }
.top-1 { top: 0.25rem !important; }
.right-1 { right: 0.25rem !important; }
.bottom-0 { bottom: 0 !important; }
.left-0 { left: 0 !important; }
.right-0 { right: 0 !important; }
.z-50 { z-index: 50 !important; }
.z-20 { z-index: 20 !important; }
.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }

/* Grid compatibility */
.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .md\:col-span-1 { grid-column: span 1 / span 1 !important; }
  .md\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .md\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .lg\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .lg\:col-span-4 { grid-column: span 4 / span 4 !important; }
  .lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .lg\:col-span-6 { grid-column: span 6 / span 6 !important; }
  .lg\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .lg\:col-span-8 { grid-column: span 8 / span 8 !important; }
  .lg\:flex-row { flex-direction: row !important; }
  .lg\:items-center { align-items: center !important; }
  .lg\:justify-between { justify-content: space-between !important; }
}

/* Gaps & spacing */
.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-2\.5 { gap: 0.625rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-5 { gap: 1.25rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-12 { gap: 3rem !important; }
.gap-x-6 { column-gap: 1.5rem !important; }
.gap-y-10 { row-gap: 2.5rem !important; }

/* space-y and space-x */
.space-y-1 > * + * { margin-top: 0.25rem !important; }
.space-y-2 > * + * { margin-top: 0.5rem !important; }
.space-y-3 > * + * { margin-top: 0.75rem !important; }
.space-y-4 > * + * { margin-top: 1rem !important; }
.space-y-5 > * + * { margin-top: 1.25rem !important; }
.space-y-6 > * + * { margin-top: 1.5rem !important; }
.space-y-8 > * + * { margin-top: 2rem !important; }
.space-y-10 > * + * { margin-top: 2.5rem !important; }
.space-y-12 > * + * { margin-top: 3rem !important; }

/* Margins & Paddings */
.p-1\.5 { padding: 0.375rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.p-10 { padding: 2.5rem !important; }
.p-12 { padding: 3rem !important; }
.p-20 { padding: 5rem !important; }

.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-10 { padding-left: 2.5rem !important; padding-right: 2.5rem !important; }
.px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-3\.5 { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-5 { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
.py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-10 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-12 { padding-top: 3rem !important; }
.pt-16 { padding-top: 4rem !important; }
.pt-20 { padding-top: 5rem !important; }

.pb-2 { padding-bottom: 0.5rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-12 { padding-bottom: 3rem !important; }

.pl-3\.5 { padding-left: 0.875rem !important; }
.pr-2\.5 { padding-right: 0.625rem !important; }
.pl-9 { padding-left: 2.25rem !important; }
.pr-3 { padding-right: 0.75rem !important; }

.mt-0\.5 { margin-top: 0.125rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mt-16 { margin-top: 4rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-16 { margin-bottom: 4rem !important; }

.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-auto { margin-left: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

@media (min-width: 768px) {
  .md\:p-6 { padding: 1.5rem !important; }
  .md\:p-8 { padding: 2rem !important; }
  .md\:p-12 { padding: 3rem !important; }
  .md\:p-20 { padding: 5rem !important; }
  .md\:px-12 { padding-left: 3rem !important; padding-right: 3rem !important; }
  .md\:px-margin-desktop { padding-left: 40px !important; padding-right: 40px !important; }
  .md\:py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .md\:mt-16 { margin-top: 4rem !important; }
}

/* Sizing */
.w-2 { width: 0.5rem !important; }
.w-3 { width: 0.75rem !important; }
.w-4 { width: 1rem !important; }
.w-5 { width: 1.25rem !important; }
.w-6 { width: 1.5rem !important; }
.w-8 { width: 2rem !important; }
.w-9 { width: 2.25rem !important; }
.w-10 { width: 2.5rem !important; }
.w-11 { width: 2.75rem !important; }
.w-12 { width: 3rem !important; }
.w-14 { width: 3.5rem !important; }
.w-16 { width: 4rem !important; }
.w-20 { width: 5rem !important; }
.w-60 { width: 15rem !important; }
.w-64 { width: 16rem !important; }
.w-80 { width: 20rem !important; }
.w-100 { width: 100% !important; }
.w-full { width: 100% !important; }
.w-\[270px\] { width: 270px !important; }

.h-0\.5 { height: 0.125rem !important; }
.h-2 { height: 0.5rem !important; }
.h-3 { height: 0.75rem !important; }
.h-4 { height: 1rem !important; }
.h-5 { height: 1.25rem !important; }
.h-6 { height: 1.5rem !important; }
.h-8 { height: 2rem !important; }
.h-9 { height: 2.25rem !important; }
.h-10 { height: 2.5rem !important; }
.h-11 { height: 2.75rem !important; }
.h-12 { height: 3rem !important; }
.h-14 { height: 3.5rem !important; }
.h-16 { height: 4rem !important; }
.h-20 { height: 5rem !important; }
.h-64 { height: 16rem !important; }
.h-96 { height: 24rem !important; }
.h-full { height: 100% !important; }
.h-\[600px\] { height: 600px !important; }

.max-w-xs { max-width: 20rem !important; }
.max-w-sm { max-width: 24rem !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-lg { max-width: 32rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-container-max { max-width: 1200px !important; }
.max-w-\[480px\] { max-width: 480px !important; }
.max-w-\[100px\] { max-width: 100px !important; }
.max-w-\[1440px\] { max-width: 1440px !important; }
.max-w-\[450px\] { max-width: 450px !important; }
.max-w-\[85\%\] { max-width: 85% !important; }
.max-w-full { max-width: 100% !important; }

.aspect-square { aspect-ratio: 1 / 1 !important; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5 !important; }

/* Borders & Rounding */
.border { border: 1px solid rgba(137, 115, 101, 0.2) !important; }
.border-2 { border-width: 2px !important; }
.border-b { border-bottom: 1px solid rgba(137, 115, 101, 0.2) !important; }
.border-t { border-top: 1px solid rgba(137, 115, 101, 0.2) !important; }
.border-y { border-top: 1px solid rgba(137, 115, 101, 0.2) !important; border-bottom: 1px solid rgba(137, 115, 101, 0.2) !important; }
.border-none { border-style: none !important; }

.border-\[\#F8E8D0\] { border-color: #F8E8D0 !important; }
.border-outline-variant\/10 { border-color: rgba(220, 193, 177, 0.1) !important; }
.border-outline-variant\/15 { border-color: rgba(220, 193, 177, 0.15) !important; }
.border-outline-variant\/20 { border-color: rgba(220, 193, 177, 0.2) !important; }
.border-outline-variant\/30 { border-color: rgba(220, 193, 177, 0.3) !important; }
.border-outline-variant\/35 { border-color: rgba(220, 193, 177, 0.35) !important; }
.border-primary\/20 { border-color: rgba(148, 74, 0, 0.2) !important; }
.border-primary { border-color: var(--asisi-primary) !important; }

.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-\[40px\] { border-radius: 40px !important; }
.rounded-full { border-radius: 9999px !important; }

/* Colors & Backgrounds */
.bg-surface { background-color: var(--asisi-bg) !important; }
.bg-surface-soft { background-color: var(--asisi-soft) !important; }
.bg-white { background-color: #ffffff !important; }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9) !important; }
.bg-primary { background-color: var(--asisi-primary) !important; }
.bg-primary-fixed { background-color: #ffdcc5 !important; }
.bg-primary-container { background-color: var(--asisi-primary) !important; }
.bg-secondary-container { background-color: #eddec6 !important; }
.bg-secondary-container\/20 { background-color: rgba(237, 222, 198, 0.2) !important; }
.bg-primary\/5 { background-color: rgba(148, 74, 0, 0.05) !important; }
.bg-primary\/10 { background-color: rgba(148, 74, 0, 0.1) !important; }
.bg-primary\/20 { background-color: rgba(148, 74, 0, 0.2) !important; }
.bg-error { background-color: #EF4444 !important; }
.bg-error\/15 { background-color: rgba(239, 68, 68, 0.15) !important; }
.bg-success\/15 { background-color: rgba(34, 197, 94, 0.15) !important; }
.bg-ink-bold { background-color: var(--asisi-ink) !important; }

.text-primary { color: var(--asisi-primary) !important; }
.text-ink-bold { color: var(--asisi-ink) !important; }
.text-on-surface-variant { color: #564337 !important; }
.text-on-primary-fixed { color: #301400 !important; }
.text-outline { color: var(--asisi-outline) !important; }
.text-outline\/60 { color: rgba(137, 115, 101, 0.6) !important; }
.text-white { color: #ffffff !important; }
.text-white\/90 { color: rgba(255, 255, 255, 0.9) !important; }
.text-success { color: #22C55E !important; }
.text-error { color: #EF4444 !important; }
.text-muted { color: #6c757d !important; }

/* Gradients */
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; }
.from-black\/40 { --tw-gradient-from: rgba(0, 0, 0, 0.4) !important; --tw-gradient-to: rgba(0, 0, 0, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
.to-transparent { --tw-gradient-to: transparent !important; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }

/* Hover, Transforms, Transitions */
.transition-all { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-opacity { transition-property: opacity !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.transition-transform { transition-property: transform !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }

.hover\:brightness-110:hover { filter: brightness(1.1) !important; }
.hover\:scale-105:hover { transform: scale(1.05) !important; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important; }
.hover\:bg-primary\/5:hover { background-color: rgba(148, 74, 0, 0.05) !important; }
.hover\:bg-surface-variant\/50:hover { background-color: rgba(228, 226, 226, 0.5) !important; }
.hover\:bg-secondary-container:hover { background-color: #eddec6 !important; }
.hover\:bg-primary:hover { background-color: var(--asisi-primary) !important; }
.hover\:text-white:hover { color: #ffffff !important; }
.hover\:underline:hover { text-decoration: underline !important; }

.active\:scale-95:active { transform: scale(0.95) !important; }
.active\:scale-90:active { transform: scale(0.9) !important; }
.active\:scale-\[0\.98\]:active { transform: scale(0.98) !important; }

.object-contain { object-fit: contain !important; }
.object-cover { object-fit: cover !important; }

/* Typography */
.font-display { font-family: 'Plus Jakarta Sans', sans-serif !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-semibold { font-weight: 600 !important; }
.font-medium { font-weight: 500 !important; }
.font-mono { font-family: monospace !important; }

.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-base { font-size: 1rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }
.text-5xl { font-size: 3rem !important; }
.text-7xl { font-size: 4.5rem !important; }

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-justify { text-align: justify !important; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uppercase { text-transform: uppercase !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.tracking-tight { letter-spacing: -0.025em !important; }
.leading-relaxed { line-height: 1.625 !important; }
.leading-tight { line-height: 1.25 !important; }
.leading-\[1.1\] { line-height: 1.1 !important; }
.leading-none { line-height: 1 !important; }

/* Slash-based utility classes compatibility rules */
.top-1\/2 { top: 50% !important; }
.-translate-y-1\/2 { transform: translateY(-50%) !important; }

.bg-\[\#3498DB\]\/10 { background-color: rgba(52, 152, 219, 0.1) !important; }
.bg-amber-500\/10 { background-color: rgba(245, 158, 11, 0.1) !important; }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5) !important; }
.bg-blue-500\/10 { background-color: rgba(59, 130, 246, 0.1) !important; }
.bg-error\/10 { background-color: rgba(239, 68, 68, 0.1) !important; }
.bg-error\/15 { background-color: rgba(239, 68, 68, 0.15) !important; }
.bg-ink-bold\/20 { background-color: rgba(45, 30, 18, 0.2) !important; }
.bg-ink-bold\/40 { background-color: rgba(45, 30, 18, 0.4) !important; }
.bg-orange-500\/10 { background-color: rgba(249, 115, 22, 0.1) !important; }
.bg-outline-variant\/50 { background-color: rgba(220, 193, 177, 0.5) !important; }
.bg-primary\/5 { background-color: rgba(148, 74, 0, 0.05) !important; }
.bg-primary\/10 { background-color: rgba(148, 74, 0, 0.1) !important; }
.bg-primary\/20 { background-color: rgba(148, 74, 0, 0.2) !important; }
.bg-primary\/40 { background-color: rgba(148, 74, 0, 0.4) !important; }
.bg-primary-fixed\/10 { background-color: rgba(255, 220, 197, 0.1) !important; }
.bg-primary-fixed\/20 { background-color: rgba(255, 220, 197, 0.2) !important; }
.bg-primary-fixed\/30 { background-color: rgba(255, 220, 197, 0.3) !important; }
.bg-secondary-container\/20 { background-color: rgba(237, 222, 198, 0.2) !important; }
.bg-stone-55\/30 { background-color: rgba(120, 113, 108, 0.3) !important; }
.bg-success\/10 { background-color: rgba(34, 197, 94, 0.1) !important; }
.bg-success\/15 { background-color: rgba(34, 197, 94, 0.15) !important; }
.bg-surface\/80 { background-color: rgba(251, 249, 248, 0.8) !important; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1) !important; }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9) !important; }

.border-amber-500\/20 { border-color: rgba(245, 158, 11, 0.2) !important; }
.border-blue-500\/20 { border-color: rgba(59, 130, 246, 0.2) !important; }
.border-error\/20 { border-color: rgba(239, 68, 68, 0.2) !important; }
.border-orange-500\/20 { border-color: rgba(249, 115, 22, 0.2) !important; }
.border-outline-variant\/10 { border-color: rgba(220, 193, 177, 0.10) !important; }
.border-outline-variant\/15 { border-color: rgba(220, 193, 177, 0.15) !important; }
.border-outline-variant\/20 { border-color: rgba(220, 193, 177, 0.20) !important; }
.border-outline-variant\/30 { border-color: rgba(220, 193, 177, 0.30) !important; }
.border-outline-variant\/35 { border-color: rgba(220, 193, 177, 0.35) !important; }
.border-primary\/10 { border-color: rgba(148, 74, 0, 0.1) !important; }
.border-primary\/20 { border-color: rgba(148, 74, 0, 0.2) !important; }
.border-secondary-container\/40 { border-color: rgba(237, 222, 198, 0.40) !important; }
.border-success\/20 { border-color: rgba(34, 197, 94, 0.2) !important; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2) !important; }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3) !important; }

.divide-outline-variant\/10 > * + * { border-color: rgba(220, 193, 177, 0.1) !important; }

.focus\:ring-primary\/20:focus { box-shadow: 0 0 0 0.25rem rgba(148, 74, 0, 0.2) !important; }

.from-black\/40 { --tw-gradient-from: rgba(0, 0, 0, 0.4) !important; --tw-gradient-to: rgba(0, 0, 0, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }

.hover\:bg-error\/5:hover { background-color: rgba(239, 68, 68, 0.05) !important; }
.hover\:bg-error-container\/20:hover { background-color: rgba(255, 218, 214, 0.2) !important; }
.hover\:bg-error-container\/30:hover { background-color: rgba(255, 218, 214, 0.3) !important; }
.hover\:bg-primary\/5:hover { background-color: rgba(148, 74, 0, 0.05) !important; }
.hover\:bg-primary\/90:hover { background-color: rgba(148, 74, 0, 0.9) !important; }
.hover\:bg-primary-fixed\/30:hover { background-color: rgba(255, 220, 197, 0.3) !important; }
.hover\:bg-secondary-container\/80:hover { background-color: rgba(237, 222, 198, 0.8) !important; }
.hover\:bg-surface-soft\/40:hover { background-color: rgba(250, 247, 242, 0.4) !important; }
.hover\:bg-surface-soft\/50:hover { background-color: rgba(250, 247, 242, 0.5) !important; }
.hover\:bg-surface-variant\/50:hover { background-color: rgba(228, 226, 226, 0.5) !important; }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2) !important; }
.hover\:border-outline-variant\/20:hover { border-color: rgba(220, 193, 177, 0.2) !important; }
.hover\:border-primary\/30:hover { border-color: rgba(148, 74, 0, 0.3) !important; }

.placeholder\:text-on-surface-variant\/50::placeholder { color: rgba(86, 67, 55, 0.5) !important; }
.placeholder\:text-outline\/50::placeholder { color: rgba(137, 115, 101, 0.5) !important; }
.placeholder\:text-outline\/60::placeholder { color: rgba(137, 115, 101, 0.6) !important; }

.text-on-secondary-container\/60 { color: rgba(79, 69, 52, 0.6) !important; }
.text-outline\/40 { color: rgba(137, 115, 101, 0.4) !important; }
.text-outline\/60 { color: rgba(137, 115, 101, 0.6) !important; }
.text-outline\/65 { color: rgba(137, 115, 101, 0.65) !important; }

/* Background scaling and alignment utilities */
.bg-cover { background-size: cover !important; background-repeat: no-repeat !important; }
.bg-center { background-position: center !important; }
.bg-bottom { background-position: bottom !important; }
.bg-top { background-position: top !important; }

/* Image scaling and alignment utilities */
.object-bottom { object-position: bottom !important; }
.object-center { object-position: center !important; }
.object-top { object-position: top !important; }

/* List reset for breadcrumbs and menus */
ol, ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

/* Horizontal space-x utility classes */
.space-x-1 > * + * { margin-left: 0.25rem !important; }
.space-x-2 > * + * { margin-left: 0.5rem !important; }
.space-x-3 > * + * { margin-left: 0.75rem !important; }
.space-x-4 > * + * { margin-left: 1rem !important; }
.space-x-6 > * + * { margin-left: 1.5rem !important; }
.space-x-8 > * + * { margin-left: 2rem !important; }

@media (min-width: 768px) {
  .md\:space-x-2 > * + * { margin-left: 0.5rem !important; }
}

/* Orange Color Theme (#E67E22) Utilities */
.bg-\[\#E67E22\] { background-color: #E67E22 !important; }
.border-\[\#E67E22\] { border-color: #E67E22 !important; }
.text-\[\#E67E22\] { color: #E67E22 !important; }

.hover\:bg-\[\#b25a00\]:hover { background-color: #b25a00 !important; }
.hover\:bg-\[\#d35400\]:hover { background-color: #d35400 !important; }

/* Global reset for anchor (link) tags to prevent browser defaults */
a {
    color: inherit !important;
    text-decoration: none !important;
}
a:hover {
    color: inherit !important;
    text-decoration: none !important;
}

/* Admin Sidebar Layout Utilities */
.inset-y-0 { top: 0 !important; bottom: 0 !important; }
.z-\[60\] { z-index: 60 !important; }
.-translate-x-full { transform: translateX(-100%) !important; }
.duration-300 { transition-duration: 300ms !important; }

@media (min-width: 768px) {
  .md\:translate-x-0 { transform: translateX(0) !important; }
  .md\:pl-\[344px\] { padding-left: 344px !important; }
  .md\:pr-10 { padding-right: 2.5rem !important; }
  .md\:pt-10 { padding-top: 2.5rem !important; }
  .md\:pb-10 { padding-bottom: 2.5rem !important; }
  .md\:pl-\[20rem\] { padding-left: 20rem !important; }
}







