/**
 * Alcyone2026 Theme - Tailwind Utility Classes
 * Comprehensive utility classes to match the newdesign React template
 */

/* ============================================
   CSS Variables / Tailwind Colors
   ============================================ */
:root {
    /* Zinc scale */
    --tw-zinc-50: #fafafa;
    --tw-zinc-100: #f4f4f5;
    --tw-zinc-200: #e4e4e7;
    --tw-zinc-300: #d4d4d8;
    --tw-zinc-400: #a1a1aa;
    --tw-zinc-500: #71717a;
    --tw-zinc-600: #52525b;
    --tw-zinc-700: #3f3f46;
    --tw-zinc-800: #27272a;
    --tw-zinc-900: #18181b;
    --tw-zinc-950: #09090b;

    /* Amber scale */
    --tw-amber-300: #fcd34d;
    --tw-amber-400: #fbbf24;
    --tw-amber-500: #f59e0b;
    --tw-amber-600: #d97706;
    --tw-amber-700: #b45309;

    /* Yellow scale */
    --tw-yellow-400: #facc15;
    --tw-yellow-500: #eab308;
    --tw-yellow-600: #ca8a04;

    /* Red scale */
    --tw-red-500: #ef4444;
    --tw-red-600: #dc2626;

    /* Orange scale */
    --tw-orange-600: #ea580c;

    /* Emerald scale */
    --tw-emerald-400: #34d399;
    --tw-emerald-600: #059669;

    /* Teal scale */
    --tw-teal-600: #0d9488;

    /* Rose scale */
    --tw-rose-600: #e11d48;

    /* Pink scale */
    --tw-pink-600: #db2777;
}

/* ============================================
   Base Styles (matching React template)
   ============================================ */
html,
:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
}

