/* Start custom CSS for text-editor, class: .elementor-element-6dcc3b4 *//* =========================
   VARIABLES
========================= */
:root {
  --percko-main: #ce5e58;
  --percko-border: #e6e6e6;
  --percko-soft: #e7f6f6;
  --percko-gray: #bdbdbd;
}

/* =========================
   TITRES
========================= */
.percko-feature-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--percko-main);
  margin: 30px 0 14px;
}

.percko-section-title-h4 {
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1rem;
  line-height: normal;
  margin: 0 0 8px;
}

/* =========================
   CARDS FEATURES
========================= */
.percko-feature-card {
  border: 1px solid var(--percko-border);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: 0.2s;
}

.percko-feature-card:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.percko-feature-text {
  margin: 0;
  line-height: 1.45;
  flex: 1;
}

.percko-imgwrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #efefef;
}

.percko-imgwrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* =========================
   COMPARATIF
========================= */
.percko-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--percko-gray);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin: 24px 0;
}

.percko-col {
  padding: 18px;
  border-right: 1px solid var(--percko-gray);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.percko-col:last-child {
  border-right: 0;
}

.percko-col.percko-left {
  background: var(--percko-soft);
}

.percko-text-start {
  text-align: left !important;
}

.percko-compare img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Variante chaise */
.percko-compare--chair .percko-col > img {
  width: 100%;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .percko-imgwrap img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .percko-compare {
    grid-template-columns: 1fr;
  }

  .percko-col {
    border-right: 0;
    border-bottom: 1px solid var(--percko-gray);
  }
}/* End custom CSS */