
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      scroll-behavior:smooth;
    }

    body{
      font-family:'Poppins',sans-serif;
      background:#fff;
      overflow-x:hidden;
    }

    /* Navbar */

    .navbar{
      background:#fff;
      padding:15px 0;
      box-shadow:0 2px 20px rgba(0,0,0,0.06);
    }
    

    .navbar-brand{
      font-size:28px;
      font-weight:700;
      letter-spacing:2px;
      color:#111 !important;
    }

    .nav-link{
      color:#222 !important;
      font-weight:500;
      margin:0 10px;
      transition:.3s;
    }

    .nav-link:hover{
      color:#c89b3c !important;
    }

    .nav-btn{
      background:#111;
      color:#fff;
      border-radius:50px;
      padding:10px 25px;
      text-decoration:none;
      transition:.3s;
    }

    .nav-btn:hover{
      background:#c89b3c;
      color:#111;
    }

    /* Hero */

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      background:linear-gradient(to right,#fff7f0,#ffffff);
      padding-top:100px;
    }

    .hero h1{
      font-size:60px;
      font-weight:700;
      line-height:1.2;
      color:#111;
    }

    .hero p{
      color:#666;
      font-size:18px;
      margin:25px 0;
    }

    .hero-btn{
      background:#111;
      color:#fff;
      padding:14px 35px;
      border-radius:50px;
      text-decoration:none;
      transition:.3s;
      display:inline-block;
    }

    .hero-btn:hover{
      background:#c89b3c;
      color:#111;
    }

    .hero-img{
      border-radius:30px;
      box-shadow:0 20px 40px rgba(0,0,0,0.12);
      width:90%;
    }

    /* Highlights */

    .highlight-box{
      background:#fff;
      border-radius:25px;
      padding:30px;
      text-align:center;
      transition:.4s;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      height:100%;
    }

    .highlight-box:hover{
      transform:translateY(-10px);
    }

    .highlight-box i{
      font-size:45px;
      color:#c89b3c;
      margin-bottom:15px;
    }

    /* Products */

    .products{
      background:#fafafa;
    }

    .section-title{
      font-size:42px;
      font-weight:700;
      color:#111;
    }

    .product-card{
      border:none;
      border-radius:25px;
      overflow:hidden;
      transition:.4s;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .product-card:hover{
      transform:translateY(-10px);
    }

    .product-img{
      height:625px;
      object-fit:cover;
    }

    .price{
      color:#c89b3c;
      font-weight:700;
      font-size:22px;
    }

    .buy-btn{
      background:#111;
      color:#fff;
      border-radius:50px;
      padding:10px 22px;
      text-decoration:none;
      transition:.3s;
    }

    .buy-btn:hover{
      background:#c89b3c;
      color:#111;
    }

    /* About */

    .about{
      background:#fff;
    }

    .about-box{
      background:#fff;
      border-radius:20px;
      box-shadow:0 10px 25px rgba(0,0,0,0.07);
    }

    .about-box h3{
      color:#c89b3c;
      font-weight:700;
    }

    /* Contact */

    .contact{
      background:#111;
      color:#fff;
      border-radius:30px;
    }

    .whatsapp-btn{
      background:#25d366;
      color:#fff;
      border-radius:50px;
      padding:14px 35px;
      text-decoration:none;
      display:inline-block;
      transition:.3s;
    }

    .whatsapp-btn:hover{
      background:#1ebd5a;
      color:#fff;
    }

    /* Footer */

    footer{
      background:#000;
      color:#fff;
    }

    /* Mobile */

    @media(max-width:768px){

      .hero{
        text-align:center;
        padding:120px 0 60px;
      }

      .hero h1{
        font-size:40px;
      }

      .section-title{
        font-size:32px;
      }

      .product-img{
        height:280px;
      }

    }

  