.font-sans {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ============================================
   Layout & Positioning
   ============================================ */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.sticky {
    position: sticky;
}
.static {
    position: static;
}

.inset-0 {
    inset: 0;
}
.top-0 {
    top: 0;
}
.right-0 {
    right: 0;
}
.bottom-0 {
    bottom: 0;
}
.left-0 {
    left: 0;
}
.top-20 {
    top: 5rem;
}
.left-10 {
    left: 2.5rem;
}
.right-10 {
    right: 2.5rem;
}
.bottom-20 {
    bottom: 5rem;
}
.bottom-4 {
    bottom: 1rem;
}
.bottom-\[5\.5rem\] {
    bottom: 5.5rem;
}
.-top-1 {
    top: -0.25rem;
}
.-right-1 {
    right: -0.25rem;
}

.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-100 {
    z-index: 100;
}

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

/* ============================================
   Flexbox
   ============================================ */
.flex-col {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-nowrap {
    flex-wrap: nowrap;
}
.flex-1 {
    flex: 1 1 0%;
}
.flex-shrink-0 {
    flex-shrink: 0;
}
.grow {
    flex-grow: 1;
}

.items-start {
    align-items: flex-start;
}
.items-center {
    align-items: center;
}
.items-end {
    align-items: flex-end;
}
.items-stretch {
    align-items: stretch;
}

.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: flex-end;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}

.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-5 {
    gap: 1.25rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-10 {
    gap: 2.5rem;
}
.gap-12 {
    gap: 3rem;
}
.gap-16 {
    gap: 4rem;
}

/* ============================================
   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));
}

.col-span-1 {
    grid-column: span 1 / span 1;
}
.col-span-2 {
    grid-column: span 2 / span 2;
}

/* ============================================
   Spacing - Padding
   ============================================ */
.p-0 {
    padding: 0;
}
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-4 {
    padding: 1rem;
}
.p-5 {
    padding: 1.25rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-8 {
    padding: 2rem;
}
.p-10 {
    padding: 2.5rem;
}
.p-12 {
    padding: 3rem;
}
.p-16 {
    padding: 4rem;
}

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

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.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-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-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.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-4 {
    padding-top: 1rem;
}
.pt-6 {
    padding-top: 1.5rem;
}
.pt-12 {
    padding-top: 3rem;
}
.pt-32 {
    padding-top: 8rem;
}
.pb-3 {
    padding-bottom: 0.75rem;
}
.pb-20 {
    padding-bottom: 5rem;
}

/* ============================================
   Spacing - Margin
   ============================================ */
.m-0 {
    margin: 0;
}
.m-auto {
    margin: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mt-16 {
    margin-top: 4rem;
}
.mt-20 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}
.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 0.75rem;
}
.mb-4 {
    margin-bottom: 1rem;
}
.mb-5 {
    margin-bottom: 1.25rem;
}
.mb-6 {
    margin-bottom: 1.5rem;
}
.mb-8 {
    margin-bottom: 2rem;
}
.mb-10 {
    margin-bottom: 2.5rem;
}
.mb-12 {
    margin-bottom: 3rem;
}
.mb-16 {
    margin-bottom: 4rem;
}
.mb-20 {
    margin-bottom: 5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}
.mr-2 {
    margin-right: 0.5rem;
}

/* Space utilities */
.space-x-1 > * + * {
    margin-left: 0.25rem;
}
.space-x-2 > * + * {
    margin-left: 0.5rem;
}
.space-x-3 > * + * {
    margin-left: 0.75rem;
}
.space-x-4 > * + * {
    margin-left: 1rem;
}
.space-x-5 > * + * {
    margin-left: 1.25rem;
}
.space-x-6 > * + * {
    margin-left: 1.5rem;
}
.space-x-8 > * + * {
    margin-left: 2rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}
.space-y-2 > * + * {
    margin-top: 0.5rem;
}
.space-y-3 > * + * {
    margin-top: 0.75rem;
}
.space-y-4 > * + * {
    margin-top: 1rem;
}
.space-y-5 > * + * {
    margin-top: 1.25rem;
}
.space-y-6 > * + * {
    margin-top: 1.5rem;
}
.space-y-8 > * + * {
    margin-top: 2rem;
}

/* ============================================
   Width & Height
   ============================================ */
.w-0 {
    width: 0;
}
.w-1 {
    width: 0.25rem;
}
.w-3 {
    width: 0.75rem;
}
.w-4 {
    width: 1rem;
}
.w-5 {
    width: 1.25rem;
}
.w-6 {
    width: 1.5rem;
}
.w-7 {
    width: 1.75rem;
}
.w-8 {
    width: 2rem;
}
.w-10 {
    width: 2.5rem;
}
.w-12 {
    width: 3rem;
}
.w-14 {
    width: 3.5rem;
}
.w-16 {
    width: 4rem;
}
.w-20 {
    width: 5rem;
}
.w-24 {
    width: 6rem;
}
.w-32 {
    width: 8rem;
}
.w-40 {
    width: 10rem;
}
.w-48 {
    width: 12rem;
}
.w-64 {
    width: 16rem;
}
.w-72 {
    width: 18rem;
}
.w-96 {
    width: 24rem;
}
.w-full {
    width: 100%;
}
.w-1\/2 {
    width: 50%;
}
.w-screen {
    width: 100vw;
}

.min-w-0 {
    min-width: 0;
}
.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-\[1560px\] {
    max-width: 1560px;
}

.h-0 {
    height: 0;
}
.h-1 {
    height: 0.25rem;
}
.h-px {
    height: 1px;
}
.h-3 {
    height: 0.75rem;
}
.h-4 {
    height: 1rem;
}
.h-5 {
    height: 1.25rem;
}
.h-6 {
    height: 1.5rem;
}
.h-7 {
    height: 1.75rem;
}
.h-8 {
    height: 2rem;
}
.h-10 {
    height: 2.5rem;
}
.h-12 {
    height: 3rem;
}
.h-14 {
    height: 3.5rem;
}
.h-16 {
    height: 4rem;
}
.h-20 {
    height: 5rem;
}
.h-24 {
    height: 6rem;
}
.h-32 {
    height: 8rem;
}
.h-48 {
    height: 12rem;
}
.h-64 {
    height: 16rem;
}
.h-72 {
    height: 18rem;
}
.h-96 {
    height: 24rem;
}
.h-full {
    height: 100%;
}
.h-screen {
    height: 100vh;
}

.min-h-\[96px\] {
    min-height: 96px;
}
.min-h-screen {
    min-height: 100vh;
}

/* ============================================
   Typography
   ============================================ */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}
.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
}
.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}
.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}
.text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
}
.text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
}
.text-5xl {
    font-size: 3rem !important;
    line-height: 1.2 !important;
}
.text-6xl {
    font-size: 3.75rem !important;
    line-height: 1.1 !important;
}
.text-7xl {
    font-size: 4.5rem;
    line-height: 1.1;
}
.text-8xl {
    font-size: 6rem;
    line-height: 1;
}

