:root {
    --primary-color: #14b8a6;
    --secondary-color: #0f766e;
    --text-color: #333;
    --background-color: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Bree Serif", serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f3f4f6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #fff;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
}

.search-container {
    position: relative;
    width: 40%;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.cart-login {
    display: flex;
    align-items: center;
}

.cart-button {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 20px;
    font-size: 1.2rem;
}

.login-button {
    background-color: #7cdab2;
    color: white;
    border: none;
    height: 3vw;
    width: 11vw;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-button i {
    font-size: 1.2rem;
    margin-left: 15px;
    color: #fff;
}
.login-button a{
    text-decoration: none;
    color: #fff;
}
.bi-basket2{
    color: #595959;
    margin-right: 4vw;
    font-size: 3.5vh;
}
/* Main Navigation */
.main-nav {
    background-color: #7cdab2;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    display: flex;
    justify-content: flex-start;
    list-style-type: none;
    gap: 20px;
    margin-top: 2vh;
}
.main-nav a{
    text-decoration: none;
    color: #fff;
}

.dropdown {
    position: relative;
}

.dropbtn {
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropbtn i {
    font-size: 1.2rem;
}
.dropbtn img{
    height: 5vh;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Main Carousel */
.main-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Promotions */
.promotions {
    padding: 40px 0;
    background-color: #fff;
}

.promotions h2 {
    text-align: center;
    margin-bottom: 20px;
}

.promotions-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.promotion-item {
    flex: 0 0 auto;
    width: 200px;
    margin-right: 20px;
    scroll-snap-align: start;
}

.promotion-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.promotion-item h3 {
    margin-top: 10px;
    font-family: "Bree Serif", serif;
    font-size: 3vh;
}
.container h2{
    font-family: "Bree Serif", serif;
    font-size: 4vh;
    margin-top: 1vh;
}
.price {
    color: var(--primary-color);
    font-weight: bold;
}

/* About Us */
.about-us {
    padding: 40px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content img {
    width: 50%;
    max-width: 500px;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

/* Our Services */
.our-services {
    padding: 40px 0;
    background-color: var(--background-color);
}

.our-services h2 {
    text-align: center;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    padding: 10px;
}

.service-item p {
    padding: 0 10px 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    margin-bottom: 20px;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-section i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-container {
        width: 100%;
        margin: 10px 0;
    }

    .cart-login {
        justify-content: space-between;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .dropdown-content {
        position: static;
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content img {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}
