* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}
body.cart-page {
  background-color: #0a3641;
}

ul,
li {
  list-style: none;
}
#product-page {
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 800px;
  height: 490px;
  padding: 20px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #ddd;
  align-items: flex-start;
  margin: 10px;
  margin-bottom: 20px;
}

.productpageimg {
  height: 450px;
  width: 50%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.productpageimg:hover {
  transform: scale(1.05);
}

.productpagedetails {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  font-size: 20px;
  color: white;
  line-height: 1.6;
  text-align: left;
}

.productpagetitle {
  font-size: 26px;
  font-weight: 700;
  color: white;
  text-align: left;
  margin-bottom: 5px;
}

.productpageprice {
  font-size: 22px;
  color: white;
  font-weight: 600;
  text-align: left;
}

.productpagesizes,
.productpagecolors {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
}

.productpagesizes button,
.productpagecolors button {
  padding: 10px 15px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.productpagesizes button:hover,
.productpagecolors button:hover {
  background: #000;
  color: white;
}

.productpagetags {
  font-size: 12px;
  color: white;
  text-align: left;
  gap: 35px;
  justify-content: center;
}

.productpageaddtocart {
  width: 100%;
  padding: 15px;
  margin-top: 30px;
  background: white;
  color: black;
  border: none;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 0;
  transition: background 0.3s;
}

.productpageaddtocart:hover {
  background: #e55a00;
}
footer {
  background-color: #0a3641;
  color: white;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  height: 80px;
}
.footercontainer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  padding: 5px;
  background-color: #0a3641;
  margin: 0 auto;
}

.footercontainer h1 {
  font-size: 25px;
  margin-bottom: 5px;
}

.footercontainer i {
  font-size: 24px;
  margin: 0 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footercontainer i:hover {
  color: orange;
}

.banner {
  display: flex;
  width: 100%;
  background-color: #0a3641;
  color: white;
  justify-content: space-evenly;
  padding: 10px 0;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.nav > a {
}
.nav > a > img {
  width: auto;
  object-fit: contain;
  height: 100px;
}
.nav > div {
  display: flex;
  gap: 35px;
  font-size: larger;
}
.cart {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 500px;
  margin: 32px 0;
}
.cartcontainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  width: 100%;
  max-width: 1200px;
  background-color: white;
  border-radius: 5px;
}
.cartproducts {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px #f5f5f5(0, 0, 0, 0.1);
  overflow-y: scroll;
  overflow-x: hidden;
  grid-column: 1 / span 2;
  grid-row-start: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card {
  max-height: 165px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-sizing: border-box;
  background-color: white;
  color: #000;
}
.img-container {
  height: 100%;
  grid-column-start: 1;
}
.info-container {
  height: 100%;
  grid-column-start: 2;
  grid-column: span 3 / span 3;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.remove-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  height: 100%;
  grid-column-start: 5;
}
.remove-container > button {
  background-color: inherit;
  color: black;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
}

.cartcheckout {
  width: 100%;
  height: 100%;
  grid-row-start: 1;
  grid-column-start: 3;
  display: flex;
  align-items: first baseline;
  flex-direction: column;
  padding: 40px;
  font-size: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cartcheckout-summary {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.discount-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.discount-label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.discount-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid black;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.discount-input:focus {
  border-color: #007bff;
  outline: none;
}

.purchase-button > button {
  width: 250px;
  height: 50px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 7px;
  border: none;
  background-color: #0a3641;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.purchase-button > button:hover {
  background-color: orange;
  transform: scale(1.02);
}

.payment-section {
  text-align: center;
  margin-top: 15px;
}

.payment-label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.payment-icons i {
  font-size: 30px;
  margin: 5px;
  color: #0a3641;
}
.containerpage {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: white;
  margin: 0;
}
.success-container {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  position: relative;
  margin-top: -100px;
}

.success-icon {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 15px;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.success-container > p {
  font-size: 16px;
  color: #555;
}

.gohome {
  display: inline-block;
  margin-left: 10px;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: white;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.gohome:hover {
  background-color: orange;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-title {
  font-size: 20px;
}
.product-price {
  font-size: 15px;
}
.product-category {
  font-size: 10 px;
  display: flex;
  gap: 10px;
}
.product-category > li {
}
