/*
Theme Name: Pharmacy
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

/* ===== Phác đồ Card ===== */
.phac-do-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

/* Title */
.phac-do-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
}

/* Timeline */
.phac-do-card__timeline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
}
.timeline-arrow {
  color: #aaa;
}

/* Dots */
.phac-do-card__dots {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4edda;
}
.dot--active {
  background: #5a9e6f;
}

/* Images */
.phac-do-card__images {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f5f5f5;
}
.phac-do-card__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phac-do-card__prev {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

/* CTA Button */
.phac-do-card__footer {
  margin-top: auto;
  text-align: right;
}
.phac-do-card__btn {
  background: #5a9e6f;
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.phac-do-card__btn:hover {
  background: #47845a;
}


