:root {
  --primary: #E91E63;
  --add-to-cart-btn-bg-dark: #E91E63;
  --add-to-cart-btn-text-color-light: #E91E63;
  --product-card-title-color-light: #E91E63;
  --product-card-title-color-dark: #E91E63;
}

/* خلفية الموقع وردية ناعمة فقط */
body {
  background-color: #ffe4ec;
}

/* الأزرار */
button,
.s-add-product-button-mini-checkout-content {
  background-color: #E91E63;
  color: #fff;
  border-radius: 8px;
}

button:hover,
.s-add-product-button-mini-checkout-content:hover {
  background-color: #c2185b;
}

/* الترويسة */
.main-menu li:hover > .sub-menu,
.category_menu_title {
  background-color: #E91E63 !important;
  color: #fff !important;
}

.index .overly-header .top-navbar:not(.fixed-pinned) .sub-menu li > a {
  color: #ffffff !important;
}

/* العناوين */
.s-slider-block__title-right h2::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: calc(100% - 2rem);
  height: 5px;
  border: 1px solid var(--product-card-title-color-dark);
  border-radius: 2px;
  background-image: linear-gradient(
    to right,
    var(--product-card-title-color-dark) 0%,
    var(--product-card-title-color-dark) 33.33%,
    transparent 33.33%, transparent 66.66%,
    var(--product-card-title-color-dark) 66.66%
  );
}

/* الروابط */
a {
  color: #E91E63;
}

a:hover {
  color: #f06292;
}

/* التذييل وردي ناعم بدون زخرفة */
.store-footer,
.footer-layout-2 .footer-top {
  background-color: #f8bbd0;
  color: #fff;
  border-radius: 30px 30px 0 0;
}

.footer-top a,
.store-footer__inner a,
.footer-bottom > a,
.footer-bottom > * {
  color: #ffffff;
}

.footer-top a:hover,
.store-footer__inner a:hover,
.footer-bottom > a:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* المدخلات */
input:focus,
textarea:focus,
select:focus {
  border-color: #E91E63;
  box-shadow: 0 0 5px #e91e6344;
}

/* الحدود */
hr,
.border-top,
.border-bottom {
  border-color: #E91E63;
}