body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: rgb(237, 239, 229);
}

  
  header {
    background-image: url('backgroundheading.png');
  background-size: cover; /* Adjusts the texture to cover the header */
  background-position: center; /* Centers the texture within the header */
  background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  h1 {
    margin-bottom: 10px;
  }
  
  .gifs-container {
    display: flex;
    justify-content: center;
    gap: 100px; /* Adjust the gap between GIFs */
  }
  
  .gif {
    width: 150px; /* Adjust the size of the GIFs */
    height: 120px;
  }
  
  main {
    display: flex;
    justify-content: space-between;
    padding: 1em;
  }
  
  section {
    width: 45%;
    padding: 1em;
    border: 2px solid #097628;
    border-radius: 5px;
  }
  
  .product {
    border: 3px solid #095e16;
    padding: 1em;
    margin-bottom: 1em;
    text-align: center;
    border-radius:30px;
  }
  
  .product img {
    max-width: 100px;
    margin-bottom: 1em;
  }
  
  button {
    background: #02921c;
    color: white;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 30px;
  }
  
  button:hover {
    background: #c6ed06;
  }
  
  #cart-items {
    list-style: none;
    padding: 0;
  }
  
  #cart-items li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ece5e5;
    padding-bottom: 0.5em;
  }
  
  #total {
    font-weight: bold;
    margin-top: 1em;
  }
  

  .remove-item {
    display: inline-block; /* Ensure the button behaves like a block within inline context */
    width: 80px;           /* Set a fixed width for uniformity */
    height: 30px;          /* Set a fixed height */
    padding: 0;            /* Remove extra padding */
    font-size: 14px;       /* Ensure text is consistent */
    background-color: #f44336; /* Button color */
    color: white;          /* Text color */
    border: none;          /* Remove default border */
    border-radius: 30px;    /* Optional: Rounded corners */
    text-align: center;    /* Center the text inside the button */
    line-height: 30px;     /* Vertically align text */
    cursor: pointer;       /* Pointer cursor for interactivity */
    box-sizing: border-box; /* Include padding and border in dimensions */
}

.remove-item:hover {
    background-color: #ff0000; /* Optional: Hover effect */
}
