
nav{
    width: 100%;
    float: left;
    background: rgb(0, 0, 0);
    padding: 15px 0px;
}
.ull:hover{
  color: red;

}
nav a{
    color: white;
    text-decoration: none;
    font-size: 17px;
    padding: 2px 20px;
    align-items: center;
}
.containerr{
      font-family: 'Poppins';
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.whole1{
  display: flex;
}
#navbar-links {
  margin-top: 100px; 
  margin-bottom: 30px;
}

.socials{
  margin-top: 10px;
  margin-bottom: 20px;
}
.fa {
  padding: 10px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  height: 20px;
}
.fa-facebook {
  background: #3B5998;
  color: white;

}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-instagram {
   background: #ea4c89;
  color: white;
}
.logo{
  width: 200px;
  height: 60px;
  padding-right: 180px;
  padding-top: 4px;
}
.cart-section {
  position: fixed;            

  width: 100%;
  z-index: 9999;
  background-color: white;    
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-family: 'Poppins';
}

svg{
  margin-right: 40px;
  padding-top: 20px;
  cursor: pointer;
}
.save-section{
 padding-bottom: 20px;
}
.badge-ico{
  background-color: #f16565;

text-align: center;

padding: 0 6px;
height: 18px;
position: relative;
border-radius: 50%;
font-size: 16px;
color: #fff;
left: -55px;
top: -22px;
font-weight: 700;
cursor: pointer;

}
.wish


body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Poppins';
} 
.cart-page {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  gap: 30px;
  font-family: 'Poppins', sans-serif;
}
.item-ori{
font-size: 22px;
  margin-bottom: 15px;
  color: #444;
  text-decoration: line-through;
  font-weight: 700;
  top: -40px;
}
/* Remove-button style */
.remove-btn{
  font-size:22px;
  font-weight:700;
  cursor:pointer;
  margin-left:auto;          /* pushes it to far right of flex row   */
  color:#999;
  transition:.2s;
}
.remove-btn:hover{
  color:#e74c3c;
  transform:scale(1.2);
}


  

.cart-items-section h2 {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;

  gap: 20px;
  margin-bottom: 25px;
  align-items: center;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
}

.cart-item-image {
  width: 200px;
  
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.cart-item-details .item-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cart-item-details .item-price {
  font-size: 25px;
  font-weight: 700;
  color: #555;
}
.h2{
  font-size: 48px;
}

.price-summary-section {
  flex: 1;
  position: sticky;
  top: 40px;
  margin-top: 75px;
}

.price-details {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
  color: #333;
}

.price-details h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #444;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.price-row .discount {
  color: green;
  font-weight: bold;

}


.price-row.total {
  font-weight: 700;
  font-size: 22px;
  margin-top: 10px;
}

.place-order-btn {
  width: 100%;
  margin-top: 20px;
  background-color: black;
  color: white;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}

.place-order-btn:hover {
  background-color: grey;
}
.whole{
  display: flex;
}
.cartpayment{
  
  flex: 1;
}
@media (max-width: 768px) {
  .whole {
    flex-direction: column;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-image {
    width: 100%;
    max-width: 300px;
  }

  .price-summary-section {
    position: static;
    margin-top: 30px;
  }
}
