@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Rubik:ital,wght@0,300..900;1,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* ============================================
   GLOBAL STYLES
   ============================================ */
:root {
  --clr-red: #bf3e44;
  --clr-black: #231f20;
  --clr-white: #ffffff;
  --font-family: "Cairo", sans-serif;
}
.walim-body {
  margin: 0;
  padding: 0;
}

.walim-about-us-page .walim-section {
  padding-block: 96px;
  padding-inline: 36px;
}

@media (max-width: 1024px) {
  .walim-about-us-page .walim-section {
    padding-block: 63px;
    padding-inline: 16px;
  }
}

.walim-about-us-page li,
.walim-about-us-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.walim-about-us-page button {
  border: none;
  outline: none;
  cursor: pointer;
}

.walim-about-us-page {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
}

.walim-about-us-page h1,
.walim-about-us-page h2,
.walim-about-us-page h3,
.walim-about-us-page h4,
.walim-about-us-page h5,
.walim-about-us-page h6,
.walim-about-us-page p,
.walim-about-us-page a,
.walim-about-us-page button,
.walim-about-us-page input,
.walim-about-us-page textarea {
  margin: 0;
  padding: 0;
}

.walim-about-us-page h6 {
  display: inline;
}

.walim-heading {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  .walim-heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .walim-heading {
    margin-bottom: 32px;
  }
}

.walim-heading h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-align: center;
  vertical-align: middle;
  color: var(--clr-red);
}

.walim-heading h2 {
  font-weight: 900;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0%;
  color: var(--clr-black);
}

@media (max-width: 767px) {
  .walim-heading h6 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
  }

  .walim-heading h2 {
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0%;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.walim-hero {
  position: relative;
  width: 100%;
}

.walim-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.walim-hero .walim-hero-mobile-img {
  display: none;
}

@media (max-width: 767px) {
  .walim-hero img {
    width: 375px;
    height: 502px;
  }
  .walim-hero .walim-hero-desktop-img {
    display: none;
  }
  .walim-hero .walim-hero-mobile-img {
    display: block;
  }
}
.walim-hero .walim-hero-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--clr-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.walim-hero .walim-hero-heading h6 {
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #e4dcca;
  background-color: #bf3e4433;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  border: 1px solid #bf3e444d;
  padding: 4px 16px;
}

.walim-hero .walim-hero-heading h1 {
  font-weight: 900;
  font-size: 52px;
  line-height: 72px;
  letter-spacing: 0%;
}

@media (max-width: 767px) {
  .walim-hero .walim-hero-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
  }
  .walim-hero .walim-hero-heading h6 {
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
    padding: 4px;
  }
  .walim-hero .walim-hero-heading h1 {
    font-weight: 900;
    font-size: 36px;
    line-height: 72px;
    letter-spacing: 0%;
  }
}

.walim-hero .walim-scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  color: var(--clr-white);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.walim-hero .walim-scroll-down img {
  width: 24px;
  height: 24px;
  animation: bounceUpDown 2s ease-in-out infinite;
}

