/* Mixin Responsive*/
.fix-responsive img {
  max-width: 100% !important;
  height: auto !important;
}

.list-social--footer a {
  display: inline-block;
  margin-bottom: 15px;
}
.list-social--footer svg {
  width: 30px !important;
  height: 30px !important;
}

.browse-categories .category-card {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 14px 16px;
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.browse-categories .category-card:hover {
  border-color: #cfe8d6;
  box-shadow: 0 6px 18px rgba(24, 128, 56, 0.08);
  transform: translateY(-1px);
}

.category-card__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.category-card__name {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.25;
}

.category-card__count {
  font-size: 13px;
  color: #8a919e;
  margin-top: 2px;
}

/* Feature bar */
.category-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 26px 28px;
  border-radius: 14px;
  background: #f7f8f9;
}

.category-features__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.category-features__icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-features__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-features__title {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: #1f2937;
}

.category-features__desc {
  margin: 2px 0 0;
  font-size: 13px;
  color: #8a919e;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .category-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .category-features {
    grid-template-columns: 1fr;
  }
}
/* Post detail - social share */
.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e6e8eb;
}

.post-share__label {
  font-weight: 700;
  font-size: 0.82rem;
  color: #1a1a2e;
}

.post-share__list {
  display: flex;
  gap: 12px;
}

.post-share__btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e8eb;
  border-radius: 50%;
  background: #fff;
  color: #1a1a2e;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.post-share__btn:hover {
  border-color: #1a1a2e;
  color: #1a1a2e;
  background: #f7f8f9;
}

.post-share__btn svg {
  width: 14px;
  height: 14px;
}

/* Store page - Copy Code + Get Deal on the same row (code offers) */
.get-actions {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.get-actions a {
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.get-actions .btn-copy-code {
  padding: 0 16px;
  border: 2px dashed #019a04;
  background: #fff;
  color: #019a04;
}

.get-actions .btn-copy-code:hover {
  background: #f2f8f4;
  color: #019a04;
}

.get-actions .btn-get-deal {
  padding: 0 18px;
  background: #019a04;
  color: #fff;
}

.get-actions .btn-get-deal:hover {
  background: #017a03;
  color: #fff;
}

/* Reserve room on the right for the two buttons (code offers only) */
.cl .cp.js-filter-coupon-type-codes .deal .deal-desc {
  padding-right: 250px;
}

@media (max-width: 768px) {
  .get-actions {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 12px;
    gap: 10px;
  }
  .get-actions a {
    flex: 1 1 0;
  }
  .cl .cp.js-filter-coupon-type-codes .deal .deal-desc {
    padding-right: 10px;
  }
}

/*# sourceMappingURL=custom.css.map */
