:root {
    --primary-color: #0dcaf0;
    --secondary-color: #7c3aed;
    --accent-color: #10b981;
    --primary-contrast: #E91E63 ;
    --secondary-contrast: #C2185B  ;

}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading state */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print styles for tickets */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ========================================
   Header/Global Styles
   ======================================== */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar .container-fluid {
    padding-left: 4px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    padding: 0;
}

.navbar-brand img {
    height: 56px;
    width: auto;
}

.navbar-brand i {
    color: #fbbf24;
}

.navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.navbar .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background-color: #b18b0cff;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Cards */
.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.product-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.product-card .card-body {
    padding: 2rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Footer */
footer {
    background: #000000;
    color: white;
    padding: 3rem 0 0;
    margin-top: 5rem;
}

footer h6 {
    color: #0dcaf0;
}

footer p.small,
footer .footer-tagline {
    color: #a0a0a0;
}

footer .footer-tagline {
    color: #0dcaf0;
}

footer a {
    color: #a0a0a0;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

footer .footer-info-card-premium {
    background: linear-gradient(135deg, #0dcaf0 0%, #7c3aed 100%);
    color: white;
    border: none;
}

footer .footer-info-card-support {
    background: #10b981;
    color: white;
    border: none;
}

footer .footer-last-updated,
footer .footer-copyright {
    color: #a0a0a0;
}

footer .footer-copyright-bar {
    border-top: 1px solid #333;
}

footer .footer-heart {
    color: #ef4444;
}

/* ========================================
   Product Page Styles
   ======================================== */

.product-nav {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.product-nav .nav-link {
    color: #495057 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.product-nav .nav-link:hover {
    background: #e9ecef;
    transform: none;
}

.product-nav .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
}

.product-header {
    background: linear-gradient(135deg, var(--primary-contrast), var(--secondary-contrast));
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.product-content {
    min-height: 400px;
}

.breadcrumb-wrapper {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.breadcrumb-item {
    font-size: 0.95rem !important;
    font-weight: normal !important;
    font-family: inherit !important;
}

.breadcrumb-item a {
    color: #6c757d !important;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: normal !important;
    font-family: inherit !important;
}

.breadcrumb-item a:hover {
    color: var(--primary-color) !important;
}

.breadcrumb .dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    color: #6c757d !important;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: normal !important;
    font-family: inherit !important;
}

.breadcrumb .dropdown-toggle:hover {
    color: var(--primary-color) !important;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500 !important;
    font-family: inherit !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd !important;
    font-size: 1.2rem;
    font-weight: normal !important;
    font-family: inherit !important;
}

.breadcrumb-item.dropdown .dropdown-toggle {
    color: #495057 !important;
    font-weight: 500 !important;
    cursor: pointer;
    font-family: inherit !important;
}

.breadcrumb-item.dropdown .dropdown-toggle:hover {
    color: var(--primary-color) !important;
}

.breadcrumb-item.dropdown .dropdown-menu {
    min-width: 250px;
}

.breadcrumb-item.dropdown .dropdown-header {
    color: #6c757d !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit !important;
}

.breadcrumb-item.dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.95rem !important;
    font-weight: normal !important;
    font-family: inherit !important;
}

.breadcrumb-item.dropdown .dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    font-weight: 500 !important;
    font-family: inherit !important;
}

.breadcrumb-item.dropdown .dropdown-item:not(.active):hover {
    background: #f8f9fa;
    color: var(--primary-color) !important;
}
