body {
    font-family: 'Roboto', sans-serif;
    background-color: #e3f2fd;
    font-size: 16px;
}
h1, h2, h5 {
    font-family: 'Merriweather', serif;
    color: #0d47a1;
}
h2 {
    font-size: 2.5rem;
}
h5 {
    font-size: 1.5rem;
}
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
}
.hero .row {
    align-items: center;
    background: #0d47a1;
    border-radius: 25px;
}
.hero h2 {
    color: #fff!important;
}
.btn {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background-color: #2196f3;
    color: white;
}
.btn:hover {
    background-color: #1976d2;
    color: #fff;
}
#benefits {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
#benefits .col-md-4 {
    background-color: #2196f3;
    border-radius: 15px;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#catalog {
    background-color: #ffffff;
}
#about {
    background-color: #e3f2fd;
    padding: 60px 0;
}
#about .row {
    align-items: center;
}
#reviews {
    background-color: #ffffff;
    padding: 60px 0;
}
#reviews .carousel-item img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
footer {
    background-color: #0d47a1;
    color: white;
}
footer a {
    color: #bbdefb;
    transition: color 0.3s ease;
}
footer a:hover {
    color: white;
}
.price {
    font-size: 1.8rem;
    color: #2196f3;
    font-weight: bold;
}
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #2196f3;
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #2196f3;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Styles for the cart popup */
#cart-details {
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    z-index: 1000;
    display: none;
}
#cart-details h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
#cart-details .cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
#cart-details .cart-item span {
    font-size: 0.9rem;
}
/* Styles for the order confirmation button in the cart popup */
#cart-details .btn {
    background-color: #ff9800;
    border: none;
    color: #000;
    font-weight: bold;
}
#cart-details .btn:hover {
    background-color: #fb8c00;
}
/* Styles for the notification popup */
#popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    display: none;
    z-index: 1100;
}
#popup.show {
    display: block;
}
#cart-icon {
    position: relative;
    cursor: pointer;
}
#cart-icon:hover + #cart-details {
    display: block;
}
#cart-details {
    transition: all 0.3s ease;
}
#popup.show {
    opacity: 1;
    visibility: visible;
}
#popup {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#order {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    height: 80vh;
    overflow-x: hidden;
}
#order-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
#order form .row > div {
    padding-left: 10px;
    padding-right: 10px;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #2196f3;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-collapse {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 90%;
    padding: 20px;
}
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card .btn {
    margin-top: auto;
}
#catalog .mb-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}