body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #3cc4fa;
  z-index: 1000;
  padding: 10px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
}

/* Logo */
.logo {
  height: auto;
  max-height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color:white;
  transition: 0.2s ease-in-out;
}

.logo {
  width: 180px;
}

.checkout-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px;
  margin-top:80px;
}

.cart-section, .summary-section {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 45%;
}

.cart-section{
  display:flex;
  flex-wrap: wrap;
  gap:30px;
}

.cart-product-img {
  width: 150px;
  border-radius: 5px;
}

.product-details{
  display:flex;
  flex-direction:row;
  gap:60px;
}

.product-price{
  color:green;
}

.delivery-options label {
  display: block;
  margin-top: 5px;
}

.delivery-options-heading{
  font-family: Roboto;
  font-size: 10px;
}

.update-btn{
padding:3px 25px;
margin-right:10px;
background-color: #3cc4fa;
cursor: pointer;
border:none;
color:#fff;
border-radius: 2px;
border-radius: 5px;
}

.update-btn:hover{
  opacity:0.8;
  transform: scale(1.02);
}

.update-btn:active{
  opacity:0.6;
  transform: scale(1.08);
}

.delete-btn{
  padding:3px 25px;
  background-color: red;
  color:#fff;
  border:none;
  cursor: pointer;
  border-radius: 2px;
  border-radius: 5px;
}

.delete-btn:hover{
  opacity:0.8;
  transform: scale(1.02);
}

.delete-btn:active{
  opacity:0.6;
  transform: scale(1.08);
}

.buy-btn{
  padding:3px 45px;
  background-color: rgb(1, 235, 1);
  border:none;
  border-radius: 5px;
  cursor:pointer;
}

.buy-btn:hover{
  opacity:0.8;
  transform: scale(1.02);
  color:#fff;
}

.buy-btn:active{
  color:white;
  opacity:0.7;
  transform: scale(1.08);
}

.cart-item{
  border-bottom: 2px solid #ddd;
  padding-bottom: 15px;
}

.summary-section {
  max-width: 300px;
}

.summary-details {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.summary-total {
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #ddd;
  padding-top: 10px;
}

.place-order-btn {
  width: 100%;
  background-color: #3cc4fa;
  color: black;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.place-order-btn:hover {
  opacity: 0.8;
  background-color:#3cc4fa;
  color:white;
}

.place-order-btn:active{
  background-color: blue;
}
