.featured-products-section-dark {
  background: linear-gradient(135deg, #2a2a2a 0%, #3d2f2f 100%);
  color: var(--bg-cream);
  padding: 40px 20px;
  width: 100%;
  display: grid;
  justify-content: center;
  box-sizing: border-box;
}



.featured-products-section-dark h2 {
  font-family: var(--font-sans);

  color: var(--bg-card);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.featured-products-grid-dark {
  display: flex;
  justify-content: space-evenly flex-start;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
}

.product-card-dark {
  max-width: 360px;
  background: linear-gradient(135deg, #424242 0%, #6a5353 100%);
  border: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  color: var(--bg-card);
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1), border-color 260ms,
    background 260ms, box-shadow 260ms;
  cursor: pointer;
}

.product-card-dark:hover,
.product-card-dark:focus-within {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.5);
  /* lightened card on hover */
  background: linear-gradient(135deg, #545454 0%, #7a5e5e 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.product-card-dark-image {
  width: 100%;
  height: 460px;
  overflow: hidden;
  background: linear-gradient(135deg,
      rgba(197, 160, 89, 0.1),
      rgba(128, 0, 32, 0.1));
}

.product-card-dark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.product-card-dark:hover .product-card-dark-image img,
.product-card:focus-within .product-image img {
  transform: scale(1.06);
}

.product-card-dark h3 {
  font-size: 20px;
}

.product-card-dark-price {
  color: var(--accent-gold);
  font-weight: 700;
  letter-spacing: .2px;
}

.product-card-dark-content {
  padding: 0px 20px;
  letter-spacing: .3px;
}

.product-card-dark-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.trelfy-add-to-cart-button {
  margin-bottom: 28px;
  width: 100%;
}

.trelfy-add-to-cart-button button {
  width: 100%;
  background: linear-gradient(135deg,
      var(--accent-gold),
      rgba(197, 160, 89, 0.9));
  color: #fff;
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
  /* padding: 14px 28px; */
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  font-family: var(--font-sans);
  height: 50px;

  flex: 1;


}

.trelfy-add-to-cart-button button:hover, trelfy-cart-btn:hover{
  background: var(--accent-dark-gold);
}



.product-card-dark-learnmore a, .product-card-dark-learnmore a:visited{
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
}

.product-card-dark-learnmore-content{
 height: 45px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: 2px solid var(--accent-gold);
  border-radius: 8px;
}

.product-card-dark-learnmore-content:hover{
  background-color: var(--bg-card);
}
