/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
    overflow-x: hidden;
}

/* Utility classes */
.min-h-screen {
    min-height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.overflow-hidden {
    overflow: hidden;
}

/* Background and overlay styles */
.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.hero-background {
    background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

/* Tracking pixel styles */
.tracking-hidden {
    display: none !important;
    visibility: hidden !important;
}

.tracking-pixel {
    height: 1px !important;
    width: 1px !important;
    display: none !important;
}

.bg-gradient-overlay {
    background: linear-gradient(to bottom,
            rgba(251, 191, 36, 0.6) 0%,
            /* orange-200/60 */
            rgba(254, 243, 199, 0.4) 50%,
            /* yellow-100/40 */
            rgba(253, 186, 116, 0.6) 100%
            /* orange-300/60 */
        );
}

.bg-white-overlay {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-md {
    max-width: 28rem;
}

/* Padding and margins */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

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

.pb-4 {
    padding-bottom: 1rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

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

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Grid */
.grid {
    display: grid;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

/* Responsive grid */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

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

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

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

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

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

/* Colors */
.text-amber-800 {
    color: rgb(146, 64, 14);
}

.text-amber-900 {
    color: rgb(120, 53, 15);
}

.text-amber-200 {
    color: rgb(253, 230, 138);
}

.text-amber-600 {
    color: rgb(217, 119, 6);
}

.text-orange-600 {
    color: rgb(234, 88, 12);
}

.text-orange-800 {
    color: rgb(154, 52, 18);
}

.text-emerald-600 {
    color: rgb(5, 150, 105);
}

.text-emerald-800 {
    color: rgb(6, 95, 70);
}

.text-gray-900 {
    color: rgb(17, 24, 39);
}

.text-gray-700 {
    color: rgb(55, 65, 81);
}

.text-gray-600 {
    color: rgb(75, 85, 99);
}

.text-white {
    color: white;
}

.text-yellow-400 {
    color: rgb(250, 204, 21);
}

/* Background colors */
.bg-orange-100 {
    background-color: rgb(255, 237, 213);
}

.bg-emerald-100 {
    background-color: rgb(209, 250, 229);
}

.bg-amber-100 {
    background-color: rgb(254, 243, 199);
}

.bg-orange-500 {
    background-color: rgb(249, 115, 22);
}

.bg-emerald-500 {
    background-color: rgb(16, 185, 129);
}

.bg-white-90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-amber-900-95 {
    background-color: rgba(120, 53, 15, 0.95);
}

/* Glassmorphism effects */
.bg-glass {
    background: rgba(255, 255, 255, 0.95);
}

.border-glass {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.card-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.hover-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
    outline: none;
    font-family: inherit;
    line-height: 1.5;
}

.btn:focus {
    outline: 2px solid transparent;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.btn-orange {
    background-color: rgb(234, 88, 12);
    color: white;
}

.btn-orange:hover {
    background-color: rgb(194, 65, 12);
    transform: translateY(-1px);
}

.btn-emerald {
    background-color: rgb(5, 150, 105);
    color: white;
}

.btn-emerald:hover {
    background-color: rgb(4, 120, 87);
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Icons */
.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

.h-2 {
    height: 0.5rem;
}

.w-2 {
    width: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* Star ratings */
.fill-yellow-400 {
    fill: rgb(250, 204, 21);
}

/* Status section */
.status {
    min-height: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(16, 185, 129);
    text-align: center;
    padding: 0.5rem;
}

.status:empty {
    display: none;
}

/* Border styles */
.border {
    border-width: 1px;
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive design */
@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .text-3xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .text-2xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .text-4xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .py-12 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .gap-8 {
        gap: 1rem;
    }

    .card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .px-4 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .card-header,
    .card-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .card {
        border-color: #000;
        border-width: 2px;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .bg-glass {
        background: rgba(17, 24, 39, 0.9);
        color: white;
    }

    .text-gray-900 {
        color: rgb(243, 244, 246);
    }

    .text-gray-700 {
        color: rgb(209, 213, 219);
    }

    .text-gray-600 {
        color: rgb(156, 163, 175);
    }
}

/* Print styles */
@media print {

    .fixed,
    .absolute {
        position: relative;
    }

    .bg-gradient-overlay,
    .bg-white-overlay {
        display: none;
    }

    .card {
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    button {
        display: none;
    }
}