body {
    font-family: 'Open Sans', 'Inter', sans-serif;
    color: #333;
}

strong,
b {
    font-weight: 700;
}

.primary-color {
    color: #0056A7;
}

.bg-primary-custom {
    background-color: #0056A7;
    color: white;
}

.btn-primary-custom {
    background-color: #0056A7;
    border-color: #0056A7;
    color: white !important;
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    margin: 5px 10px 5px 0;
    vertical-align: middle;
}

.btn-primary-custom:hover {
    background-color: #003d7a;
    border-color: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-success-custom {
    background-color: #46b48f;
    border-color: #46b48f;
    color: white;
}

.header {
    border-bottom: 2px solid #0056A7;
    padding: 20px 0;
}

.header img {
    max-height: 120px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.banner-hover-zoom {
    transition: transform 0.5s ease;
}

.banner-hover-zoom:hover {
    transform: scale(1.02);
}

.banner-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: top center; /* Ensure the top part is always visible */
    transition: max-height 0.3s ease;
}

/* On larger screens, allow the banner to be taller so it doesn't crop too much */
@media (min-width: 1400px) {
    .banner-img {
        max-height: 650px;
    }
}

@media (min-width: 1800px) {
    .banner-img {
        max-height: 800px;
    }
}

/* Carousel Adjustments */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.8));
    width: 2.5rem;
    height: 2.5rem;
}

@keyframes heartbeat {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    15% {
        transform: translate(-50%, -50%) scale(1.3);
    }

    30% {
        transform: translate(-50%, -50%) scale(1);
    }

    45% {
        transform: translate(-50%, -50%) scale(1.15);
    }

    60% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.heartbeat {
    animation: heartbeat 0.6s ease-in-out;
}

/* Sticky Cart Button */
.sticky-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 12px 25px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-weight: 600;
}

.sticky-cart-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.sticky-cart-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid white;
}