@charset "UTF-8";
/* ===============================
   HOME BANNER OVERLAY
================================ */
.home-banner-demo {
  width: 100%;
  background: #000; }

.home-banner-demo-wrap {
  position: relative;
  margin: 0 auto; }

/* ===== Media ===== */
.home-banner-demo-media {
  position: relative; }

.home-banner-demo-media img,
.home-banner-demo-media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; }

/* Overlay dark layer (giúp text nổi) */
.home-banner-demo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  display: none; }

/* ===== Content overlay ===== */
.home-banner-demo-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 24px;
  color: #fff; }

.home-banner-demo-title {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center; }

.home-banner-demo-desc {
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.6; }

/* ===== Buttons ===== */
.home-banner-demo-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center; }

.home-banner-demo-btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease; }

/* Primary */
.home-banner-demo-btn--primary {
  background: #f5d08c;
  color: #000; }

.home-banner-demo-btn--primary:hover {
  background: #eac067; }

/* Secondary */
.home-banner-demo-btn--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff; }

.home-banner-demo-btn--secondary:hover {
  background: #fff;
  color: #000; }

/* ===============================
   MOBILE
================================ */
@media (max-width: 767px) {
  .home-banner-demo-title {
    font-size: 24px; }
  .home-banner-demo-desc {
    font-size: 14px; }
  .home-banner-demo-btn {
    width: 100%;
    justify-content: center; } }

/* ===============================
  HOME BANNER 4
================================ */
.home-banner-4 {
  margin: 0; }

.home-banner-4-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; }

/* Tablet & Mobile */
@media (max-width: 767px) {
  .home-banner-4-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; } }

.home-banner-4-item {
  position: relative;
  overflow: hidden; }

.home-banner-4-item-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease; }

/* Zoom nhẹ khi hover */
@media (min-width: 768px) {
  .home-banner-4-item:hover img {
    transform: scale(1.05); } }

/* Overlay button center */
.home-banner-4-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  padding-bottom: 55px; }
  @media (max-width: 767px) {
    .home-banner-4-item-overlay {
      display: none !important; } }

/* Button */
.home-banner-4-item-button {
  pointer-events: auto;
  display: inline-block;
  padding: 14px 32px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s ease; }

/* Hover button */
@media (min-width: 768px) {
  .home-banner-4-item-button:hover {
    background-color: #fff;
    color: #000; } }

/* Mobile tối ưu nút */
@media (max-width: 767px) {
  .home-banner-4-item-button {
    padding: 12px 24px;
    font-size: 13px; } }

/* ===============================
  HOME BANNER MIX
================================ */
.home-banner-mix {
  margin: 0; }

.home-banner-mix-wrap {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 16px; }

/* Mobile */
@media (max-width: 767px) {
  .home-banner-mix-wrap {
    grid-template-columns: 1fr;
    gap: 12px; } }

/* ===============================
  ITEM
================================ */
.home-banner-mix-left,
.home-banner-mix-right {
  position: relative;
  overflow: hidden; }

.home-banner-mix-media img,
.home-banner-mix-video {
  width: 100%;
  height: auto;
  display: block; }

/* Video desktop only */
.home-banner-mix-video-desktop {
  display: block; }

.home-banner-mix-image-mobile {
  display: none; }

@media (max-width: 767px) {
  .home-banner-mix-video-desktop {
    display: none; }
  .home-banner-mix-image-mobile {
    display: block; } }

/* ===============================
  HOVER IMAGE / VIDEO
================================ */
@media (min-width: 768px) {
  .home-banner-mix-left:hover img,
  .home-banner-mix-right:hover img,
  .home-banner-mix-left:hover video {
    transform: scale(1.05); } }

.home-banner-mix-media img,
.home-banner-mix-video {
  transition: transform 0.4s ease; }

/* ===============================
  OVERLAY BUTTON CENTER
================================ */
.home-banner-mix-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  padding-bottom: 20px;
  display: none; }
  @media (max-width: 767px) {
    .home-banner-mix-overlay {
      display: none !important; } }

.home-banner-mix-left:hover .home-banner-mix-overlay, .home-banner-mix-right:hover .home-banner-mix-overlay {
  display: flex; }
  @media (max-width: 767px) {
    .home-banner-mix-left:hover .home-banner-mix-overlay, .home-banner-mix-right:hover .home-banner-mix-overlay {
      display: none !important; } }

.home-banner-mix-button {
  pointer-events: auto;
  display: inline-block;
  padding: 14px 34px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border-radius: 2px;
  transition: all 0.3s ease; }

/* Hover button */
@media (min-width: 768px) {
  .home-banner-mix-button:hover {
    background-color: #fff;
    color: #000; } }

/* Mobile button */
@media (max-width: 767px) {
  .home-banner-mix-button {
    padding: 12px 26px;
    font-size: 13px; } }

.home-banner-4 {
  margin-bottom: 40px; }

.product-item-detail-more {
  border-radius: var(--border_radius);
  background-color: #ffffff;
  border: 1px solid var(--color_main);
  color: #000000;
  padding: 8px 25px;
  transition: background-color 0.5s;
  margin-top: 15px;
  display: inline-block; }

.product-item-detail-more:hover {
  background-color: #000000;
  color: #ffffff; }