.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;
}

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

.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;
}

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

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

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

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

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   Text Colors
   ============================================ */
.text-white {
    color: #ffffff;
}
.text-black {
    color: #000000;
}
.text-black\/90 {
    color: rgba(0, 0, 0, 0.9);
}
.text-black\/80 {
    color: rgba(0, 0, 0, 0.8);
}
.text-black\/70 {
    color: rgba(0, 0, 0, 0.7);
}
.text-transparent {
    color: transparent;
}

.text-zinc-300 {
    color: var(--tw-zinc-300);
}
.text-zinc-400 {
    color: var(--tw-zinc-400);
}
.text-zinc-500 {
    color: var(--tw-zinc-500);
}
.text-zinc-600 {
    color: var(--tw-zinc-600);
}
.text-zinc-700 {
    color: var(--tw-zinc-700);
}
.text-zinc-800 {
    color: var(--tw-zinc-800);
}

.text-amber-300 {
    color: var(--tw-amber-300);
}
.text-amber-400 {
    color: var(--tw-amber-400);
}
.text-amber-500 {
    color: var(--tw-amber-500);
}
.text-amber-600 {
    color: var(--tw-amber-600);
}

.text-yellow-400 {
    color: var(--tw-yellow-400);
}
.text-yellow-500 {
    color: var(--tw-yellow-500);
}

.text-red-500 {
    color: var(--tw-red-500);
}
.text-emerald-400 {
    color: var(--tw-emerald-400);
}

/* ============================================
   Background Colors
   ============================================ */
.bg-white {
    background-color: #ffffff;
}
.bg-black {
    background-color: #000000;
}
.bg-transparent {
    background-color: transparent;
}

.bg-zinc-700 {
    background-color: var(--tw-zinc-700);
}
.bg-zinc-800 {
    background-color: var(--tw-zinc-800);
}
.bg-zinc-900 {
    background-color: var(--tw-zinc-900);
}
.bg-zinc-950 {
    background-color: var(--tw-zinc-950);
}

.bg-amber-500 {
    background-color: var(--tw-amber-500);
}
.bg-amber-600 {
    background-color: var(--tw-amber-600);
}

.bg-red-500 {
    background-color: var(--tw-red-500);
}

/* Background opacity variants */
.bg-zinc-800\/50 {
    background-color: rgba(39, 39, 42, 0.5);
}
.bg-zinc-900\/50 {
    background-color: rgba(24, 24, 27, 0.5);
}
.bg-zinc-900\/90 {
    background-color: rgba(24, 24, 27, 0.9);
}
.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5);
}
.bg-black\/20 {
    background-color: rgba(0, 0, 0, 0.2);
}
.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}
.bg-white\/30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-amber-500\/5 {
    background-color: rgba(245, 158, 11, 0.05);
}
.bg-amber-500\/10 {
    background-color: rgba(245, 158, 11, 0.1);
}
.bg-amber-500\/20 {
    background-color: rgba(245, 158, 11, 0.2);
}
.bg-amber-500\/30 {
    background-color: rgba(245, 158, 11, 0.3);
}
.bg-amber-600\/10 {
    background-color: rgba(217, 119, 6, 0.1);
}
.bg-amber-600\/20 {
    background-color: rgba(217, 119, 6, 0.2);
}

.bg-yellow-500\/10 {
    background-color: rgba(234, 179, 8, 0.1);
}
.bg-yellow-500\/20 {
    background-color: rgba(234, 179, 8, 0.2);
}
.bg-yellow-600\/10 {
    background-color: rgba(202, 138, 4, 0.1);
}

.bg-red-600\/5 {
    background-color: rgba(220, 38, 38, 0.05);
}
.bg-red-600\/20 {
    background-color: rgba(220, 38, 38, 0.2);
}
.bg-orange-600\/5 {
    background-color: rgba(234, 88, 12, 0.05);
}
.bg-orange-600\/20 {
    background-color: rgba(234, 88, 12, 0.2);
}

