:root {
  --primary-gold: #d4af37;
  --gold-hover: #ba9a2d;
  --dark-gray: #222222;
  --medium-gray: #555555;
  --light-gray: #f7f7f7;
  --background: #faf4ef;
  --white: #ffffff;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin: 15px 0 8px;
  font-size: 1.4rem;
  color: var(--dark-gray);
}

.product-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 15px;
}

.product-card ul {
  list-style: none;
  padding-left: 0;
}

.product-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 7px;
}

.product-card ul li::before {
  content: "\f005"; /* Unicode for Font Awesome star */
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d4af37; /* Gold color */
  font-size: 1em;
}

.btn-p {
  display: inline-block;
  background: var(--primary-gold);
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-p:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}