/* Custom styles for AliExpress aesthetic & animations */
@import "https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/dist/tailwind.min.css";

@layer utilities {
    .bg-ali-red {
        background-color: #FF4747;
    }
    .text-ali-red {
        color: #FF4747;
    }
    .border-ali-red {
        border-color: #FF4747;
    }
    .bg-ali-gradient {
        background: linear-gradient(135deg, #FF4747 0%, #FF1E56 100%);
    }
    .bg-choice-gradient {
        background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    }
    .text-gold {
        color: #FF9900;
    }
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F5F5F7;
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #999;
}
