body {
    background-color: #fff;
}
a{
    text-decoration: none;
    color: #b54899;
}
a:hover {
    color: #9e0baf;
}
a.card-title{
    font-size: 20px;
}
.navbar {
    background-color: #9e0baf;
}
.navbar-brand, .navbar-nav .nav-link {
    color: #fff !important;
}
.header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}
.header .search-bar {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}
.header .search-bar input {
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.header .search-bar .bi-search {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #b54899;
}
.header .cart-icon {
    color: #b54899;
    font-size: 24px;
}
.product-card {
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
.product-card img {
    width: 100%;
}
.product-card .btn {
    border: none;
    border-radius: 0;
    background-color: #b54899;
    color: #fff;
    margin: 5px 0;
    transition: all .5s;
}
.product-card .btn:hover{
    background-color: #9e0baf;
}

.footer {
    background-color: #b54899;
    color: #fff;
    padding: 20px 0;
}

/* Smooth transition for product cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Slider styling */
.carousel-inner img {
    transition: transform 0.5s ease-in-out;
}

.carousel-inner:hover img {
    transform: scale(1.02);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

.carousel-indicators button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: rgba(255, 255, 255, 0.75);
}

/* Custom styles for the three-part layout */
.categories {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.categories h5 {
    margin-bottom: 15px;
    font-weight: bold;
}

.categories .list-group-item {
    padding: 10px 0;
    background: initial;
}

.categories .list-group-item a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.categories .list-group-item a:hover {
    color: #9e0baf;
}

.promotional-video {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.promotional-video h5 {
    margin-bottom: 15px;
    font-weight: bold;
}

.embed-responsive {
    border-radius: 5px;
    overflow: hidden;
}

/* Smooth transition for product cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Slider styling */
.carousel-inner img {
    transition: transform 0.5s ease-in-out;
}

.carousel-inner:hover img {
    transform: scale(1.02);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}

.carousel-indicators button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: rgba(255, 255, 255, 0.75);
}
.badge-container {
    position: relative;
    display: inline-block;
}
.badge {
    position: absolute;
    top: 4px;
    right: -5px;
    transform: translate(50%, -50%);
    background-color: green;
    color: white;
}

.btn-primary{
    background-color: #9e0baf;
    border-color: #9e0baf;
}
.order-page-note{
    color: white;
    background-color: #9e0baf;
    padding: 15px 5px;
    border-radius: 6px;
    font-size: larger;
}


