/* Add custom CSS styles below */ 

body,
.page-wrapper,
#app {
  background-color: #f5f0e8 !important;
}


:root {
  --main-color: #183C2D !important;
  --color-primary: #183C2D !important;
  --color-primary-dark: #10291F !important;
  --color-primary-light: #245842 !important;

  --secondary-color: #F1C877 !important;
  --color-secondary: #F1C877 !important;

  --gold-color: #F1C877 !important;
  --dark-gold: #C9A24D !important;
}


/*مشاهدة المنتج*/
.fake-viewers-box {
  width: fit-content;
  margin: 12px 0 16px;
  padding: 8px 16px;
  background-color: #183C2D;
  color: #F1C877;
  border: 1px solid #F1C877;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
  clear: both;
}

.viewer-dot {
  width: 9px;
  height: 9px;
  background-color: #F1C877;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-viewer 1.4s infinite;
}

@keyframes pulse-viewer {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/*وصف المنتج */
.s-product-card-content-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
  text-align: right !important;
}

/* الوسم بجانب اسم العطر في الجهة المقابلة */
/* ترتيب اسم العطر والوسم في نفس السطر */
.s-product-card-content-title {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
  text-align: right !important;
}

/* شكل الوسم */
.product-mini-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;

  margin-right: auto !important;
  padding: 3px 9px !important;

  background-color: #F1C877 !important;
  color: #183C2D !important;
  border: 1px solid #C9A24D !important;
  border-radius: 999px !important;

  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}