 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      background: #f5f7f6;
      color: #333;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* Top Bar */
    .top-bar {
      background: #1f7a4f;
      color: #fff;
      padding: 8px 0;
      font-size: 14px;
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* Header */
    .header {
      background: #fff;
      padding: 15px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .header-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #1f7a4f;
      font-size: 28px;
      font-weight: bold;
      text-decoration: none;
    }
    .logo img {
      width: 50px;
      height: auto;
    }
    .nav-links {
      display: flex;
      gap: 25px;
    }
    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    /* Buttons */
    .btn-primary {
      background: #1f7a4f;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }
    .btn-secondary {
      background: #ff8c1a;
      color: #fff;
      border: none;
      padding: 10px 18px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    /* Hero */
  .hero {
      background: #e8f4ee;
      padding: 50px 0;
    }
    .hero-flex {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .hero-text h1 {
      font-size: 36px;
      margin-bottom: 15px;
      line-height: 1.3;
    }
    .hero-text p {
      font-size: 18px;
      margin-bottom: 25px;
    }
    .hero-img img {
      max-width: 100%;
      height: auto;
    }

    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1400px;
      margin: 40px auto;
      padding: 0 15px;
    }

    .product-card {
      background-color: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      position: relative;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
    }

    .product-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    .add-button {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: bold;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      cursor: pointer;
    }

    .category-badge {
      position: absolute;
      bottom: 100px;
      left: 10px;
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 14px;
    }

    .product-info {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .product-name {
      font-size: 16px;
      margin-bottom: 8px;
      color: #333;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .product-price {
      font-size: 20px;
      font-weight: bold;
      color: #000;
    }

    /* Offer */
    .offer {
      padding: 40px 0;
      background: #fff;
    }
    .offer-box {
      background: #ff7a18;
      color: #fff;
      padding: 40px;
      border-radius: 15px;
      text-align: center;
    }
    .offer-box h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    /* Delivery & Payment */
    .delivery {
      padding: 40px 0;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .card {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    /* Contact Form */
    .contact-form {
      background: #ffffff;
      max-width: 600px;
      margin: 40px auto;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }
    .contact-form h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }
    .form-group {
      margin-bottom: 15px;
    }
    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
      color: #555;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: #1f7a4f;
    }
    .form-group textarea {
      resize: vertical;
      min-height: 110px;
    }
    .submit-btn {
      width: 100%;
      padding: 14px;
      background: #1f7a4f;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }
    .submit-btn:hover {
      background: #16643d;
    }

    /* Footer */
    .footer {
      background: #1f7a4f;
      color: #fff;
      text-align: center;
      padding: 20px 0;
      margin-top: 40px;
    }

    /* Floating Icons */
    .floating-icons {
      position: fixed;
      right: 15px;
      bottom: 90px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }
    .float-btn {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }
    .messenger {
      background: linear-gradient(135deg, #a4a6a6, #e4e6e9);
    }
    .float-btn:hover {
      transform: scale(1.15);
    }
    .float-btn svg {
      width: 28px;
      height: 28px;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hero-text h1 {
        font-size: 32px;
      }
      .nav-links {
        gap: 15px;
        font-size: 15px;
      }
    }

    @media (max-width: 768px) {
      .top-bar .container {
        flex-direction: column;
        text-align: center;
      }
      .header-flex {
        flex-direction: column;
        text-align: center;
      }
      .nav-links {
        margin-top: 10px;
      }
      .hero-flex {
        flex-direction: column;
        text-align: center;
      }
      .hero-text h1 {
        font-size: 28px;
      }
      .btn-group {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 24px;
      }
      .product-image {
        height: 220px;
      }
      .floating-icons {
        right: 10px;
        bottom: 80px;
      }
      .float-btn {
        width: 50px;
        height: 50px;
      }
    }