body {
    background-color: #f0ebea;
}
.navbar {
    padding: 10px 20px;
    position: sticky;
    top: 0;
    background-color: white;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 0;
}
.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}
.navbar-nav {
    margin-right: auto;
}
.nav-link {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 15px;
}
.carousel {
    padding-bottom: 80px;
}
.carousel-item img {
    width: 100%;
    height: auto;
}
.category-btn {
    border: none;
    padding: 10px 20px;
    font-weight: 20px;
    border-radius: 10px;
    width: 180px;
}
.best-sellers {
    background-color: #f8a8a8;
}
.new-arrivals {
    background-color: #f8f3a8;
}
.product-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
    padding-top: 30px;
    padding-bottom: 30px;
}
.product-img:hover {
    transform: scale(1.05);
}
.see-more-btn {
    border: 2px solid black;
    padding: 10px 20px;
    font-weight: bold;
    background: none;
    cursor: pointer;
    width: 170px;
    text-decoration: none;
    text-color: black;
}
.see-more-btn:hover {
    background: black;
    color: white;
}
.services-section {
    padding: 50px 0;
}
.service-img {
    width: 90%;
    border-radius: 10px;
}
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.service-title {
    font-size: 24px;
    font-weight: bold;
    text-align: right;
}
.service-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    text-align: right;
    padding-bottom: 50px;
}
.btn-know-more {
    border: 2px solid black;
    padding: 10px 20px;
    font-weight: bold;
    background: none;
    transition: 0.3s ease;
    width: 200px;
}
.btn-know-more:hover {
    background: black;
    color: white;
}
.about-section {
    padding: 60px 0;
    padding-bottom: 40px;
}
.about-text {
    font-size: 16px;
    color: #333;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 30px;
    text-align: justify;
}
.about img {
    padding-bottom: 200px;
    padding-top: 30px;
}
.btn-see-all {
    border: 2px solid black;
    padding: 10px 20px;
    font-weight: bold;
    background: none;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: black;
}
.btn-see-all:hover {
    background: black;
    color: white;
}
.btn-see-all span {
    margin-left: 10px;
    font-weight: bold;
}
.nav-button {
    border: 2px solid black;
    padding: 10px 20px;
    font-weight: bold;
    background: none;
    transition: 0.3s ease;
    width: 200px;
    text-align: center;
    text-decoration: none;
    color: black;
}
.nav-button:hover{
    background: black;
    color: white;
}
