:root {
    --kasi-blue: #007bff;
    --kasi-green: #28a745;
    --kasi-dark: #212529;
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    transition: transform 0.3s;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.price-tag {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--kasi-green);
}

.location-badge {
    background-color: #e9ecef;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6c757d;
}

.product-img {
    height: 250px;
    object-fit: cover; 
    width: 100%;
}

.kasi-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-logo {
    height: 50px !important; 
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin-right: 15px;
    filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.8));
}

.navbar {
    background: linear-gradient(45deg, #004e92, #000428) !important;
    border-bottom: 3px solid #ffc107 !important; 
    padding: 0.8rem 2rem !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.logo-text {
    color: #ffffff !important;
    font-weight: bold !important;
    font-size: 1.25rem;
}

.text-warning {
    color: #ffc107 !important; 
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #ffc107 !important; 
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
}

.btn-outline-light:hover {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000428 !important;
}