:root {
  --accent-green: #0c8a42;
  --muted-gray: #666;
  --title-color: #111;
  --card-radius: 14px;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  --blue: #3571b5;
  --dark-blue: #0451aa;
}

.text-blue {
  color: var(--blue);
}

.cta-selector {
  background: var(--blue);
  color: #fff;
}

.product-card {
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: .18s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
   cursor:pointer;
}

.product-image {
  height: 220px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 95%;
  max-height: 100%;
  object-fit: contain;
}

.prod-title {
  font-weight: 700;
  margin-bottom: 7px;
}

.prod-desc {
  color: #777;
  font-size: 0.95rem;
}



.price-original {
  text-decoration: line-through;
  margin-right: 6px;
  color: #b33;
}

.price-now {
  font-weight: 800;
}

.learn-btn {
  display: inline-block;
background: var(--accent-green);
  color: white;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

  .ships-message{
    margin-top:1.2rem !important;
    max-width: 180px;
    margin: 0 auto;
  }

  .learn-btn:hover{
    color:white;
    background: var(--accent-green);
  }

  .cta-selector:hover{
    background:var(--dark-blue);
    color:white;;
  }