@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
}

#header{
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari support */
}

#logo{
    height: 45px;
}

#menu{
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    backdrop-filter: blur(5px); /* Blur effect */
    -webkit-backdrop-filter: blur(5px); /* For Safari support */
}

#menu-list{
    list-style-type: none;
}

#l-item{
    color: black;
}

.active{
    font-weight: bold;
    color: #c97d2f !important;
}

#l-item:hover{
    color: #c97d2f;
}

#fl-item{
    color: #EDECFB;
}

#fl-item:hover{
    color: #c97d2f;
}

.highlight{
    color: #c97d2f;
}

#main-btn{
    border-radius: 10px;
    background-color: #EDECFB;
    color: #c97d2f;
    padding: 13px 25px 13px 25px;
    transition: color 1s ease, transform 0.3s ease;
    transition: background-color 1s ease, transform 0.3s ease;
}

#main-btn:hover {
    background-color: #c97d2f;
    color: #EDECFB;
}

#main-img{
    border-radius: 10px !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-lg {
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.icon-xl {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 1.9rem;
}

.bg-circle-success{
    padding: 13px 15px 13px 15px;
    background-color: rgb(192, 255, 192) !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

.bg-circle-danger{
    padding: 13px 15px 13px 15px;
    background-color: rgb(255, 192, 192) !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

.bg-circle-warning{
    padding: 13px 15px 13px 15px;
    background-color: rgb(255, 240, 192) !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

.bg-circle-primary{
    padding: 13px 15px 13px 15px;
    background-color: rgb(192, 225, 255) !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

.overflow-hidden{
    border-radius: 10px !important;
}

#offer{
    width: 100%;
    height: 350px !important;
    box-shadow: 0px 0px 5px rgba(201,125,47,0.2) !important;
    border-radius: 10px !important;
    object-fit: cover;
    transition: transform 1s ease; /* Smooth transition for scaling */
}

#offer:hover{
    transform: scale(1.1);
}

.custom-shadow{
    box-shadow: 0px 0px 5px rgba(201,125,47,0.2) !important;
    border-radius: 10px;
}

.py-2-5{
    padding-top: 10px;
    padding-bottom: 10px;
}

#search-btn{
    border-radius: 10px;
    background-color: #1e1e1e;
    color: #c97d2f;
    border-color: #1e1e1e;
    transition: color 1s ease, transform 0.3s ease;
    transition: background-color 1s ease, transform 0.3s ease;
}

#search-btn:hover {
    background-color: #c97d2f;
    color: #1e1e1e;
    border-color: #c97d2f;
}

.product{
    color: black;
}

.product:hover{
    color: #c97d2f;
}

#offers-button{
    padding: 13px 25px 13px 25px;
    border-radius: 10px;
    background-color: #1e1e1e;
    color: #c97d2f;
    border-color: #1e1e1e;
    transition: color 1s ease, transform 0.3s ease;
    transition: background-color 1s ease, transform 0.3s ease;
}

#offers-button:hover {
    background-color: #c97d2f;
    color: #1e1e1e;
}

.pagination{
    margin-top: 20px;
}

.pagination button{
    padding: 5px 10px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 10px;
    background-color: #1e1e1e;
    color: #c97d2f;
    border: 1px solid #1e1e1e;
    transition: color 1s ease, transform 0.3s ease;
    transition: background-color 1s ease, transform 0.3s ease;
}

.pagination button:hover{
    background-color: #c97d2f;
    color: #1e1e1e;
}

#submit-btn{
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #1e1e1e;
    color: #c97d2f;
    border: 1px solid #1e1e1e;
    transition: color 1s ease, transform 0.3s ease;
    transition: background-color 1s ease, transform 0.3s ease;
}

#submit-btn:hover{
    background-color: #c97d2f;
    color: #1e1e1e;
    border-color: #c97d2f;
}

#operation-btn{
    opacity: 75%;
    transition: opacity 1s ease, transform 0.3s ease;
}

#operation-btn:hover{
    opacity: 100%;
}

button.active-page {
    background-color: #c97d2f; /* Active page button background color */
    color: #1e1e1e; /* Text color */
    border-color: #c97d2f; /* Border color */
}
