:root {
  --primary-color: #e6ac6c;
  --white: #fff;
  --other-color: #d38c3f;
  --text-color: #222;
  --thin: 2px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong{
  font-family: 'Inter', 'Helvetica', sans-serif !important;
  color: #222;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 34px;
  font-weight: 600;
}

p,
a {
  font-size: 16px;
}

/* ====== SLIDER PRODUCT CONTAINER ====== */
.row-slider .col-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.row-slider .col-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ====== ẢNH SẢN PHẨM ====== */
.row-slider .box-image {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f2f2f2;
  height: 280px;
}

.row-slider .box-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.4s ease;
}

.row-slider .col-inner:hover .box-image img {
  transform: scale(1.06);
}

/* ====== NỘI DUNG SẢN PHẨM ====== */
.row-slider .box-text {
  flex: 0 0 auto;
  padding: 15px 18px;
  text-align: center;
}

.row-slider .box-text .category {
  font-size: 13px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.row-slider .box-text .product-title {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #333;
  height: 45px;
  overflow: hidden;
}

.row-slider .box-text .product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.row-slider .box-text .product-title a:hover {
  color: #00bf63;
}

/* ====== ĐẢM BẢO CHIỀU CAO ĐỒNG ĐỀU ====== */
.row-slider .product-small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .row-slider .col {
    padding: 6px;
  }

  .row-slider .col-inner {
    border-radius: 12px;
  }

  .row-slider .box-image img {
    height: 180px;
  }

  .row-slider .box-text {
    padding: 12px;
  }

  .row-slider .box-text .product-title {
    font-size: 15px;
    height: auto;
  }

  .flickity-button {
    width: 36px;
    height: 36px;
  }
}