@keyframes bounceUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.walim-hero .walim-scroll-down button {
  font-weight: 400;
  font-size: 12px;

  line-height: 16px;
  letter-spacing: 1.2px;

  background-color: transparent;
  color: var(--clr-white);
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.walim-about-us-page {
  background-color: #fdfbf7;
}

.walim-about-us {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .walim-about-us {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- Right Side --- */
.walim-about-us .walim-right-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.walim-about-us .walim-right-side h2 {
  font-weight: 900;
  font-style: Black;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0%;
  color: var(--clr-black);
}

.walim-about-us .walim-right-side h6,
.walim-about-us .walim-right-side p strong {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  color: var(--clr-red);
}

.walim-about-us .walim-right-side p strong {
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0%;
}

.walim-about-us .walim-right-side p {
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0%;
  max-width: 584px;
}

.walim-about-us .walim-right-side ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.walim-about-us .walim-right-side ul li {
  background-color: #fff;
  padding-block: 22px;
  padding-right: 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  box-shadow: 0px 10px 30px -5px #0000000d;
}

.walim-about-us .walim-right-side ul li h6 {
  background-color: #fff;
  padding: 9px 15px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  border-radius: 50%;
  color: var(--clr-red);
  margin-inline-end: 16px;
  background-color: #fdfbf7;
  box-shadow: 0px 1px 2px 0px #0000000d;
}

@media (max-width: 767px) {
  .walim-about-us .walim-right-side h2 {
    font-size: 24px;

    line-height: 48px;
    letter-spacing: 0%;
  }

  .walim-about-us .walim-right-side h6 {
    font-size: 14px;
  }
  .walim-about-us .walim-right-side p {
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0%;
  }

  .walim-about-us .walim-right-side ul li {
    padding-right: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
  }

  .walim-about-us .walim-right-side ul li h6 {
    background-color: #fff;
    padding: 9px 15px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    border-radius: 50%;
    color: var(--clr-red);
    margin-inline-end: 16px;
    background-color: #fdfbf7;
    box-shadow: 0px 1px 2px 0px #0000000d;
  }
}

/* --- Left Side --- */

.walim-about-us .walim-left-side {
  display: flex;
  gap: 24px;
}

.walim-about-us .walim-left-side .walim-about-us-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 16px;
  min-width: 280px;
  height: 280px;
}

#walim-about-us-card-light-icon,
#walim-about-us-card-dark-icon {
  width: 32px !important;
}

.walim-about-us .walim-left-side .walim-about-us-card.light-card {
  margin-top: 78px;
  background-color: #e4dcca;
}
.walim-about-us .walim-left-side .walim-about-us-card.dark-card {
  background-color: #231f20;
  color: white;
}

.walim-about-us .walim-left-side .walim-about-us-card.light-card div,
.walim-about-us .walim-left-side .walim-about-us-card.dark-card div {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  display: flex;
}
.walim-about-us .walim-left-side .walim-about-us-card.light-card div {
  background-color: var(--clr-white);
}

.walim-about-us .walim-left-side .walim-about-us-card.dark-card div {
  background-color: #742c2c1a;
}

.walim-about-us .walim-left-side .walim-about-us-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.walim-about-us .walim-left-side .walim-about-us-card h6 {
  font-size: 14px;
}
.walim-about-us .walim-left-side .walim-about-us-card.dark-card h6 {
  color: #9ca3af;
}

@media (max-width: 767px) {
  .walim-about-us .walim-left-side .walim-about-us-card {
    margin-block: 40px;
    min-width: 157px;
    height: 157px;
  }

  .walim-about-us .walim-left-side .walim-about-us-card.light-card div,
  .walim-about-us .walim-left-side .walim-about-us-card.dark-card div {
    padding: 8px;
  }

  .walim-about-us .walim-left-side .walim-about-us-card h3 {
    font-size: 15px;
  }
  .walim-about-us .walim-left-side .walim-about-us-card h6 {
    font-size: 14px;
  }
}
/* ============================================
   FEATURES SECTION
   ============================================ */
.walim-features {
  background-color: #231f20;
}

.walim-features h2 {
  color: var(--clr-white);
}

.walim-features-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 24px;
}

@media (max-width: 1024px) {
  .walim-features-cards {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}
@media (max-width: 767px) {
  .walim-features-cards {
    grid-template-columns: repeat(1, minmax(180px, 1fr));
  }
}

.walim-features-cards .walim-features-content-item {
  background-color: #ffffff0d;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #ffffff1a;
  color: var(--clr-white);
}
.walim-features-cards .walim-features-content-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}
.walim-features-cards
  .walim-features-content-item
  .walim-features-content-item-title {
  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
}
.walim-features-cards .walim-features-content-item div h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #e4dcca;
  /* margin-bottom: 14px; */
}

.walim-features-cards .walim-features-content-item div p {
  font-weight: 400;
  font-size: 12px;
  line-height: 19.5px;
  letter-spacing: 0%;
  color: #9ca3af;
}

/* --- Bottom Section --- */
.walim-features-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--clr-red);
  color: var(--clr-white);
  padding: 64px;
  border-radius: 24px;
  margin-top: 64px;
}

