/* ========================= */
/* Google Fonts              */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

/* ========================= */
/* Reset and Base Styles     */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

a:hover {
  color: #000;
  text-decoration: none;
}

.products {
  display: grid;
  place-items: center;
  background: #EEE7D9; /* warm sand */ 
  padding: 20px;
  overflow: hidden;
  width: 100%;
}

.cart {
  background: #fff8f1; /* soft earth beige */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 1200px;
}

.row1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#ProductImg {
  margin-bottom: 25px;
  transition: 0.4s;
}

#ProductImg:hover {
  transform: scale(1.03);
}

.small-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.small-img {
  width: 22%;
  cursor: pointer;
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: #3c2b22;
  text-align: center;
  margin-top: 40px;
}

.reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
  color: #e1a95f;
  gap: 12px;
  text-align: left;
}

.reviews p {
  color: #8c3a26;
  font-size: 14px;
  margin: 0;
}

.price {
  color: #a3512d;
  margin-bottom: 15px;
  text-align: center;
}

.price span:first-child {
  font-size: 24px;
  font-weight: 700;
  margin-right: 10px;
  color: #3c2b22;
}

.price span:last-child {
  font-size: 16px;
  text-decoration: line-through;
  color: #b45633;
}

.color h5,
.sze h5,
.qty h5 {
  font-size: 14px;
  font-weight: 600;
  color: #3c2b22;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-select {
  appearance: none;
  background-color: #fffdf8;
  border: 1.5px solid #e1a95f;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #3c2b22;
  font-weight: 500;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 9L13 1' stroke='%23e1a95f' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 10px;
  box-shadow: 0 2px 6px rgba(225, 169, 95, 0.08);
  transition: all 0.3s ease;
}

.custom-select:hover,
.custom-select:focus {
  border-color: #b45633;
  box-shadow: 0 4px 10px rgba(225, 169, 95, 0.15);
  outline: none;
}

.color,
.sze,
.qty {
  margin-bottom: 20px;
}

.product-tabs.artisan-tab {
  margin-top: 40px;
  background: #fdf4e3; /* faded terracotta base */
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #ebd9cc;
  transition: all 0.3s ease-in-out;
}

.product-tabs.artisan-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
}

.tab-nav .nav-link {
  background-color: #a3512d;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
}

.tab-nav .nav-link:hover,
.tab-nav .nav-link.active {
  background-color: #8c3a26;
  color: #fff;
}

.tab-content {
  padding-top: 20px;
  color: #3c2b22;
  font-size: 14px;
  line-height: 1.6;
}

.tab-pane {
  display: none;
}

.tab-pane.show.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.artisan-btn {
  background-color: #a3512d;
  color: #fff;
  border-radius: 30px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.4px;
  text-align: center;
  border: none;
  box-shadow: 0 4px 8px rgba(163, 81, 45, 0.25);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.artisan-btn i {
  color: #fff;
  transition: transform 0.3s ease;
}

.artisan-btn:hover {
  background-color: #8c3a26;
  box-shadow: 0 6px 14px rgba(140, 58, 38, 0.35);
  transform: translateY(-2px);
}

.artisan-btn:hover i {
  transform: translateX(6px);
}
