
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }

html, body {
    width: 100%;
    overflow-x: hidden; 
}


.class1 {
    background: #7bb241;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.class1 i {
    margin-right: 6px;
}

.class1 p {
    flex: 1 1 auto;
    text-align: center;
}


.header {
    height: 50px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.header h2 {
    color: rgb(99, 150, 23);
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.navbar ul li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.cart {
    display: flex;
    align-items: center;
    gap: 5px;
}


.back {
    background-image: url(Images/bg_2.jpg);
    height: 650px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    flex-direction: column;
    position: relative;
}

.back h1 {
    font-size: 4rem;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
    padding-top: 200px;
}

.back p {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.back button {
    padding: 12px 30px;
    border: none;
    background: #7bb241;
    color: white;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.back button:hover {
    background: #5a8d2f;
}


.features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.feature-box {
    text-align: center;
    max-width: 200px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 40px;
    color: white;
}

.pink { background: #d89bd6; }
.gold { background: #d6b87b; }
.blue { background: #92c7de; }
.yellow { background: #d6c97b; }

.feature-box h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: gray;
}


.categories {
    background-color: #fff;
    padding: 20px;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    align-items: center;
    margin-left: 130px;
    margin-right: 130px;
}

.category-item, .category-center {
    max-width: 100%;
    flex: 1 1 300px;
    text-align: center;
    position: relative;
}

.category-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    
    display: block;
}

.category-label {
    position: absolute;
    bottom: 5px;
    background: #7bb241;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
}

.category-center h2 {
    font-size: 28px;
    color: #7bb241;
    margin-bottom: 10px;
}

.category-center p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.category-center button {
    padding: 10px 25px;
    border: none;
    background: #7bb241;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
}

.category-center button:hover {
    background: #5a8d2f;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    margin-left: 150px;
    margin-right: 150px;
}

.product {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}

.product:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.product p:first-of-type {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    letter-spacing: 1px;
}

.original-price {
    text-decoration: line-through;
    color:#7bb241;
    font-size: 14px;
}

.discounted-price {
    font-size: 16px;
    color: #7bb241;
    font-weight: bold;
}

.discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #7bb241;
    color: white;
    font-size: 13px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 0 4px 4px 0;
}

.deal-bg {
    position: relative;
    background: url("Images/WhatsApp Image -2.jpg") no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

.deal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.deal-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align:center;
    
}

.deal-content h5 {
    color: #6ab04c;
    margin-bottom: 10px;
}

.deal-content h2 {
    font-size: 2.5rem;
    margin: 10px 0;
    color: #000;
}

.deal-content p, .deal-content .product-name {
    color: #555;
    margin: 10px 0;
}

.deal-content .price {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #000;
}

.deal-content .price span {
    text-decoration: line-through;
    margin-right: 10px;
    color: #888;
}

.countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-wrap: wrap;
}

.countdown div {
    text-align: center;
    min-width: 60px;
    color: #6ab04c;
}

.countdown small {
    display: block;
    font-size: 0.8rem;
    color: #000;
    margin-top: 5px;
}


.Images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card img {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    object-fit: cover;
}


.logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 20px;
}

.logo img {
    height: 100px;
    width: auto;
    max-width: 100%;
}


.footer1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: #eff1ee;
    padding: 40px 20px;
}

.type input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.type button {
    background-color: #7bb241;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.footer {
    background: #fff;
    padding: 50px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-col p, .footer-col ul li {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #6cbe45;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #000;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: #6cbe45;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}


@media (max-width: 992px) {
    .back h1 { font-size: 2.5rem; padding-top: 150px; }
    .features { flex-wrap: wrap; gap: 30px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; }
}

@media (max-width: 768px) {
    .back h1 { font-size: 2rem; padding-top: 120px; }
    .features { flex-direction: column; }
    .product-grid { grid-template-columns: 1fr; padding: 10px; }
    .Images, .logo, .footer1 { flex-direction: column; align-items: center; margin: 0; }
    .category-grid { flex-direction: column; gap: 20px; padding: 20px; }
}