.walim-features-bottom-section .walim-features-bottom-section-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.walim-features-bottom-section .walim-features-bottom-section-right h3 {
  font-weight: 900;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0%;
}
.walim-features-bottom-section .walim-features-bottom-section-right p {
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  letter-spacing: 0%;
  color: #fee2e2;
  max-width: 367px;
}

.walim-features-bottom-section .walim-features-bottom-section-left {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}
.walim-features-bottom-section
  .walim-features-bottom-section-left
  .walim-features-card-circle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.walim-features-bottom-section
  .walim-features-bottom-section-left
  .walim-features-card-circle
  .walim-features-card-circle-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px !important;
  height: 88px;
  border-radius: 50%;
  background-color: var(--clr-white);
  border: 4px solid #ffffff33;
  background-color: #ffffff1a;
  font-weight: 900;
  font-style: Black;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0%;
}
.walim-features-bottom-section .walim-features-bottom-section-left h6 {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #e4dcca;
}

.walim-features-bottom-section
  .walim-features-bottom-section-left
  .walim-features-bottom-section-left-hr {
  width: 1px;
  height: 96px;
  background-color: #ffffff33;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .walim-features-bottom-section {
    padding: 32px 16px;
    flex-direction: column;
  }
  .walim-features-bottom-section .walim-features-bottom-section-right h3 {
    max-width: 80%;
  }
  .walim-features-bottom-section .walim-features-bottom-section-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    margin-top: 24px;
  }
  .walim-features-bottom-section
    .walim-features-bottom-section-left
    .walim-features-card-circle:last-child {
    grid-column: 1 / -1;
  }
  .walim-features-bottom-section
    .walim-features-bottom-section-left
    .walim-features-bottom-section-left-hr {
    display: none;
  }

  .walim-features-bottom-section
    .walim-features-bottom-section-left
    .walim-features-card-circle
    .walim-features-card-circle-item {
    font-weight: 900;
    font-style: Black;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0%;
    width: 64px !important;
    height: 64px;
  }
  .walim-features-bottom-section
    .walim-features-bottom-section-left
    .walim-features-card-circle.order-circle-item {
    order: -1;
  }
  .walim-features-bottom-section .walim-features-bottom-section-left h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    margin-top: 16px;
    margin: 0;
  }
}
/* ============================================
   OUR PRODUCTS SECTION
   ============================================ */
.walim-our-products {
  background-color: var(--clr-white);
}

.walim-our-products-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 40px;
}

.walim-our-products-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0px 4px 6px -4px #0000001a;
}

.walim-our-products-card .walim-our-products-card-image {
  background-color: #fdfbf7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px;
  border: 1px solid #f3f4f6;
}

.walim-our-products-card .walim-our-products-card-image img {
  width: 56px !important;
}

.walim-our-products-card.dark-card .walim-our-products-card-image {
  background-color: #ffffff1a;
  border: none;
}

.walim-our-products-card h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}

.walim-our-products-card.dark-card {
  background-color: #231f20;
  color: white;
  box-shadow: 0px 25px 50px -12px #00000040;
}

.walim-our-products-card p {
  font-weight: 400;

  font-size: 16px;
  line-height: 26px;

  text-align: center;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .walim-our-products-cards {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 767px) {
  .walim-our-products-cards {
    grid-template-columns: repeat(1, minmax(180px, 1fr));
  }
  .walim-our-products-card {
    padding: 24px;
  }

  .walim-our-products-card .walim-our-products-card-image {
    padding: 24px;
  }

  .walim-our-products-card .walim-our-products-card-image img {
    width: 30px !important;
  }

  .walim-our-products-card h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .walim-our-products-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
  }
}
/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.walim-why-choose-us {
  background-color: #fdfbf7;
}

.walim-why-choose-us-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 40px;
}

.walim-why-choose-us-card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 24px;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0px 4px 6px -4px #0000001a;
}

.walim-why-choose-us-card .walim-why-choose-us-card-image {
  background-color: #fdfbf7;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border: 1px solid #f3f4f6;
}
.walim-why-choose-us-card .walim-why-choose-us-card-image img {
  width: 24px;
  height: 24px;
}

