body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;

    background-color: white;
  }
  
  .logo img {
    height: 30px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px;
  }
  
  .login-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
  }
  .main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
  }
  
  .left-content {
    flex: 1;
  }
  
  .left-content h1 {
    font-size: 60px;
    margin: 0;
    line-height: 1.2;
  }
  
  .left-content p {
    font-size: 16px;
    margin: 20px 0;
    color: #444;
    text-transform: uppercase;
  }
  
  .buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .shop-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .category-btn {
    background-color: lightgray;
    color: black;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
  }
  
  .available-text {
    margin-top: 30px;
    font-weight: bold;
  }
  
  .store-icons icons {
    height: 40px;
    margin-right: 15px;
  }
  
  /* Shoe Image */
  .right-content {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  
  .right-content img {
    max-width: 70%;
    height: auto;
    padding-left: 150px;
   
  }
   img:hover{
cursor: pointer;
 

  }