@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

/* Product Image Fit */
.product-card-image {
  object-fit: contain;
}

/* Logo Font */
.logo-title h1 {
  font-family: "Alex Brush", cursive;
  color:#EEBA2B;
  letter-spacing: 0px;
}

/* Mobile Header Icons */
.mobile-header-icons svg {
  stroke:#fff;
}

/* Responsive Header Fix */
@media (max-width: 1024px) {
  .main-header {
    justify-content: space-between;
  }
}

/* -------- COUNTER SECTION -------- */

.section-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.counter-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.counter-box {
  text-align: center;
  padding: 10px 15px;
}

.counter-number {
  font-size: 40px;
  font-weight: bold;
  color: #B30000;
}

.counter-label {
  font-size: 15px;
  color: #333;
  margin-top: 5px;
  font-weight: bold;
}

/* Blinking Red Dot */
.blinking-dot {
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Gold Review Text */
.gold-text { 
  color: #C49B06; 
  font-weight: bold; 
}

/* Gold Stars */
.stars {
  color: #FFD700;
  font-size: 20px;
  margin-top: 3px;
}

/* Trusted Image */
.trusted-image {
  width: 320px;
  margin-top: 15px;
}
