.gradiant-bg {
    background: linear-gradient(90deg, rgba(65, 148, 203, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
}

.text-blue {
    color:  #4194CB !important;
}
.text-deep-blue{
    color: #001A95;
}
.bg-deep-blue{
    background-color: #001A95 !important;
}

.custom-navbar {
    background:  #4194CB;
    background: linear-gradient(90deg, rgba(65, 148, 203, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
    width: 80%;
    margin: 20px auto 0 auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
    .custom-navbar {
        width: 90%;
    }
}

.custom-navbar .navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 10px;
    transition: color 0.2s;
}

.custom-navbar .navbar-nav .nav-link:last-child {
    margin-right: 0;
}

.custom-navbar .contact-btn {
    background: #fff;
    color:  #4194CB !important;
    border-radius: 20px;
    padding: 6px 18px;
    font-weight: 600;
    border: none;
    margin-left: 15px;
    transition: background 0.2s, color 0.2s;
}

.custom-navbar .contact-btn:hover {
    background:  #4194CB;
    color: #fff !important;
    border: 1px solid #fff;
}

.custom-navbar .navbar-brand img {
    height: 48px;
    max-height: 48px;
}

/* Social Buttons Absolute */
.social-buttons-absolute {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 991.98px) {
    .social-buttons-absolute {
        right: 0.5rem;
    }
}


/* Border top utility for ProductCard */
.border-top-pink {
    position: relative;
}

.border-top-pink::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 4px;
    background:  #4194CB;
    border-radius: 2px;
    transform: translateY(-50%);
}

/* Filter tag styles */
.filter-tag {
    transition: background 0.2s, color 0.2s;
    background-color: #E1E1E1;
    color: #4F4A4E;
}

.filter-tag:hover {
    background:  #4194CB !important;
    color: #fff !important;
}

/* Catalogo label overlay */
.catalogo-label-overlay {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 4rem 0 1rem;
    z-index: 2;
    background: linear-gradient(to right, #fff 80%, rgba(255, 255, 255, 0.0) 100%);
    border-radius: 2rem 0 0 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* align items to the start horizontally */
    justify-content: center;
    /* center content vertically */
    text-align: left;
    /* ensure text aligns left */
}

/* Carrusel styles overwrite bootstrap */
.carousel-indicators button {
    margin-bottom: 60px !important;
    width: 36px !important;
    height: 36px !important;
    border: 2px solid #fff !important;
    background-color: transparent !important;
    transition: background 0.2s;
}

.carousel-indicators .active {
    background-color: #001A95 !important;
    border-color: #fff !important;
    border-width: 2px !important;
}

/* Custom styles for products-table */
table tbody .rounded-row {
    color: #4F4A4E;
    text-transform: uppercase;
    font-weight: 600;
}
.rounded-row>*:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.rounded-row>*:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}