.elementor-24877 .elementor-element.elementor-element-b376ac6{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-a45a998 *//* cleaning & care*/
/* MAIN TABLE */
.care-table {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
/* ROW STRUCTURE */
.care-row {
  display: grid;
  grid-template-columns: 18% 32% 32% 18%;
  padding: 16px 18px;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
  gap:20px;
}
/* HEADER */
.care-head {
  background: #f6f7f9;
  font-weight: 600;
  color: #222;
}
/* TITLE COLUMN */
.care-title {
  font-weight: 600;
  color: #111;
}
/* STRIPES */
.care-row:nth-child(even) {
  background: #fafafa;
}
/* FREQUENCY BADGE STYLE */
.care-row div:last-child {
  font-weight: 600;
  color: #2c5364;
}
/* MOBILE VIEW */
@media (max-width: 767px) {
  .care-row {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0;
  }

  .care-head {
    display: none;
  }

  /* Each cell becomes a row with label */
  .care-row > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
  }

  /* Label from data-label attribute */
  .care-row > div::before {
    content: attr(data-label);
    font-weight: 700;
    color: #1c1c1c;
    background: #f4f4f4;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
  }

  /* Hide label for title column */
  .care-title::before {
    display: none !important;
  }

  /* Title column styling on mobile */
  .care-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(90deg, #DA8222, #DA8222) !important;
    padding: 12px 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Frequency badge on mobile */
  .care-row div:last-child {
    background: #eef4f7;
    border-radius: 6px;
  }
}/* End custom CSS */