/* Epoxi Product Category Comparison Styles */
/* Using specific prefix 'epoxi-cat-' to avoid conflicts */

.epoxi-cat-pros-and-cons {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0 0 2.5rem 0;
  max-width: 900px;
  margin: 0 auto 2rem auto;
}

.epoxi-cat-pros-and-cons > h2 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--dark-grey);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.epoxi-cat-comparison {
  display: flex;
  gap: 0;
  border-radius: 0;
  background: none;
  border: none;
  position: relative;
  margin-bottom: 2rem;
}

.epoxi-cat-product {
  flex: 1 1 0;
  padding: 0 2.5rem 0 0;
  background: none;
  border: none;
  box-shadow: none;
  min-width: 0;
}

.epoxi-cat-product:last-child {
  padding: 0 0 0 2.5rem;
}

.epoxi-cat-divider {
  width: 1px;
  background: var(--pale-grey);
  margin: 0 0.5rem;
  min-height: 100%;
  align-self: stretch;
  display: block;
}

.epoxi-cat-product > h2 {
  font-size: 1.1rem;
  color: var(--dark-grey);
  font-weight: 500;
  margin-bottom: 0.8rem;
  border: none;
  padding: 0;
  text-transform: uppercase;
}

.epoxi-cat-product > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.epoxi-cat-product > ul > li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.6;
  font-weight: 400;
}

.epoxi-cat-product > ul > li:last-child {
  margin-bottom: 0;
}

.epoxi-cat-product > ul > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="10" fill="%23f58220"/><path d="M6 10.5L9 13.5L14 8.5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>')
    no-repeat center center/1.2rem 1.2rem;
  transition: transform 0.2s ease;
}

.epoxi-cat-product > ul > li:hover::before {
  transform: scale(1.1);
}

.epoxi-cat-advantages {
  background: var(--off-white);
  border: 1px solid var(--pale-grey);
  border-radius: var(--button-roundness);
  padding: 1.5rem;
  max-width: 700px;
  margin: 2rem auto 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.epoxi-cat-advantages:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.epoxi-cat-advantages > h2 {
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--sky-blue);
  font-weight: 600;
  text-transform: uppercase;
}

.epoxi-cat-advantages > p {
  text-align: center;
  font-size: 1rem;
  color: var(--dark-grey);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.epoxi-cat-advantages > p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .epoxi-cat-comparison {
    flex-direction: column;
    gap: 1.5rem;
  }

  .epoxi-cat-divider {
    display: none;
  }

  .epoxi-cat-product {
    padding: 0;
  }

  .epoxi-cat-product:last-child {
    padding: 0;
  }

  .epoxi-cat-advantages {
    margin: 1.5rem auto 0 auto;
    padding: 1.2rem;
  }

  .epoxi-cat-pros-and-cons {
    padding: 0 0 2rem 0;
    margin: 0 auto 1.5rem auto;
  }
}

@media (max-width: 480px) {
  .epoxi-cat-product > ul > li {
    padding-left: 1.6rem;
    font-size: 0.95rem;
  }

  .epoxi-cat-product > ul > li::before {
    width: 1rem;
    height: 1rem;
    background-size: 1rem 1rem;
  }

  .epoxi-cat-advantages {
    padding: 1rem;
  }

  .epoxi-cat-advantages > h2 {
    font-size: 1rem;
  }

  .epoxi-cat-advantages > p {
    font-size: 0.95rem;
  }
}
