	/* Base Animations */
@keyframes shine {
  to {
    left: 100%;
  }
}

@keyframes flame {
  from {
    opacity: 0.7;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.services .row > .col {
  padding: 0;
}

.services .bp-news-button-action {
  display: none;
}
.services .cls_img_hot_news,
.services .cls_content_hot_news {
  padding: 0px;
}
.services .bp_block_item {
  padding: 10px;
}
.services .news_title {
  background: #439508;
  padding: 18px 15px 15px;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}
.services .news_title a {
  color: #fff;
}
.services .cls_img_hot_news img {
  border-radius: 0;
  height: 250px;
  object-fit: cover;
}
/* Header and Service Styles */
.header-service {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.title-service {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.title-service::before {
  content: "•";
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.bp_block_item .row {
    margin: 0;
}
.img-discount {
  text-align: center;
  margin-bottom: 30px;
}
/* Header Menu Styles */
.header-menu {
  background-color: #5b9c2e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: white;
  margin-bottom: 30px;
}

.logo-section {
  display: flex;
  align-items: center;
}

.home-icon {
  margin-right: 10px;
  font-size: 24px;
}

.main-title {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}

.menu-items {
  display: flex;
}

.menu-item {
  margin-left: 20px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
}
.menu-item a {
    color: #FFF;
}
.menu-item:hover {
  text-decoration: underline;
}

/* Header Banner Styles */
.header-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #43a047, #2e7d32);
  color: white;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.header-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* Promo and Countdown Styles */
.promo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.promo-text {
  font-weight: 700;
  font-size: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  position: relative;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.promo-text::after {
  content: "🔥";
  margin-left: 8px;
  font-size: 18px;
  animation: flame 0.8s infinite alternate;
}

.countdown-container {
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #f44336, #d32f2f);
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.countdown-text {
  margin-right: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.countdown-timer {
  padding: 0px 10px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.countdown-timer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: shine 3s infinite;
}

/* View All Button Styles */
.view-all {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-all:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.view-all::after {
  content: "→";
  margin-left: 6px;
  font-size: 16px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.view-all:hover::after {
  transform: translateX(4px);
}

/* Product Discount Styles */
.product-discount .card {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
}
.product-discount .card-text {
    display: none;
}
.product-discount .card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.product-discount .bp-one-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-discount .card:hover .bp-one-image img {
  transform: scale(1.05);
}

.product-discount .card-body {
  padding: 15px;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
}

.product-discount .product_title {
  font-weight: 500;
  margin-top: 10px;
}

.product-discount .product_title a {
  color: #2ecc71;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-discount .product_title a:hover {
  color: #27ae60;
}

.product-discount .btnAddToCart {
  color: #444444;
  font-weight: 400;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 38px;
  padding: 0;
  font-size: 12px;
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.7s ease-out;
  border-radius: 50px;
  opacity: 0;
}

.product-discount .card:hover .btnAddToCart {
  opacity: 1;
  bottom: 50%;
  z-index: 100;
}

.product-discount .btnAddToCart:hover {
  background: linear-gradient(to right, #43a047, #2e7d32);
  color: #fff;
}

.product-discount .bp_cls_group_price {
  display: flex;
  gap: 20px;
}

.product-discount .cls_price_number,
.product-discount .bp_cls_price .cls_unit_price {
  color: #669900;
  font-size: 18px;
  font-weight: 600;
}

.product-discount .cls_old_price,
.product-discount .bp_cls_old_price .cls_unit_price {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.product-discount .button-contact {
    text-align: center;
}
.product-discount .button-contact a {
  display: inline-block;
  padding: 8px 15px;
  background-color: #4caf50;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.product-discount .button-contact a:hover {
  background-color: #27ae60;
}

/* Responsive Styles */


/* Hidden Elements */
.bp_star_review,
.cls_price_text,
.cls_old_price_text,
.services .bp-news-button-action,
.product-discount .bp_cls-click-mua,
.bp-product-link-details,
.product-quantity,
.services .bp_star_review,
.product-discount .bp_star_review,
.product-discount .main_star,
.bp_lbl_product_more {
  display: none;
}

.banner-face {
  display: flex;
  padding: 0;
  height: 100%;
}

.left-panel {
  width: 50%;
  background-color: #5eac2d;
  color: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.right-panel {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.right-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heading-primary {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 60px;
}

.heading-secondary {
  font-size: 16px;
  font-weight: normal;
}

.bottom-link {
  font-size: 16px;
  font-style: italic;
  margin-top: auto;
}
.bottom-link a {
    color: #FFF;
}
/* Product Device Styles */
.product-device > .container > .row > .col-lg-5 {
  padding: 0;
}

.product-device .btnAddAction {
  color: #444444;
  font-weight: 400;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 38px;
  padding: 0;
  font-size: 12px;
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.7s ease-out;
  border-radius: 50px;
  opacity: 0;
}

.product-device .bp_product_item:hover .btnAddAction {
  opacity: 1;
  bottom: 50%;
  z-index: 100;
}

.product-device .btnAddAction:hover {
  background: linear-gradient(to right, #43a047, #2e7d32);
  color: #fff;
}

.product-device .bp_product_item {
  margin-bottom: 20px;
}
.product-device .bp_product_item {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.product-device .bp_product_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product-device .cls_img_product_focus {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.product-device .bp-one-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-device .bp_product_item:hover .bp-one-image img {
    transform: scale(1.05);
}

.product-device .cls_content_product_focus {
    padding: 15px;
    text-align: center;
}

.product-device .product_title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-device .product_title a:hover {
    color: #27ae60;
}

.product-device .button-contact a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-device .button-contact a:hover {
    background-color: #2ecc71;
    transform: scale(1.05);
}

.product-device .bp_product_more_item {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bp_m_88992 {
    margin-top: 20px;
}
.product-sidebar .button-contact {
    display: none;
}
@media screen and (max-width:992px) {
    .view-all {
        display: none;
    }
    .countdown-text {
        display: none;
    }
    .promo {
        justify-content: space-between;
    }
    .header-banner {
        display: block;
    }
}
@media (max-width: 768px) {
    .product-device .bp-one-image img {
        height: 200px;
    }
    
    .product-device .product_title a {
        font-size: 1rem;
    }
      .banner-face {
    flex-direction: column;
  }
   .header-menu {
    flex-direction: column;
    padding: 10px;
  }

  .logo-section {
    margin-bottom: 10px;
  }

  .menu-items {
    justify-content: space-around;
    width: 100%;
  }

  .menu-item {
    margin: 5px 0;
    padding: 8px 0;
    text-align: center;
  }

  .banner {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }

  .promo-text {
    margin-bottom: 10px;
  }



  .countdown-container {
    margin: 5px 0;
  }

  .left-panel,
  .right-panel {
    width: 100%;
  }

  .right-panel img {
    max-height: 300px;
  }
}

.bp_cls-click-mua,
.bp_m_91479,
.product-device .product-quantity {
  display: none;
}