/* ============================================
   Gradients
   ============================================ */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
    background-image: linear-gradient(
        to bottom right,
        var(--tw-gradient-stops)
    );
}
.bg-gradient-to-tl {
    background-image: linear-gradient(to top left, var(--tw-gradient-stops));
}

/* Gradient stops */
.from-transparent {
    --tw-gradient-from: transparent;
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-black {
    --tw-gradient-from: #000000;
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}

.from-zinc-800 {
    --tw-gradient-from: var(--tw-zinc-800);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-zinc-900 {
    --tw-gradient-from: var(--tw-zinc-900);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-zinc-900\/40 {
    --tw-gradient-from: rgba(24, 24, 27, 0.4);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-zinc-900\/90 {
    --tw-gradient-from: rgba(24, 24, 27, 0.9);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}

.from-amber-400 {
    --tw-gradient-from: var(--tw-amber-400);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-amber-500 {
    --tw-gradient-from: var(--tw-amber-500);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-amber-500\/0 {
    --tw-gradient-from: rgba(245, 158, 11, 0);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-amber-500\/5 {
    --tw-gradient-from: rgba(245, 158, 11, 0.05);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-amber-500\/10 {
    --tw-gradient-from: rgba(245, 158, 11, 0.1);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-amber-500\/20 {
    --tw-gradient-from: rgba(245, 158, 11, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-amber-600 {
    --tw-gradient-from: var(--tw-amber-600);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}

.from-yellow-400 {
    --tw-gradient-from: var(--tw-yellow-400);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-yellow-500 {
    --tw-gradient-from: var(--tw-yellow-500);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-yellow-500\/0 {
    --tw-gradient-from: rgba(234, 179, 8, 0);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-yellow-600 {
    --tw-gradient-from: var(--tw-yellow-600);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}

.from-red-600 {
    --tw-gradient-from: var(--tw-red-600);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-red-600\/20 {
    --tw-gradient-from: rgba(220, 38, 38, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-red-600\/5 {
    --tw-gradient-from: rgba(220, 38, 38, 0.05);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-orange-600 {
    --tw-gradient-from: var(--tw-orange-600);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-emerald-600 {
    --tw-gradient-from: var(--tw-emerald-600);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.from-rose-600 {
    --tw-gradient-from: var(--tw-rose-600);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}

.via-transparent {
    --tw-gradient-stops: var(--tw-gradient-from), transparent,
        var(--tw-gradient-to, transparent);
}
.via-black {
    --tw-gradient-stops: var(--tw-gradient-from), #000000,
        var(--tw-gradient-to, transparent);
}
.via-white\/20 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(255, 255, 255, 0.2),
        var(--tw-gradient-to, transparent);
}
.via-yellow-400 {
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-yellow-400),
        var(--tw-gradient-to, transparent);
}
.via-yellow-500 {
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-yellow-500),
        var(--tw-gradient-to, transparent);
}
.via-amber-500\/10 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(245, 158, 11, 0.1),
        var(--tw-gradient-to, transparent);
}
.via-amber-500\/30 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(245, 158, 11, 0.3),
        var(--tw-gradient-to, transparent);
}

.to-transparent {
    --tw-gradient-to: transparent;
}
.to-black {
    --tw-gradient-to: #000000;
}
.to-white {
    --tw-gradient-to: #ffffff;
}

.to-zinc-800 {
    --tw-gradient-to: var(--tw-zinc-800);
}
.to-zinc-800\/50 {
    --tw-gradient-to: rgba(39, 39, 42, 0.5);
}
.to-zinc-900\/40 {
    --tw-gradient-to: rgba(24, 24, 27, 0.4);
}
.to-zinc-900\/50 {
    --tw-gradient-to: rgba(24, 24, 27, 0.5);
}

.to-amber-400 {
    --tw-gradient-to: var(--tw-amber-400);
}
.to-amber-500 {
    --tw-gradient-to: var(--tw-amber-500);
}
.to-amber-500\/10 {
    --tw-gradient-to: rgba(245, 158, 11, 0.1);
}
.to-amber-600 {
    --tw-gradient-to: var(--tw-amber-600);
}

.to-yellow-400 {
    --tw-gradient-to: var(--tw-yellow-400);
}
.to-yellow-500 {
    --tw-gradient-to: var(--tw-yellow-500);
}
.to-yellow-500\/0 {
    --tw-gradient-to: rgba(234, 179, 8, 0);
}
.to-yellow-500\/5 {
    --tw-gradient-to: rgba(234, 179, 8, 0.05);
}
.to-yellow-500\/10 {
    --tw-gradient-to: rgba(234, 179, 8, 0.1);
}
.to-yellow-600 {
    --tw-gradient-to: var(--tw-yellow-600);
}

.to-orange-600 {
    --tw-gradient-to: var(--tw-orange-600);
}
.to-orange-600\/20 {
    --tw-gradient-to: rgba(234, 88, 12, 0.2);
}
.to-orange-600\/5 {
    --tw-gradient-to: rgba(234, 88, 12, 0.05);
}
.to-teal-600 {
    --tw-gradient-to: var(--tw-teal-600);
}
.to-pink-600 {
    --tw-gradient-to: var(--tw-pink-600);
}

/* Background clip */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* ============================================
   Borders
   ============================================ */
.border {
    border-width: 1px;
    border-style: solid;
}
.border-0 {
    border-width: 0;
}
.border-2 {
    border-width: 2px;
    border-style: solid;
}
.border-4 {
    border-width: 4px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}
.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.border-l {
    border-left-width: 1px;
    border-left-style: solid;
}
.border-r {
    border-right-width: 1px;
    border-right-style: solid;
}

.border-transparent {
    border-color: transparent;
}
.border-white {
    border-color: #ffffff;
}
.border-black {
    border-color: #000000;
}

.border-zinc-700 {
    border-color: var(--tw-zinc-700);
}
.border-zinc-800 {
    border-color: var(--tw-zinc-800);
}
.border-zinc-900 {
    border-color: var(--tw-zinc-900);
}

.border-amber-400 {
    border-color: var(--tw-amber-400);
}
.border-amber-500 {
    border-color: var(--tw-amber-500);
}
.border-amber-500\/20 {
    border-color: rgba(245, 158, 11, 0.2);
}
.border-amber-500\/30 {
    border-color: rgba(245, 158, 11, 0.3);
}
.border-amber-500\/40 {
    border-color: rgba(245, 158, 11, 0.4);
}
.border-amber-500\/50 {
    border-color: rgba(245, 158, 11, 0.5);
}

.border-red-500\/30 {
    border-color: rgba(239, 68, 68, 0.3);
}
.border-black\/20 {
    border-color: rgba(0, 0, 0, 0.2);
}

/* ============================================
   Border Radius
   ============================================ */
.rounded-none {
    border-radius: 0;
}
.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-bl-3xl {
    border-bottom-left-radius: 1.5rem;
}
.rounded-tl-3xl {
    border-top-left-radius: 1.5rem;
}

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

.shadow-amber-500\/30 {
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.3);
}
.shadow-amber-500\/40 {
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.4);
}

/* ============================================
   Opacity
   ============================================ */
.opacity-0 {
    opacity: 0;
}
.opacity-10 {
    opacity: 0.1;
}
.opacity-20 {
    opacity: 0.2;
}
.opacity-40 {
    opacity: 0.4;
}
.opacity-50 {
    opacity: 0.5;
}
.opacity-60 {
    opacity: 0.6;
}
.opacity-80 {
    opacity: 0.8;
}
.opacity-100 {
    opacity: 1;
}

/* ============================================
   Overflow
   ============================================ */
.overflow-auto {
    overflow: auto;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-visible {
    overflow: visible;
}
.overflow-scroll {
    overflow: scroll;
}
.overflow-x-auto {
    overflow-x: auto;
}
.overflow-y-auto {
    overflow-y: auto;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.overflow-y-hidden {
    overflow-y: hidden;
}

/* ============================================
   Cursor
   ============================================ */
.cursor-pointer {
    cursor: pointer;
}
.cursor-default {
    cursor: default;
}
.pointer-events-none {
    pointer-events: none;
}

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

/* ============================================
   Transforms
   ============================================ */
.translate-x-0 {
    transform: translateX(0);
}
.translate-x-1 {
    transform: translateX(0.25rem);
}
.translate-x-2 {
    transform: translateX(0.5rem);
}
.-translate-x-full {
    transform: translateX(-100%);
}
.-translate-x-1\/2 {
    transform: translateX(-50%);
}
.translate-x-\[200\%\] {
    transform: translateX(200%);
}
.-translate-x-\[200\%\] {
    transform: translateX(-200%);
}

.translate-y-0 {
    transform: translateY(0);
}
.translate-y-4 {
    transform: translateY(1rem);
}
.-translate-y-1 {
    transform: translateY(-0.25rem);
}
.translate-y-\[10px\] {
    transform: translateY(10px);
}
.translate-y-\[20px\] {
    transform: translateY(20px);
}
.translate-y-\[30px\] {
    transform: translateY(30px);
}

.scale-100 {
    transform: scale(1);
}
.scale-105 {
    transform: scale(1.05);
}
.scale-110 {
    transform: scale(1.1);
}
.scale-125 {
    transform: scale(1.25);
}

.rotate-0 {
    transform: rotate(0deg);
}
.rotate-180 {
    transform: rotate(180deg);
}

/* ============================================
   Filters
   ============================================ */
.blur {
    filter: blur(8px);
}
.blur-sm {
    filter: blur(4px);
}
.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-sm {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.backdrop-blur {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.backdrop-blur-md {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.backdrop-blur-lg {
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

/* ============================================
   Transitions & Animations
   ============================================ */
.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-all {
    transition-property: all;
    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-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.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-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);
}

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

@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-slide-up {
    animation: slide-up 1s ease-out forwards;
}

/* ============================================
   SVG
   ============================================ */
.fill-current {
    fill: currentColor;
}
.fill-white {
    fill: #ffffff;
}
.fill-black {
    fill: #000000;
}
.fill-amber-400 {
    fill: var(--tw-amber-400);
}
.fill-amber-500 {
    fill: var(--tw-amber-500);
}

.stroke-current {
    stroke: currentColor;
}

/* ============================================
   Container
   ============================================ */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 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;
    }
}

/* ============================================
   Hover States
   ============================================ */
.hover\:text-white:hover {
    color: #ffffff;
}
.hover\:text-amber-300:hover {
    color: var(--tw-amber-300);
}
.hover\:text-amber-400:hover {
    color: var(--tw-amber-400);
}
.hover\:text-amber-500:hover {
    color: var(--tw-amber-500);
}

.hover\:bg-zinc-700:hover {
    background-color: var(--tw-zinc-700);
}
.hover\:bg-zinc-800:hover {
    background-color: var(--tw-zinc-800);
}
.hover\:bg-zinc-900:hover {
    background-color: var(--tw-zinc-900);
}
.hover\:bg-amber-500:hover {
    background-color: var(--tw-amber-500);
}
.hover\:bg-amber-500\/10:hover {
    background-color: rgba(245, 158, 11, 0.1);
}
.hover\:bg-white\/30:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hover\:border-amber-500:hover {
    border-color: var(--tw-amber-500);
}
.hover\:border-amber-500\/50:hover {
    border-color: rgba(245, 158, 11, 0.5);
}
.hover\:border-zinc-600:hover {
    border-color: var(--tw-zinc-600);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}
.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:translate-x-1:hover {
    transform: translateX(0.25rem);
}
.hover\:translate-x-2:hover {
    transform: translateX(0.5rem);
}
.-hover\:translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:opacity-100:hover {
    opacity: 1;
}
.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.hover\:shadow-amber-500\/10:hover {
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.1);
}

.hover\:from-amber-500:hover {
    --tw-gradient-from: var(--tw-amber-500);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.hover\:from-amber-500\/10:hover {
    --tw-gradient-from: rgba(245, 158, 11, 0.1);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.hover\:from-amber-500\/20:hover {
    --tw-gradient-from: rgba(245, 158, 11, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.hover\:to-yellow-500:hover {
    --tw-gradient-to: var(--tw-yellow-500);
}
.hover\:to-yellow-500\/10:hover {
    --tw-gradient-to: rgba(234, 179, 8, 0.1);
}

.hover\:w-24:hover {
    width: 6rem;
}

/* ============================================
   Group Hover States
   ============================================ */
.group:hover .group-hover\:text-black {
    color: #000000;
}
.group:hover .group-hover\:text-white {
    color: #ffffff;
}
.group:hover .group-hover\:text-amber-400 {
    color: var(--tw-amber-400);
}
.group:hover .group-hover\:text-amber-500 {
    color: var(--tw-amber-500);
}
.group:hover .group-hover\:text-transparent {
    color: transparent;
}

.group:hover .group-hover\:bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.group:hover .group-hover\:bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}
.group:hover .group-hover\:from-amber-400 {
    --tw-gradient-from: var(--tw-amber-400);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.group:hover .group-hover\:from-amber-500\/10 {
    --tw-gradient-from: rgba(245, 158, 11, 0.1);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.group:hover .group-hover\:from-amber-500\/20 {
    --tw-gradient-from: rgba(245, 158, 11, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from),
        var(--tw-gradient-to, transparent);
}
.group:hover .group-hover\:to-yellow-500 {
    --tw-gradient-to: var(--tw-yellow-500);
}
.group:hover .group-hover\:to-yellow-500\/10 {
    --tw-gradient-to: rgba(234, 179, 8, 0.1);
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}
.group:hover .group-hover\:translate-x-2 {
    transform: translateX(0.5rem);
}
.group:hover .group-hover\:translate-x-full {
    transform: translateX(100%);
}
.group:hover .group-hover\:translate-x-\[200\%\] {
    transform: translateX(200%);
}

/* Combined translate utilities for elements with both X and Y translations */
.group:hover .group-hover\:translate-y-0 {
    --tw-translate-y: 0;
}

/* Set CSS custom properties for base translate values */
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translateX(var(--tw-translate-x))
        translateY(var(--tw-translate-y, 0));
}

.translate-y-4 {
    --tw-translate-y: 1rem;
    transform: translateX(var(--tw-translate-x, 0))
        translateY(var(--tw-translate-y));
}

.-translate-x-1\/2.translate-y-4 {
    --tw-translate-x: -50%;
    --tw-translate-y: 1rem;
    transform: translateX(var(--tw-translate-x))
        translateY(var(--tw-translate-y));
}

/* Combined hover state - keep X translation while changing Y */
.group:hover .-translate-x-1\/2.group-hover\:translate-y-0 {
    --tw-translate-y: 0;
    transform: translateX(-50%) translateY(0);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}
.group:hover .group-hover\:opacity-15 {
    opacity: 0.15;
}

.group:hover .group-hover\:w-full {
    width: 100%;
}
.group:hover .group-hover\:w-24 {
    width: 6rem;
}

.group:hover .group-hover\:space-x-2 > * + * {
    margin-left: 0.5rem;
}

.group:hover .group-hover\:border-t-amber-500\/30 {
    border-top-color: rgba(245, 158, 11, 0.3);
}

/* ============================================
   Focus States
   ============================================ */
.focus\:outline-none:focus {
    outline: none;
}
.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--tw-amber-500);
}
.focus\:ring-amber-500:focus {
    --tw-ring-color: var(--tw-amber-500);
}

/* ============================================
   Responsive - SM (640px)
   ============================================ */
@media (min-width: 640px) {
    .sm\:flex {
        display: flex;
    }
    .sm\:hidden {
        display: none;
    }
    .sm\:flex-row {
        flex-direction: row;
    }
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ============================================
   Responsive - MD (768px)
   ============================================ */
@media (min-width: 768px) {
    .md\:block {
        display: block;
    }
    .md\:flex {
        display: flex;
    }
    .md\:hidden {
        display: none;
    }
    .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\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-5xl {
        font-size: 3rem !important;
        line-height: 1 !important;
    }
    .md\:text-6xl {
        font-size: 3.75rem !important;
        line-height: 1.1 !important;
    }
    .md\:text-7xl {
        font-size: 4.5rem !important;
        line-height: 1.1 !important;
    }
    .md\:text-8xl {
        font-size: 6rem !important;
        line-height: 1 !important;
    }

    .md\:p-16 {
        padding: 4rem;
    }
}

/* ============================================
   Responsive - LG (1024px)
   ============================================ */
@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
    .lg\:hidden {
        display: none;
    }
    .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\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }

    .lg\:gap-16 {
        gap: 4rem;
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ============================================
   Responsive - XL (1280px)
   ============================================ */
@media (min-width: 1280px) {
    .xl\:flex {
        display: flex;
    }
    .xl\:hidden {
        display: none;
    }
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ============================================
   Data Attributes
   ============================================ */
[data-animate] {
    animation: fade-in 0.8s ease-out forwards;
    opacity: 0;
}
[data-animate="true"] {
    animation: fade-in 0.8s ease-out forwards;
    opacity: 0;
}

/* ============================================
   Custom scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #000000;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--tw-amber-600),
        var(--tw-yellow-500)
    );
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        var(--tw-amber-500),
        var(--tw-yellow-400)
    );
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   H4 Override for Cards/Components
   ============================================ */
h4.font-bold {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

h4.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
}

h4.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}

/* Product card titles */
.product-card h4,
.product-item h4,
article h4 {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
    font-weight: 700 !important;
}

/* ============================================
   Remove underlines on hover
   ============================================ */
a:hover,
a:focus,
h4 a:hover,
h4 a:focus,
.product-card a:hover,
.product-item a:hover,
article a:hover {
    text-decoration: none !important;
}

/* Global no-underline rule */
a {
    text-decoration: none !important;
}

/* ============================================
   Group Hover Heart/Wishlist Button
   ============================================ */
.group\/heart:hover .group-hover\/heart\:fill-white,
.group\/heart:hover svg {
    fill: white;
}

/* Wishlist button styling */
button[data-action="add-to-wishlist"] {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    z-index: 20 !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 9999px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

button[data-action="add-to-wishlist"]:hover {
    background: var(--tw-amber-500) !important;
}

button[data-action="add-to-wishlist"] svg {
    width: 1.5rem !important;
    height: 1.5rem !important;
    min-width: 1.5rem !important;
    min-height: 1.5rem !important;
    color: white !important;
    stroke: white !important;
}

button[data-action="add-to-wishlist"]:hover svg {
    fill: white !important;
}

/* ============================================
   Section Heading Styles
   ============================================ */
h2.text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
    margin-bottom: 0.25rem !important;
}

h2.text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem !important;
    margin-bottom: 0.25rem !important;
}

/* Reduce spacing between headings and paragraphs in widget sections */
h2 + p,
h2.text-3xl + p,
h2.text-4xl + p {
    margin-top: 0 !important;
}

/* Section header wrapper spacing */
.flex.items-center.space-x-4 + p,
div > h2 + p.text-zinc-400 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@media (min-width: 768px) {
    h2.md\:text-4xl {
        font-size: 2.25rem !important;
        line-height: 2.5rem !important;
    }
}

/* ============================================
   Block Margin Reset
   ============================================ */
.block,
.sidebar .widget.block:not(:last-child),
.sidebar .widget:not(:last-child),
.block-banners,
.block-banners-inline {
    margin-bottom: 0 !important;
}

/* ============================================
   Product Card Hover Add to Cart Animation
   ============================================ */
.product-item .product-item-photo {
    position: relative;
    overflow: hidden;
}

/* Add to Cart button - hidden by default, slides up on hover */
.product-item .tocart-wrapper,
.product-item .action.tocart {
    position: absolute !important;
    bottom: 1rem !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(1rem) !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 30 !important;
    padding: 0.5rem 1.5rem !important;
    background: linear-gradient(to right, #d97706, #ca8a04) !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    color: black !important;
    font-size: 0.875rem !important;
    white-space: nowrap !important;
    border: none !important;
}

.product-item:hover .tocart-wrapper,
.product-item:hover .action.tocart {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Product image container overlay on hover */
.product-item .product-item-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(24, 24, 27, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-item:hover .product-item-photo::after {
    opacity: 1;
}

/* Ensure product actions are positioned correctly for the animation */
.product-item .product-item-actions {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 20 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
}

/* Hide the actions div wrapper but show the button */
.product-item .product-item-inner {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}