.walim-why-choose-us-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.walim-why-choose-us-card h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}

.walim-why-choose-us-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  letter-spacing: 0%;
  color: #6b7280;
}

@media (max-width: 767px) {
  .walim-why-choose-us-cards {
    display: grid;
    grid-template-columns: repeat(1, minmax(180px, 1fr));
    gap: 40px;
  }
  .walim-why-choose-us-card {
    gap: 16px;
  }

  .walim-why-choose-us-card-content {
    gap: 16px;
  }
}

/* ============================================
   Logo 
   ============================================ */

.content-page .content * {
  width: auto !important;
}

.dev3-logo .logo img {
  min-height: 38px;
}

.dev3-logo .logo {
  height: 38px;
}

@media (max-width: 991px) {
  .logo img {
    height: 40px;
    min-height: 40px;
  }
}

@media (max-width: 776px) {
  .logo img {
    height: 30px;
    min-height: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 245px;
  }

  .testimonial .desc {
    border: none !important;
  }

  .testimonial .name {
    border-top: 1px #aeaeae6e solid !important;
  }
}


/* ضبط مساحة الصورة في الجوال */
.product-item .product-image,
.product-card .product-image,
.product-card__image,
.product-thumbnail,
.product-item__image {
  aspect-ratio: 1 / 1 !important;
  overflow: visible !important;
  background: #ffffff !important;
}



/* للجوال فقط */
@media (max-width: 768px) {
  .product-item img,
  .product-card img,
  .product-card__image img,
  .product-image img {
    object-fit: contain !important;
    padding: 8px !important;
  }
}


/* خلفية بيضاء ممتدة للصورة */
.product-item,
.product-card {
  background: transparent !important;
}

.product-item .product-image,
.product-card .product-image,
.product-card__image,
.product-item__image {
  background: #ffffff !important;
  border-radius: 16px 16px 0 0 !important;
  padding: 12px !important;
  margin-bottom: -10px !important;
}

/* ضبط الصورة داخل الخلفية */
.product-item img,
.product-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* توحيد الشكل بين الصورة والجزء السفلي */
.product-item,
.product-card {
  border-radius: 16px !important;
  overflow: hidden !important;
}

/* تقليل المسافة بين الأقسام */
.section,
.s-block,
.home-block,
.category-block {
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
}

/* تقليل المسافة بين السلايدر والأقسام */
.s-slider-block,
.main-slider {
  margin-bottom: 10px !important;
}

/* تقليل المسافة بين أيقونات التصنيفات */
.categories,
.category-list,
.s-categories {
  gap: 10px !important;
  margin-bottom: 10px !important;
}

/* تقليل المسافة بين المنتجات */
.products,
.product-list,
.s-products {
  gap: 10px !important;
}

/* للجوال */
@media (max-width: 768px) {
  .section,
  .s-block,
  .home-block {
    margin-bottom: 8px !important;
  }
}




/* أيقونة المفضلة */
.s-product-card-wishlist-btn,
.product-card .wishlist-btn,
.product-item .wishlist-btn {
  top: 8px !important;           /* رفعها للأعلى */
  right: 8px !important;         /* تثبيت يمين */
  transform: scale(0.8) !important; /* تصغير الحجم */
  background: transparent !important; /* بدون خلفية */
  box-shadow: none !important;   /* إزالة الظل */
  border: none !important;
}

/* شكل الأيقونة نفسها */
.s-product-card-wishlist-btn svg,
.wishlist-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #000 !important; /* لون افتراضي */
}

/* عند التفعيل (إضافة للمفضلة) */
.s-product-card-wishlist-btn.is-active svg,
.wishlist-btn.active svg {
  stroke: #BC3A33 !important; /* لون وليم */
  fill: #BC3A33 !important;
}

/* تأثير عند الضغط */
.s-product-card-wishlist-btn:active,
.wishlist-btn:active {
  transform: scale(0.7) !important;
}
/* ============================================
   END OF STYLES
   ============================================ */