* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background: #f2f2f2;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: white;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-family: "Island Moments", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  color: #FF7A18;
}

nav a {
  margin: 0 50px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.login-btn {
  background: #FF7A18;
  color: white;
  border: none;
  padding: 8px 30px;
  border-radius: 6px;
  cursor: pointer;
}

.main-layout {
  display: flex;
  min-height: calc(100vh - 160px);
}

.left-image {
  flex: 1;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.right-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #f7f7f7;
}

.product-card {
  background: white;
  padding: 30px;
  padding-bottom: 10px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  padding-top: 40px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: black;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.price {
  color: #FF7A18;
  margin: 10px 0 15px;
}

.description {
  font-size: 11.5px;
  margin-bottom: 25px;
}

.tags {
  display: flex;
  gap: 15px;
  font-size: 11.5px;
  margin-bottom: 20px;
}

.grey {color: rgb(89, 89, 89);}

.blue {color: rgb(67, 67, 255);}

h4 {
  font-weight: 450;
  margin-bottom: 10px;
}

.option {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: #ffffff;
  font-size: 11.5px;
}

.doughnut-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.doughnut-radio input {
  display: none;
}

.doughnut-radio .custom {
  width: 15px;
  height: 15px;
  border: 3.5px solid #FF7A18;
  border-radius: 50%;
  transition: 0.3s ease;
}

.doughnut-radio input:checked + .custom {
  background-color: #FF7A18;
  box-shadow: inset 0 0 0 6px white;
}

textarea {
  width: 100%;
  height: 70px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
}

.footer {
  background: #6b4226;
  color: white;
}

.info {
  display: flex;
  justify-content: space-around;
  padding: 40px;
}

.info h3 {
  font-family: "Island Moments", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  color: #FF7A18;
}

.info p {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 10px;
  width: 140px;
  margin-bottom: 5px;
}

.info a {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: white;
  text-decoration: none;
}

.foot p {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  width: 140px;
}

.copyright {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 10px;
  padding-left: 100px;
  padding-bottom: 40px;
}

.up-btn {
  position: fixed;
  bottom: 25px;
  right: 90px;
  background: #0081FE;
  color: white;
  border: none;
  padding: 8px 10px;
  border-radius: 50%;
  cursor: pointer;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: #000000;
  border: none;
  background: none;
}

.navbar {
  position: relative;
}

.navbar nav.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  right: 40px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 6px;
  padding: 15px;
  z-index: 100;
}

.navbar nav.show a {
  margin: 10px 0;
}

@media (max-width: 1024px) {
  .main-layout {
    flex-direction: column;
  }

  .left-image,
  .right-content {
    width: 100%;
  }

  .left-image img {
    height: 250px;
    object-fit: cover;
  }

  .right-content {
    padding: 20px;
  }

  .product-card {
    width: 100%;
    max-width: none;
    padding: 20px;
  }

  nav {
    display: none;
  }

  .login-btn {
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .main-layout {
    flex-direction: column;
  }

  .left-image img {
    height: 200px;
  }

  .product-card {
    padding: 15px;
  }

  .footer {
    display: none;
  }
}