/* 1. Force Elementor flex container to give equal column space to this widget */
.elementor-widget:has(.ekit-feature-card) {
  flex: 1 1 0% !important;
  width: 100% !important;
}

/* 2. Lock Card Width */
.ekit-feature-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 20px 24px;
  width: 100%;
  min-width: 320px; /* Prevents card from collapsing when closed */
  box-sizing: border-box;
  display: block;
}

.ekit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  list-style: none;
}

.ekit-card-header::-webkit-details-marker {
  display: none;
}

.ekit-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.ekit-icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #f3f4f6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 16px;
  flex-shrink: 0;
}

.ekit-icon-box svg,
.ekit-icon-box img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.ekit-card-title {
  font-family: "Hanken Grotesk";
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 20px;
  padding-right: 15px;
}

.ekit-toggle-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  flex-shrink: 0;
}

/* Collapsed state (Plus icon) */
.ekit-toggle-btn .icon-toggle::before {
  content: "+";
  font-size: 20px;
  color: #1c4e3d;
  line-height: 1;
}

/* Expanded state (Minus icon) */
.ekit-feature-card[open] .ekit-toggle-btn {
  background: #1c4e3d;
  border-color: #1c4e3d;
}

.ekit-feature-card[open] .ekit-toggle-btn .icon-toggle::before {
  content: "—";
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
}

.ekit-divider {
  border-bottom: 1.5px dotted #d1d5db;
  margin: 16px 0;
}

/* List Styling */
body .elementor-widget .ekit-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body .elementor-widget .ekit-feature-list li {
  display: flex;
  align-items: center;
  font-family: "Hanken Grotesk";
  font-size: 16px;
  color: #4A4F59;
  font-weight: 400;
line-height: 24px;
  background: none;
  padding-left: 0;
}

/* Pure CSS Green Checkmark */
body .elementor-widget .ekit-feature-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  min-width: 5px;
  min-height: 10px;
  border-style: solid;
  border-color: #1c4e3d;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-right: 12px;
  margin-left: 4px;
  margin-bottom: 2px;
  flex-shrink: 0;
  box-sizing: content-box;
}



/* Universal Icon Box Reset & Color Lock */
.ekit-icon-box {
  color: #1c4e3d !important;
}

/* 1. Filled SVGs */
.ekit-icon-box svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  fill: currentColor !important;
}

/* 2. Line-Art / Outline SVGs */
.ekit-icon-box svg[stroke],
.ekit-icon-box svg path[stroke] {
  stroke: #1c4e3d !important;
  fill: none !important;
}

/* 3. Font Icons (FontAwesome / Elementor Icon Libraries) */
.ekit-icon-box i {
  font-size: 18px !important;
  color: #1c4e3d !important;
  display: block !important;
  line-height: 1 !important;
}

/* 4. Image File Uploads */
.ekit-icon-box img {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  object-fit: contain !important;
}