/* =======================================================================
   FONTS
======================================================================= */
.cabin-sketch-regular,
.cabin-sketch-bold {
  font-family: "Cabin Sketch", sans-serif;
  font-style: normal;
}

.cabin-sketch-regular {
  font-weight: 400;
}

.cabin-sketch-bold {
  font-weight: 700;
}


/* =======================================================================
   GENERAL STYLES
======================================================================= */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

:root {
  --primary-color: #9b5d84;
  --secondary-color: #cd98b9;
  --accent-color: #ffd84b;
  --text-color: #333;
  --light-bg: #fff;
  --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* =======================================================================
   PRODUCT GALLERY (Add to Cart Button + Badge)
======================================================================= */
.add-to-cart {
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: var(--secondary-color);
}

.badge_new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background-color: var(--accent-color);
  color: #000;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: bold;
}
