.catalog-section {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 16px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px 28px;
  margin-top: 38px;
}
.product-card {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 0 0 18px 0;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}
.product-img {
  width: 100%;
  height: 415px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 0;
  background: #fff;
  display: block;
}
.favorite-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #fff;
  color: #111;
  border: 1px solid #eee;
  font-size: 1.25em;
  z-index: 3;
  padding: 7px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: color 0.2s, border 0.2s;
}
.favorite-btn.active,
.favorite-btn:hover {
  color: #b94e4e;
  border: 1px solid #b94e4e;
}
.add-to-cart-btn {
  align-self: flex-start;
  margin-left: 0;
  margin-top: 8px;
  margin-bottom: 14px;
  padding: 8px 22px;
  border-radius: 24px;
  font-weight: 600;
  background: #1c1c1c;
  color: #fff;
  border: none;
  font-size: 1em;
  box-shadow: none;
  transition: background 0.2s;
}
.add-to-cart-btn:hover {
  background: #b49d7b;
  color: #fff;
}
.product-price {
  font-size: 1.12em;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 8px;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.product-title {
  font-size: 1.05em;
  font-weight: 400;
  color: #222;
  margin: 0 0 0 0;
  min-height: 40px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr);}
  .product-img { height: 340px;}
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr);}
  .product-img { height: 220px;}
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; gap: 22px 0;}
  .product-img { height: 170px;}
}
.color-selector {
  margin: 10px 0 0 0;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 32px;
}

.color-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  transition: border 0.2s;
  box-sizing: border-box;
  background-clip: padding-box;
  position: relative;
}

.color-dot.selected {
  border: 2px solid #222;
  box-shadow: 0 2px 8px rgba(44,44,44,0.07);
}

.color-dot:hover {
  border: 2px solid #b49d7b;
}

.color-dot:after {
  content: '';
  display: none;
}

/* Plus (+) button at the end */
.color-dot.plus {
  background: #fff;
  color: #444;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  border: 2px solid #d5d5d5;
  font-family: Arial, sans-serif;
  font-weight: bold;
}
.color-dot.plus:before {
  content: '+';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%);
  font-size: 18px;
}
.color-dot.plus.selected,
.color-dot.plus:hover {
  border: 2px solid #b49d7b;
  background: #faf6ee;
}

/* Keep product link black, never blue or purple */
.product-title a,
.product-link {
  color: #222 !important;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: 500;
}
.product-title a:visited,
.product-title a:active {
  color: #222 !important;
}
.product-title a:hover,
.product-link:hover {
  color: #b49d7b !important;
  text-decoration: underline;
}
/* NAVBAR */
