/* Header Image */
.header-image-section .header-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--primary-color-op-60) 0%,
    var(--primary-color-op-30) 40%,
    transparent 100%
  );
  z-index: 0;
}

.arabic-version .header-image-section .header-image-container::before {
    background: linear-gradient(
    to left,
    var(--primary-color-op-60) 0%,
    var(--primary-color-op-30) 40%,
    transparent 100%
  );
}

.header-image-section .header-section-title {
  position: absolute;
  inset: 0;
  color: var(--white-color);
}

/* Complete Protection Section */
.complete-protection-section {
  background-color: var(--soft-gray);
}

@media (min-width: 767.98px) {
  .complete-protection-section .section-container {
    max-width: 90%;
  }
}

/* Accordion */
.accordion-item {
  overflow: hidden;
  border: 0;
  border-radius: 0 !important;
  background-color: transparent;
}

.accordion-button h5 {
  text-align: start;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  box-shadow: unset !important;
  border: none;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.accordion-button:not(.collapsed) h5 {
  color: var(--white-color);
}

.accordion-button:focus {
  box-shadow: unset !important;
}

.accordion-button::after {
  background-image: url("../assets/icons/Plus\ \(1\).svg") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../assets/icons/minus.svg") !important;
  transform: rotate(0deg);
  filter: brightness(0) saturate(100%) invert(100%) sepia(96%) saturate(0%)
    hue-rotate(117deg) brightness(105%) contrast(104%);
}

.arabic-version .accordion-button::after {
  margin-right: auto;
  margin-left: unset;
}

.accordion-button {
  border-radius: var(--main-border-radius) !important;
  padding: 10px;
  border: 1px solid #2d2d2d4d;
  color: var(--secondary-gray-color);
  background-color: transparent;
}

.accordion-body {
  border: 1px solid #2d2d2d4d;
  border-top: 0;
  color: var(--secondary-gray-color);
  border-bottom-left-radius: var(--main-border-radius);
  border-bottom-right-radius: var(--main-border-radius);
}

/* Categories Tabs */
.complete-protection-section .categories-tabs {
  background: var(--soft-gray);
  border-radius: 999px;
  width: fit-content;
  padding: 5px;
  border: 1px solid var(--light-gray-color);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.complete-protection-section .categories-tabs button {
  color: var(--gray-color);
  text-align: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  min-width: 80px;
  border: none;
  transition: 0.2s all ease-in-out;
}

.complete-protection-section .categories-tabs button:hover {
  color: var(--primary-color);
}

.complete-protection-section .categories-tabs button.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Cms Content */
.complete-protection-section .cms-content ul li::marker {
  color: var(--primary-color) !important;
  font-size: 1.75rem;
}

/* More Products Section */
.more-products-section {
  background-color: var(--soft-gray);
}

.more-products-section .swiper-button-prev,
.more-products-section .swiper-button-next {
  background-color: var(--soft-gray);
  border: 1px solid var(--light-gray-color);
}

.more-products-section .swiper-button-prev:hover,
.more-products-section .swiper-button-next:hover {
  background-color: var(--white-color);
}

.more-products-section .swiper-button-prev svg,
.more-products-section .swiper-button-next svg {
  color: var(--black-color);
}

.more-products-section .swiper-pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--gray-color);
  transition: all 0.2s ease-in-out;
}

.more-products-section .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 1.5rem;
  border-radius: 999px;
}

.more-products-section .insurance-products-card {
  background-color: var(--white-color);
  border-radius: var(--main-border-radius);
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  flex-grow: 1;
}

.more-products-section .insurance-products-card img {
  aspect-ratio: 3 / 4;
}

@media (max-width: 1199.98px) {
  .more-products-section .insurance-products-card img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 575.98px) {
  .more-products-section .swiper-pagination {
    width: 100% !important;
  }
}

.more-products-section .insurance-products-card .image-overlay {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.more-products-section .insurance-products-card:hover .image-overlay {
  background-color: var(--primary-color-op-60);
}

.more-products-section .insurance-products-card a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
