body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(120deg, #ff4500, #ff6347);
    color: #333;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
    color: white;
  }
  
  header h1 {
    margin: 0;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 10s ease;
  }
  
  nav ul li a:hover {
    color: #ff6347;
  }

  .hero {
    width: 100%;
    height: 300px;
    text-align: center;
    padding: 50px 20px;
    background:url('https://www.karzanddolls.com/uploads/subcategory/07ac9655aa5e698d1af60dec08efbccb.jpg');
    color: white;
    background-size: cover;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero .btn {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #ff4500;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;

  }
  
  .hero .btn:hover {
    transform: scale(1.1);
    background-color: #ff6347;
  }

  .products {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
  }
  
  .product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 250px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .product-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  
  .product-card h3 {
    margin: 10px 0;
  }
  
  .product-card p {
    color: #333;
  }
  
  .product-card .btn {
    background: #ff4500;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    
  }
  
  .product-card .btn:hover {
    transform: scale(1.1);
    background-color: #ff6347;
  }

  footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
  }