* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size:15px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.container .container-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container .container-title p a {
    text-decoration:  none;
    color: #2B5E1C;
    font-weight: bold;
    font-size: 13px;
}
.container .container-title p a:hover {
    text-decoration:  underline;
}

/* Header */
.header {
    background: #FFF8F2;
    padding: 1rem 0;
}

/* message */
#message {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    margin: 10px auto;
}
#message #message-content {
    padding: 10px;
    background: green;
    color: #FFF;
    text-align: center;
    width: 200px;
    margin: 0 auto;
    font-size:12px;
    border-radius: 5px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111;
    text-decoration: none;
}


.nav-links {
    list-style: none;
    display: flex;
    flex-direction: colum;
    align-items: center;
    gap: 1.5rem;
}
.nav-links .search-bar {
display: flex;
align-items: center;
}

.nav-links .search-bar img {
    width: 25px;
    height: 25px;
    background: #FFF;
}
.nav-links .search-bar input {
    padding: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    max-width: 350px;
    width: 350px!important;
    border-radius: 10px;
    border:1px solid #eee;
}
.nav-links #search-results {
    max-height:350px;
    overflow-y: scroll;
    border-radius: 5px;
    width: 100%;
    max-width: 350px;
    position:absolute;
    top:60px;
}
.nav-links #search-results div {
    width: 100%;
    padding:10px;
    border:1px solid #EFEFEF;
    background: #FFF;
}
.nav-links #search-results div:hover {
    background: #fcfcfc;
}
.nav-links #search-results div a {
    text-decoration: none;
    color: #222;
    display: block;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links li span.basket-badge {
    background: #F8C208;
    padding:2px 5px;
    font-size:10px;
    color: #FFF;
    border-radius: 3px;
    margin:0 0 0 -10px;
}

.nav-links li img.shopping-bag-icon {
    width: 25px;
}
.nav-toggle {
    display: none;
}


/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 6rem 0 8rem 0;
    background: url("../img/image.jpg");
    background-size: cover;
    background-position: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #111;
    line-height: 3rem;
}

.hero-content p {
    margin: 1rem 0 3rem 0;
    font-size: 1rem;
    color: #111;
}

.btn {
    padding: 1rem;
    background: #FFF;
    color: #222;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: .2s;
}
.btn:hover {
    cursor: pointer;
    background: #F0AC0D;
    transition: .2s;
}
.shop-btn {
    padding: 1rem;
    background: #FFF;
    color: #222;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: .2s;
}
.shop-btn:hover {
    cursor: pointer;
    background: #F0AC0D;
    transition: .2s;
}
button.btn {
    margin-top:0.5rem;
    padding: 0.8rem 1rem;
    background: #E2B769;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border:0;
}

.hero-image {
    flex: 1;
    max-width: 100%;
    height: auto;
}
.product-promo-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 1rem;
}

.product-promo-card {
    border-radius: 5px;
    text-align: center;
    height: 200px;
    overflow: hidden;
}
.product-promo-card img {
    width: 100%;

}

/* Products Section */
.products {
    padding: 2rem 0;
    background: #fff;
}

.products h2 {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.product-grid .product-card {
    text-align: center;
    width: 21%;
    padding:0.5rem 0;
    margin:0 2% 2rem 2%;
}
.product-grid .product-card a {
    text-decoration: none;
    color: #222;
}

.product-grid .product-card .image-content {
    height: 250px;
    overflow: hidden;
    margin-bottom: 10px;

}
.product-grid .product-card img {
    width: 90%;
}
.product-grid .product-card h3 {
    font-size: 16px;
}
.product-grid .product-card p.price {
    color: #F0AC0D;
    font-weight: bold;
    font-size: 18px;
}

/* *********** Banner ******** */
.banner {
    width: 100%;
    background: url("../img/image-2.jpg");
    background-size: cover;
    padding: 3rem 0;
    margin: auto;
    color: #FFF;
    text-align: center;
    border-radius: 5px;
}

/* ****** Tab Content Section ****** */
nav.tab-content ul {
    margin:-20px 0 0 0;
    display: flex;
    justify-content: center; 
    list-style: none;
}
nav.tab-content ul li {
    font-size: 14px;
    padding: 10px 20px;
}
nav.tab-content ul li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
}
nav.tab-content ul li a.active {
    color: #F0AC0D;
    }
nav.tab-content ul li a:hover {
    text-decoration: underline;
}

/* ******* Pagination ******* */
nav.pagination {
    display:flex;
    justify-content: flex-end;
}
nav.pagination ul {
    margin: 0;
    display: flex;
}
nav.pagination ul li {
    list-style: none;
    margin:0 0 0 1rem;
}
nav.pagination ul li a {
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
    color: #506D3D;
}
nav.pagination ul li a.active {
    background: #506D3D;
    color: #FFF;
    padding:5px 8px;
    border-radius: 5px;
}

/* Footer */
.footer p {
    
    text-align: center;
    padding: 1rem 0;
    background: #333;
    font-size:12px;
    color: white;
}


