* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background: #f5f5f5;
}

/* HEADER */

.header {
  background: white;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #f68b1e;
}

.search-box {
  width: 50%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.header-icons span {
  margin-left: 20px;
  cursor: pointer;
}

/* PRODUCT CONTAINER */

.product-container {
  display: flex;
  max-width: 1200px;
  margin: 30px auto;
  gap: 20px;
  margin-top: 110px;
  padding-top: 20px;
}

/* LEFT */

.product-left {
  flex: 1;
  background: white;
  padding: 10px;
  border-radius: 8px;
}

.product-image-box {
  position: relative;
  display: flex;
  gap: 20px;
}

.main-image {
  /* width: 250px;
  height: 250px; */
  width: 30%;
  height: 30%;
}

/* .refurbished {
  position: absolute;
  left: 0;
  top: 20px;
  background: red;
  color: white;
  padding: 10px;
  font-weight: bold;
} */

.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnail-container img {
  width: 60px;
  border: 0.9px solid #ccc;
  cursor: pointer;
  border-radius: 10px;
}

.product-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 30px;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.price p {
  font-size: 15px;
  text-decoration: line-through;
}

.discount {
  color: #33b27b;
  margin-left: 10px;
}

.stock {
  color: #33b27b;
  margin-bottom: 15px;
}

.add-to-cart {
  background: #33b27b;
  color: white;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
}

.add-to-cart:hover {
  background: #ff523b;
}

.promotions {
  margin-top: 16px;
  color: #555;
  font-weight: 400;
}

/* RIGHT */

.product-right {
  flex: 0.6;
  background: white;
  padding: 20px;
  border-radius: 8px;
}
.product-right h3 {
  font-size: 16px;
  font-weight: 600;
}
.product-right p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-right: 40px;
  margin-left: 20px;
  color: rgb(136, 136, 136);
}

.product-right h4 {
  margin-left: 20px;
}

.delivery-return-hr {
  margin-bottom: 5px;
  border: none;
  height: 0.5px;
  background: rgb(199, 199, 199);
}
.promotions-title {
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  color: rgb(136, 136, 136);
}
.promotions p {
  padding: 3px;
  color: rgb(136, 136, 136);
}

.promotions h3 {
  font-weight: 400;
  font-size: 16px;
  color: rgb(136, 136, 136);
}
.promotions a {
  text-decoration: none; /* removes underline */
  color: inherit; /* removes blue color */
}
hr {
  border: none;
  height: 0.5px;
  background: rgb(199, 199, 199);
  margin-top: 10px;
}
/*  */

.cart-icon {
  font-size: 18px;
  color: white;
  position: relative;
  text-decoration: none;
}

/*  */
/* RIGHT SIDE DELIVERY SECTION */

.product-right h3 {
  margin-bottom: 10px;
}

.delivery-return-hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* LOCATION SECTION */

.location-section {
  margin-bottom: 15px;
}

.location-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.location-dropdown {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
  cursor: pointer;
}

/* DELIVERY OPTION */

.delivery-option {
  margin-bottom: 15px;
}

.delivery-option h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.delivery-date {
  color: #33b27b;
  font-size: 14px;
  font-weight: 600;
  padding-top: 5px;
}

/* RETURN POLICY */

.return-policy h4 {
  margin-bottom: 5px;
}

.continue-shop {
  margin-top: 20px;
  padding: 15px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
}

.continue-shop a {
  display: inline-block;
  text-decoration: none;
  color: #007bff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease, color 0.3s ease;
}

.continue-shop a:hover {
  transform: scale(1.05);
  color: #0056b3;
}
/* RESPONSIVE */

@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .product-image-box {
    flex-direction: column;
  }
}

/* header again don't delete */

.search-box input {
  outline: none;
  border: none;
  margin: 0;
  padding: 2px;
}

.search-box {
  outline: none;
  border: none;
  border-radius: 8px;
}
