body {
  margin: 0;
  background-color: #F2EEE6;
  font-family: 'Italiana', serif;
}

.navbar {
  background-color: #E2D5C5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 40px;
}

.logo {
  font-size: 50px;
  font-weight: 400;
  color: #6b2032;
  letter-spacing: 1px;
  padding-left: 20px;
}

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  color: #6b2032;
  padding-left: 150px;
}

.search input {
  border: none;
  border-bottom: 1.5px solid #6b2032;
  background-color: transparent;
  padding: 5px;
  width: 200px;
  font-size: 15px;
  color: #6b2032;
}

.search input:focus {
  outline: none;
}

.icons {
  display: flex;
  align-items: center;
  gap: 50px;
  color: #6b2032;
  padding-right: 30px;
}

.cart-link {
  color: inherit;
  text-decoration: none;
}

.cart-link:hover {
  opacity: 0.8;
}

.hero {
  display: flex;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  flex: 1;
  background-color: #F2EEE6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.hero-text h1 {
  color: #6b2032;
  font-size: 55px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  font-family: 'Italiana' serif;
}

@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-text {
    padding: 30px;
  }
  .hero-text h1 {
    font-size: 28px;
    text-align: center;
  }
}

.bestsellers {
  padding: 40px 40px;
  padding-left: 60px;
  background-color: #F2EEE6;
  font-family: 'Italiana', serif;
  text-align: left;
  font-size: 50px;
}

.bestsellers h2 {
  color: #6b2032;
  font-size: 40px;
  margin-bottom: 30px;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel-track {
  overflow-x: auto; /* or auto if you want it to appear on hover */
  scrollbar-width: none;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  max-width: 100%;
  display: flex;
  gap: 100px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.arrow {
  font-size: 24px;
  background: none;
  border: none;
  color: #6b2032;
  cursor: pointer;
}


.card {
  background-color: #ccb6a7;
  border-radius: 20px;
  padding: 20px;
  width: 220px;
  flex-shrink: 0;
  text-align: center;
  color: #fff;
  font-family: sans-serif;
}

/* Hover effect for card images */
.card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card img:hover {
  transform: scale(1.05);
}

/* Popup modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-content h3 {
  margin-bottom: 10px;
  color: #6b2032;
}

.close-btn {
  background: none;
  border: none;
  font-size: 20px;
  float: right;
  cursor: pointer;
  color: #6b2032;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #fff;
}

.card p {
  font-size: 16px;
  margin: 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-text {
    padding: 30px;
  }
  .hero-text h1 {
    font-size: 28px;
    text-align: center;
  }
}

.sale {
  padding: 60px 40px;
  background-color: #F2EEE6;
  text-align: left;
  padding-left: 60px;
}

.sale h2 {
  color: #6b2032;
  font-size: 40px;
  margin-bottom: 30px;
  font-family: 'Italiana', serif;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.original-price {
  color: #6b2032;
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 4px;
}

.sale-price {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}






/* CSS (cart.css) */
body {
  margin: 0;
  font-family: 'Italiana', serif;
  background-color: #fdf9f4;
  color: #333;
}

header {
  padding: 20px;
  text-align: center;
  font-size: 28px;
  color: #6b2032;
  padding-top: 50px;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
  color: #6b2032;
  margin-bottom: 20px;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.cart-item input.quantity {
  width: 60px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}

.cart-item img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.cart-item span,
.cart-item input,
.cart-item button {
  font-family: 'Italiana', serif;
}

.remove-btn {
  background-color: #ccc;
  color: #333;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.remove-btn:hover {
  background-color: #aaa;
}

label {
  display: block;
  margin-top: 10px;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background-color: #6b2032;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: #531624;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.home-button {
  background-color: #ccc;
  color: #333;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  line-height: 38px;
}

.home-button:hover {
  background-color: #aaa;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 2rem;
}

.nav-btn {
  background: transparent;
  border: 2px solid #5a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #5a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-btn:hover {
  background-color: #5a1a1a;
  color: #fff;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  border-radius: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #5a1a1a;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #5a1a1a;
  color: white;
}
/* NAVBAR STRUCTURE */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #e8dac7;
  font-family: 'Italiana', serif;
}

.navbar-left,
.navbar-center,
.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-left {
  flex: 1;
}

.navbar-center {
  flex: 2;
  justify-content: center;
  gap: 1rem;
}

.navbar-right {
  flex: 1;
  justify-content: flex-end;
  gap: 1.2rem;
}

/* SEARCH BAR */
.search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
}

.search input[type="text"] {
  border: none;
  border-bottom: 2px solid #5a1a1a;
  padding: 0.3rem 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  background: transparent;
  color: #3c2c23;
  width: 160px;
}

.search input::placeholder {
  color: #5a1a1a;
  opacity: 0.7;
}

/* CART ICON */
.cart-link {
  color: #5a1a1a;
  font-size: 1.4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.cart-link:hover {
  opacity: 0.7;
}

    .step-timeline {
      display: flex;
      justify-content: space-between;
      margin: 20px auto;
      max-width: 600px;
      padding: 0 20px;
      font-family: 'Italiana', serif;
    }

    .timeline-step {
      text-align: center;
      flex: 1;
      position: relative;
      color: #6b2032;
      transition: all 0.3s ease;
    }

    .timeline-step.active {
      color: #6b2032;
      font-weight: bold;
      font-size: 1.2em;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .timeline-circle {
      display: inline-block;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #6b2032;
      line-height: 30px;
      color: white;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .timeline-step.active .timeline-circle {
      background-color: #6b2032;
      transform: scale(1.2);
      
    }

    .required-label {
      display: flex;
      flex-direction: column;
      font-weight: normal;
    }

    .required-label span {
      color: rgb(0, 0, 0);
      margin-left: 5px;
      font-size: 1em;
    }

    .required-text {
      display: inline;
    }

    .summary {
      font-family: 'Italiana', serif;
      background-color: #f6f6f6;
      padding: 20px;
      border-radius: 8px;
      margin-top: 20px;
    }

    .summary p {
      margin: 5px 0;
    }








    .container {
      max-width: 700px;
      margin: 60px auto;
      padding: 30px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 10px;
      text-align: center;
      font-family: 'Italiana', serif;
    }

    p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    form {
      text-align: left;
      margin-top: 40px;
    }

    label {
      display: block;
      margin-bottom: 15px;
    }

    textarea, input[type="text"] {
      width: 100%;
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-family: 'Italiana', serif;
    }

    button {
      background-color: #6b2032;
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      margin-top: 20px;
    }

    button:hover {
      background-color: #5a1a2b;
    }
