
:root {
    --brown: #5D4037;
    --brown-light: #8D6E63;
    --brown-bg: #EFEBE9;
    --black: #0D0D0D;
    --white: #FFFFFF;
    --border: #D7CCC8;
}

body {
    -webkit-tap-highlight-color: transparent;
}

/* Hide Scrollbar but allow scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Animations */
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.animate-marquee {
    animation: marquee 15s linear infinite;
}

.animate-in {
    animation: fadeIn 0.3s ease-out forwards;
}

.slide-in-from-bottom {
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Custom Package Card Selection */
.pkg-card {
    transition: all 0.2s ease;
}
.pkg-card.selected {
    border-color: #5D4037;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Loader */
.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #005B9F;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
