* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: Arial, sans-serif; text-align: center; }
        .container { width: 100%; max-width: 1395px; margin: auto; }
        .header { display: flex; justify-content: space-between; align-items: center; padding: 10px; background: #fff; }
        .left-section { display: flex; align-items: center; gap: 10px; }
        .menu-icon, .cart-icon { font-size: 24px; cursor: pointer; color: #266D37; }
        .three-icon { width: 100px; height: 40px; margin-top: 10px; }
        .cart-icon { position: relative; }
        .cart-badge { position: absolute; top: -5px; right: -10px; background: red; color: white; font-size: 12px; border-radius: 50%; padding: 2px 6px; }
        .banner img { width: 100%; display: block; }
        .second-image img { width: 100%; max-height: 500px; object-fit: fill; display: block; margin-bottom: 10px; }
        .search-box { width: 100%; padding: 10px; margin: 5px 0; font-size: 18px; border: 1px solid #ccc; background-color: #266D37; border-radius: 0px; }
        .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0px; padding: 0px; }
        .product { border: 1px solid #ddd; padding: 10px; border-radius: 0px; text-align: center; background: #fff; }
        .product img { width: 160px; height: 160px; object-fit: cover; display: block; margin: 0 auto 10px auto; }
        .product p { text-align: left; align-self: flex-start; font-size: 14px; }
        .product .price { color: green; font-size: 18px; font-weight: bold; text-align: center; margin-top: 10px; margin-bottom: 10px; }
        .buy-now { display: inline-block; padding: 10px 40px; margin-top: 10px; background: green; color: white; text-decoration: none; border-radius: 5px; }
        .old-price { text-decoration: line-through; color: black; }
        .discount { color: green; font-weight: bold; }
        .product .deal { color: black; font-size: 12px; text-align: center; margin-top: 5px; transition: color 0.3s ease, font-size 0.3s ease; }
        .product .deal:hover { color: blue; font-size: 14px; font-weight: bold; cursor: pointer; }