.hidden {
  display: none !important;
}

/* Product video container styles */
.product-video-container {
  width: 100%;
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.product-video-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
}

/* Responsive video */
@media (max-width: 992px) {
  .product-video-container iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .product-video-container iframe {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .product-video-container iframe {
    height: 200px;
  }
}

@media (max-width: 360px) {
  .product-video-container iframe {
    height: 180px;
  }
}

/* Video thumbnail styles */
.video-thumbnail {
  border: 2px solid #dee2e6;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.video-thumbnail:hover {
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  border-color: #06c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-thumbnail.active {
  border-color: #06c;
  background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
  box-shadow: 0 2px 8px rgba(6, 108, 192, 0.2);
}

.video-thumbnail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #6c757d;
  text-align: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.video-thumbnail-content i {
  font-size: 24px;
  line-height: 1;
}
.video-thumbnail.active .video-thumbnail-content i {
  color: #06c;
}

.video-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #06c;
}

/* Responsive video thumbnail */
@media (max-width: 992px) {
  .video-thumbnail-content i {
    font-size: 22px;
  }
  
  .video-label {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .video-thumbnail-content i {
    font-size: 20px;
  }
  
  .video-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .video-thumbnail-content i {
    font-size: 18px;
  }
  
  .video-label {
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .video-thumbnail-content i {
    font-size: 16px;
  }
  
  .video-label {
    font-size: 8px;
  }
}

#content{
  background-color: #FFF !important;
}
.detail-content-wapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
}
.detail-content {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

/* Two Column Layout */
.detail-left-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0; /* Prevents flex item from overflowing */
}

.detail-right-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  min-width: 0; /* Prevents flex item from overflowing */
}

/* Detail Left Pictures */
.detail-pictures {
  display: none;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.detail-pictures.active {
  display: flex;
}
.detail-picture {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 400px;
  padding: 10px;
  border: 1px solid #c8bfbf;
  border-radius: 8px;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 3%);
  overflow: hidden;
}
.detail-picture img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  transition: transform 0.3s ease;
  will-change: transform;
}
.detail-picture img:hover {
  transform: scale(1.02);
}
@media (hover: none) {
  .detail-picture img:hover {
    transform: none;
  }
}
.detail-gallery {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #c8bfbf transparent;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.detail-gallery::-webkit-scrollbar {
  height: 4px;
}
.detail-gallery::-webkit-scrollbar-track {
  background: transparent;
}
.detail-gallery::-webkit-scrollbar-thumb {
  background: #c8bfbf;
  border-radius: 2px;
}
.detail-gallery::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.detail-gallery .slick-track{
  width: 100% !important;
  padding: 10px;
}
/* Detail Gallery Navigation Buttons */
.detail-gallery .slick-prev,
.detail-gallery .slick-next {
  background: rgba(255, 255, 255, 0.9) !important;
  opacity: 0.8;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-gallery .slick-prev {
  left: 5px !important;
}

.detail-gallery .slick-next {
  right: 5px !important;
}

.detail-gallery .slick-prev:hover,
.detail-gallery .slick-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1) !important;
}

.detail-gallery .slick-prev::before,
.detail-gallery .slick-next::before {
  font-family: "iconsax", sans-serif;
  font-size: 16px;
  color: #06c;
  opacity: 1;
  font-weight: 600;
}

.detail-gallery .slick-prev::before {
  content: "\e8ec";
}

.detail-gallery .slick-next::before {
  content: "\e9c4";
}
.detail-gallery .slick-dots {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 12px;
}
.detail-gallery.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.detail-gallery-item {
  width: 100%;
  min-width: 92px !important;
  height: 100%;
  min-height: 92px !important;
  padding: 5px;
  border-radius: 8px;
  border: 1px solid #c8bfbf;
  margin-left: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background-color: #fff;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.detail-gallery-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  background-color: #f8f9fa;
  border-color: #06c;
}
@media (hover: none) {
  .detail-gallery-item:hover {
    transform: none;
  }
  .detail-gallery-item:active {
    transform: scale(0.95);
    background-color: #f8f9fa;
    border-color: #06c;
  }
}
.detail-gallery-item:first-child {
  margin-left: 0;
}
.detail-gallery-item.active {
  border-color: #06c;
  background-color: #f0f8ff;
  box-shadow: 0 2px 8px rgba(6, 108, 192, 0.2);
}
.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
/* End Detail Left Pictures */
/* Detail Right Overview */
.detail-overview {
  width: 100%;
  height: 100%;
  padding: 5px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-title {
  width: 100%;
  height: 100%;
}
.detail-overview-title h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #1D1D1F
}
.detail-overview-price-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.detail-overview-price {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-price-current {
  font-size: 24px;
  font-weight: bold;
  color: #06C;
}
.detail-overview-price-old {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: line-through;
}
.detail-overview-vat {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #666;
}
.detail-overview-color-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.detail-overview-color-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #515154;
}
.detail-overview-color-selector {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-color-selector-item {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  padding: 2px;
}
.detail-overview-color-selector-item:hover {
  border: 1px solid #06C;
}
.detail-overview-color-selector-item.active {
  border: 1px solid #06C;
}
.detail-overview-color-selector-item-color {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #FFF;
  box-shadow: inset 1px 1px 2px rgb(0 0 0 / 10%);
}
.detail-overview-short-description-wrapper {
  width: 100%;
  height: 100%;
  padding: 12px 12px 24px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  position: relative;
  margin-top: 20px;
  border: 1px solid #ff0000;
  border-style: dashed;
}

.detail-overview-short-description {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.detail-overview-short-description-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: absolute;
  top: -14px;
  padding: 0 12px;
  background-color: #FFF;
  color: #ff0000;
}
.detail-overview-short-description-title .iconsax {
  font-size: 20px;
}
.detail-overview-short-description-title h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.detail-overview-short-description-content {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.detail-overview-short-description-content-item {
  width: 100%;
  height: 100%;
  border-top: 1px solid #ebebeb;
  padding: 16px 0;
}
.detail-overview-short-description-content-item-banner {
  width: 100%;
  height: 100%;
}
.detail-overview-short-description-content-item-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.detail-overview-short-description-content-item-timmer {
  width: 100%;
  height: 100%;
}
.detail-overview-short-description-content-item-timmer span {
  color: #515154;
}
.detail-overview-short-description-content-item-main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-short-description-content-item-main-upper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-short-description-content-item-main-upper-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-short-description-content-item-main-upper-item .iconsax {
  padding-top: 2px;
  color: #00c000;
  font-size: 17px;
}
.detail-overview-short-description-content-item-main-upper-item-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #515154;
}
.detail-overview-short-description-content-item-main-lower {
  width: 100%;
  height: 100%;
}
.detail-overview-short-description-content-item-main-lower-item {
  font-size: 12px;
  font-weight: 300;
  line-height: 15px;
  color: #515154;
}
.detail-overview-button-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-primary-button {
  width: 100%;
  height: 100%;
}
.detail-overview-primary-button button {
  width: 100%;
  height: 64px;
  font-size: 17px;
  font-weight: bold;
  line-height: 25px;
  color: #FFF;
  background-color: #06C;
  border-radius: 8px;
  padding: 10px 20px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}
.detail-overview-secondary-button-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.detail-overview-secondary-button {
  width: 50%;
  height: 56px;
  border: 1px solid #06C;
  border-radius: 8px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.detail-overview-secondary-button-title {
  font-size: 17px;
  font-weight: bold;
  line-height: 25px;
  color: #06C;
}
.detail-overview-secondary-button-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #06C;
}
/* End Detail Right Overview */
/* Detail Description */
.detail-description {
  width: 100%;
  height: 100%; 
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 50px;
}
.detail-description-selector {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.detail-description-selector-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #1D1D1F;
  padding: 8px 16px;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  cursor: pointer;
}
.detail-description-selector-item:hover {
  color: #06C;
  background-color: #FFF;
  border: 1px solid #06C;
}
.detail-description-selector-item.active {
  color: #06C;
  background-color: #FFF;
  border: 1px solid #06C;
}
.detail-description-content {
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 0 20px !important;
}
.detail-description-content-item {
  width: 100%;
  height: 100%;
  display: none;
}
.detail-description-content-item p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-description-content-item.active {
  display: block;
}
/* End Detail Right Description */

/* Additional responsive styles */
@media (max-width: 1200px) {
  .detail-content {
    gap: 20px;
  }
  
  .detail-pictures {
    flex: 0 0 45%;
  }
  
  .detail-overview {
    flex: 0 0 55%;
  }
}

@media (max-width: 992px) {
  .detail-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .detail-pictures,
  .detail-overview {
    width: 100%;
  }
  
  .detail-pictures {
    position: static;
  }
  
  .detail-picture {
    height: 400px;
  }
  
  .detail-gallery {
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 24px;
  }
  
  .detail-gallery-item {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .detail-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .detail-pictures,
  .detail-overview {
    width: 100%;
  }
  
  .detail-pictures {
    position: static;
  }
  
  .detail-picture {
    height: 350px;
    padding: 8px;
  }
  
  .detail-gallery {
    flex-direction: row;
    gap: 8px;
    padding: 0 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
    justify-content: flex-start;
  }
  
  .detail-gallery .slick-prev,
  .detail-gallery .slick-next {
    width: 28px !important;
    height: 28px !important;
    opacity: 0.6 !important;
  }
  
  .detail-gallery .slick-prev {
    left: 2px !important;
  }
  
  .detail-gallery .slick-next {
    right: 2px !important;
  }
  
  .detail-gallery .slick-prev::before,
  .detail-gallery .slick-next::before {
    font-size: 14px !important;
  }
    
  .detail-gallery-item {
    width: 100px;
    height: 100px;
    margin-left: 0;
    margin-right: 10px;
    min-width: 100px !important;
  }
  
  .detail-overview-button-wrapper {
    gap: 15px;
  }
  
  .detail-overview-secondary-button-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  
  .detail-overview-secondary-button {
    width: 100%;
  }
  
  .detail-description-selector {
    gap: 10px;
  }
  
  .detail-description-selector-item {
    text-align: center;
  }
}

/* Fix for quantity input */
.quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.quantity .minus,
.quantity .plus {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #f8f9fa;
    color: #1d1d1f;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity .minus:hover,
.quantity .plus:hover {
    background-color: #06c;
    color: white;
}

.quantity .qty {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    background-color: white;
}

/* Hidden class for elements that should be hidden */
.hidden {
  display: none !important;
}

/* Quantity Selector Component */
.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  background: #f8f9fa;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background-color: #f8f9fa;
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background-color: #06c;
  color: white;
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  background-color: white;
  outline: none;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* Action Buttons Component */
.action-buttons {
  display: flex;
  gap: 15px;
}

.add-to-cart-btn {
  padding: 10px 20px;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #b8860b, #9a7209);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.add-to-cart-btn i {
  font-size: 18px;
}

.buy-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #cc4a1f);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Components */
@media (max-width: 768px) {
  .action-buttons {
    gap: 12px;
  }
  
  .add-to-cart-btn,
  .buy-now-btn {
    height: 50px;
    font-size: 14px;
  }
  
  .quantity-selector {
    margin: 0 auto 20px;
  }
}

@media (max-width: 480px) {
  .add-to-cart-btn,
  .buy-now-btn {
    height: 48px;
    font-size: 13px;
  }
  
  .add-to-cart-btn i {
    font-size: 16px;
  }
}

/* Responsive Design for Simple Promotional Content */
@media (max-width: 768px) {
  .detail-overview-short-description {
    padding: 16px !important;
    margin-top: 16px !important;
  }
  
  .detail-overview-short-description-title h5 {
    font-size: 16px !important;
  }
  
  .detail-overview-short-description-content-item {
    padding: 6px 0 !important;
  }
  
  .detail-overview-short-description-content-item-main-upper-item {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .detail-overview-short-description {
    padding: 12px !important;
    margin-top: 12px !important;
  }
  
  .detail-overview-short-description-title h5 {
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
  }
  
  .detail-overview-short-description-title h5::after {
    font-size: 14px;
  }
  
  .detail-overview-short-description-content-item {
    padding: 4px 0 !important;
  }
  
  .detail-overview-short-description-content-item-main-upper-item {
    font-size: 12px !important;
  }
}



/* Responsive Design for Product Detail Page */
@media (max-width: 1200px) {
  .detail-content {
    gap: 20px !important;
  }
  
  .detail-pictures {
    flex: 0 0 45% !important;
  }
  
  .detail-overview {
    flex: 0 0 55% !important;
  }
}

@media (max-width: 992px) {
  .detail-content {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .detail-pictures {
    flex: none !important;
    width: 100% !important;
  }
  
  .detail-overview {
    flex: none !important;
    width: 100% !important;
  }
  
  .detail-picture {
    height: 400px !important;
  }
  
  .detail-gallery {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
    margin-left: 24px !important;
  }
  
  .detail-gallery-item {
    width: 100px !important;
    height: 100px !important;
  }
}


@media (max-width: 768px) {
  .detail-content-wapper {
    padding: 15px !important;
  }
  
  .detail-picture {
    height: 350px !important;
  }
  
  .detail-gallery {
    gap: 8px !important;
  }
  
  .detail-gallery-item {
    width: 100px !important;
    height: 100px !important;
    margin-right: 10px;
  }
  
  .detail-overview-title {
    font-size: 20px !important;
    margin-bottom: 15px !important;
  }
  
  .detail-overview-price {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }
  
  .detail-overview-price-old {
    font-size: 14px !important;
  }
  
  .detail-overview-price-new {
    font-size: 20px !important;
  }
  
  .detail-overview-short-description {
    padding: 16px !important;
    margin-top: 16px !important;
  }
  
  .detail-overview-short-description-title h5 {
    font-size: 16px !important;
  }
  
  .detail-overview-short-description-content-item {
    padding: 8px 0 !important;
  }
  
  .detail-overview-short-description-content-item-main-upper-item {
    font-size: 13px !important;
  }
  
  .quantity-selector {
    margin: 0 auto 15px !important;
  }
  
  .quantity-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }
  
  .quantity-input {
    width: 50px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
  
  .action-buttons {
    gap: 12px !important;
  }
  
  .add-to-cart-btn,
  .buy-now-btn {
    height: 50px !important;
    font-size: 14px !important;
  }
  
  
  .related-products-section {
    margin: 40px auto 0 !important;
  }
  
  .related-products-header h3 {
    font-size: 20px !important;
  }
  
  .related-products-carousel {
    margin-top: 20px !important;
  }
  
  .related-products-carousel .slick-slide {
    padding: 0 8px !important;
  }
  
  .related-products-carousel .slick-prev,
  .related-products-carousel .slick-next {
    z-index: 10 !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }
  
  .related-products-carousel .slick-prev {
    left: 10px !important;
  }
  
  .related-products-carousel .slick-next {
    right: 10px !important;
  }
  
  .related-products-carousel .slick-dots {
    bottom: -40px !important;
  }
  
  .related-products-carousel .slick-dots li button:before {
    font-size: 12px !important;
    color: #06c !important;
  }
  
  .category-item {
    width: 100% !important;
    margin-bottom: 15px !important;
  }
}

@media (max-width: 480px) {
  .detail-content-wapper {
    padding: 10px !important;
  }
  
  .detail-picture {
    height: 280px !important;
    padding: 6px !important;
  }
  
  .detail-gallery {
    gap: 6px !important;
    margin-top: 10px !important;
    padding: 0 8px !important;
    justify-content: flex-start !important;
  }
  
  .detail-gallery .slick-prev,
  .detail-gallery .slick-next {
    width: 26px !important;
    height: 26px !important;
    opacity: 0.5 !important;
  }
  
  .detail-gallery .slick-prev {
    left: 1px !important;
  }
  
  .detail-gallery .slick-next {
    right: 1px !important;
  }
  
  .detail-gallery .slick-prev::before,
  .detail-gallery .slick-next::before {
    font-size: 13px !important;
  }
  
  .detail-gallery-item {
    width: 60px !important;
    height: 60px !important;
    margin-right: 10px !important;
    min-width: 60px !important;
    padding: 3px !important;
  }
  
  .detail-gallery-item img {
    border-radius: 3px !important;
  }
  
  .detail-overview-title {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
  }
  
  .detail-overview-price {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  
  .detail-overview-price-old {
    font-size: 12px !important;
  }
  
  .detail-overview-price-new {
    font-size: 18px !important;
  }
  
  .detail-overview-short-description {
    padding: 12px !important;
    margin-top: 12px !important;
  }
  
  .detail-overview-short-description-title h5 {
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
  }
  
  .detail-overview-short-description-title h5::after {
    font-size: 14px;
  }
  
  .detail-overview-short-description-content-item {
    padding: 6px 0 !important;
  }
  
  .detail-overview-short-description-content-item-main-upper-item {
    font-size: 12px !important;
  }
  
  .quantity-selector {
    margin: 0 0 12px 0 !important;
    margin-left: 0 !important;
  }
  
  .quantity-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
  }
  
  .quantity-input {
    width: 45px !important;
    height: 32px !important;
    font-size: 13px !important;
  }
  
  .action-buttons {
    gap: 10px !important;
  }
  
  .add-to-cart-btn,
  .buy-now-btn {
    height: 48px !important;
    font-size: 13px !important;
    width: 100% !important;
  }
  
  .add-to-cart-btn i {
    font-size: 14px !important;
  }
  
  
  .related-products-section {
    margin: 30px auto 0 !important;
  }
  
  .related-products-header h3 {
    font-size: 18px !important;
  }
  
  .related-products-carousel {
    margin-top: 15px !important;
  }
  
  .related-products-carousel .slick-slide {
    padding: 0 6px !important;
  }
  
  .related-products-carousel .slick-prev,
  .related-products-carousel .slick-next {
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.95) !important;
  }
  
  .related-products-carousel .slick-prev {
    left: 0 !important;
  }
  
  .related-products-carousel .slick-next {
    right: 0 !important;
  }
  
  .related-products-carousel .slick-dots {
    bottom: -35px !important;
  }
  
  .related-products-carousel .slick-dots li button:before {
    font-size: 10px !important;
  }
  
  .category-item {
    width: 100% !important;
    margin-bottom: 12px !important;
  }
  
  .category-item-header {
    height: 120px !important;
  }
  
  .category-item-title {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
  
  .category-item-price {
    font-size: 12px !important;
  }
  
  .price-old {
    font-size: 10px !important;
  }
  
  .price-new {
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  .detail-content-wapper {
    padding: 8px !important;
  }
  
  .detail-picture {
    height: 250px !important;
    padding: 4px !important;
  }
  
  .detail-gallery {
    gap: 4px !important;
    margin-top: 8px !important;
    padding: 0 6px !important;
    justify-content: flex-start !important;
  }
  
  .detail-gallery .slick-prev,
  .detail-gallery .slick-next {
    width: 24px !important;
    height: 24px !important;
    opacity: 0.4 !important;
  }
  
  .detail-gallery .slick-prev {
    left: 0px !important;
  }
  
  .detail-gallery .slick-next {
    right: 0px !important;
  }
  
  .detail-gallery .slick-prev::before,
  .detail-gallery .slick-next::before {
    font-size: 12px !important;
  }
  
  .detail-gallery-item {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    padding: 2px !important;
    margin-right: 8px !important;
  }
  
  .detail-gallery-item img {
    border-radius: 2px !important;
  }
  
  .detail-overview-title {
    font-size: 16px !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
  }
  
  .detail-overview-price {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }
  
  .detail-overview-price-old {
    font-size: 11px !important;
  }
  
  .detail-overview-price-new {
    font-size: 16px !important;
  }
  
  .detail-overview-short-description {
    padding: 10px !important;
    margin-top: 10px !important;
  }
  
  .detail-overview-short-description-title h5 {
    font-size: 13px !important;
    letter-spacing: 0.2px !important;
  }
  
  .detail-overview-short-description-title h5::after {
    font-size: 13px;
  }
  
  .detail-overview-short-description-content-item {
    padding: 4px 0 !important;
  }
  
  .detail-overview-short-description-content-item-main-upper-item {
    font-size: 11px !important;
  }
  
  .quantity-selector {
    margin: 0 auto 10px !important;
    margin-left: 0 !important;
  }
  
  .quantity-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 13px !important;
  }
  
  .quantity-input {
    width: 40px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
  
  .action-buttons {
    gap: 8px !important;
  }
  
  .add-to-cart-btn,
  .buy-now-btn {
    height: 44px !important;
    font-size: 12px !important;
  }
  
  .add-to-cart-btn i {
    font-size: 13px !important;
  }
  
  
  .related-products-section {
    margin: 25px auto 0 !important;
  }
  
  .related-products-header h3 {
    font-size: 16px !important;
  }
  
  .related-products-carousel {
    margin-top: 12px !important;
  }
  
  .related-products-carousel .slick-slide {
    padding: 0 4px !important;
  }
  
  .related-products-carousel .slick-prev,
  .related-products-carousel .slick-next {
    width: 32px !important;
    height: 32px !important;
    background: rgba(255, 255, 255, 0.95) !important;
  }
  
  .related-products-carousel .slick-prev {
    left: -16px !important;
  }
  
  .related-products-carousel .slick-next {
    right: -16px !important;
  }
  
  .related-products-carousel .slick-dots {
    bottom: -30px !important;
  }
  
  .related-products-carousel .slick-dots li button:before {
    font-size: 8px !important;
  }
  
  .category-item {
    margin-bottom: 10px !important;
  }
  
  .category-item-header {
    height: 100px !important;
  }
  
  .category-item-title {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
  
  .category-item-price {
    font-size: 11px !important;
  }
  
  .price-old {
    font-size: 9px !important;
  }
  
  .price-new {
    font-size: 12px !important;
  }
}


/* Related Products Carousel Styles */
.related-products-carousel {
  position: relative !important;
  overflow: hidden !important;
}

.related-products-carousel .slick-slide {
  padding: 0 10px 24px 10px !important;
}

/* Related Products Carousel Navigation Buttons */
.related-products-carousel .slick-prev,
.related-products-carousel .slick-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.related-products-carousel .slick-prev {
  left: 10px !important;
}

.related-products-carousel .slick-next {
  right: 10px !important;
}

.related-products-carousel .slick-prev:hover,
.related-products-carousel .slick-next:hover {
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-50%) scale(1.05) !important;
}

.related-products-carousel .slick-prev:before,
.related-products-carousel .slick-next:before {
  font-family: 'iconsax' !important;
  font-size: 18px !important;
  color: #06c !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

.related-products-carousel .slick-prev:before {
  content: '\e8ec' !important;
}

.related-products-carousel .slick-next:before {
  content: '\e9c4' !important;
}

.related-products-carousel .slick-dots {
  position: absolute !important;
  bottom: -45px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.related-products-carousel .slick-dots li {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #e5e5e5 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.related-products-carousel .slick-dots li.slick-active {
  background: #06c !important;
  transform: scale(1.2) !important;
}

.related-products-carousel .slick-dots li button {
  display: none !important;
}

/* Ensure carousel works on all devices */
@media (max-width: 768px) {
  .related-products-carousel .slick-prev,
  .related-products-carousel .slick-next {
    width: 40px !important;
    height: 40px !important;
  }
  
  .related-products-carousel .slick-prev {
    left: 20px !important;
  }
  
  .related-products-carousel .slick-next {
    right: 20px !important;
  }
  
  .related-products-carousel .slick-prev:before,
  .related-products-carousel .slick-next:before {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .related-products-carousel .slick-prev,
  .related-products-carousel .slick-next {
    width: 36px !important;
    height: 36px !important;
  }
  
  .related-products-carousel .slick-prev {
    left: 0 !important;
  }
  
  .related-products-carousel .slick-next {
    right: 0 !important;
  }
  
  .related-products-carousel .slick-prev:before,
  .related-products-carousel .slick-next:before {
    font-size: 14px !important;
  }
}

@media (max-width: 360px) {
  .related-products-carousel .slick-prev,
  .related-products-carousel .slick-next {
    width: 32px !important;
    height: 32px !important;
  }
  
  .related-products-carousel .slick-prev {
    left: -16px !important;
  }
  
  .related-products-carousel .slick-next {
    right: -16px !important;
  }
  
  .related-products-carousel .slick-prev:before,
  .related-products-carousel .slick-next:before {
    font-size: 12px !important;
  }
}

/* Cart Badge Styles */
.cart-button {
  position: relative !important;
}

/* Animation for cart badge when item is added */


/* Responsive cart badge */
@media (max-width: 768px) {
  .cart-badge {
    width: 18px !important;
    height: 18px !important;
    font-size: 11px !important;
    min-width: 18px !important;
    top: 3px !important;
    right: 3px !important;
  }
}

@media (max-width: 480px) {
  .cart-badge {
    width: 16px !important;
    height: 16px !important;
    font-size: 10px !important;
    min-width: 16px !important;
    top: 2px !important;
    right: 2px !important;
  }
}

/* Category Item Styles - From Home Page */
.category {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.category:first-child {
  margin-top: 32px;
}

.category-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  color: #1d1d1f;
  text-align: center;
}

.category-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.homne-category-item {
  position: relative;
  width: auto;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 24px 20px 16px;
}

.category-item:hover {
  border-color: #02010100;
  box-shadow: 1px 1px 28px 0px rgb(0 0 0 / 12%);
}

.category-item-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}

.category-item-header-ratio {
  border-radius: 4px;
  padding: 1px 15px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  position: absolute;
  top: 0;
  left: -5px;
  background: url(../img/price-ratio.png) left center no-repeat;
  width: auto;
  height: 31px;
  background-size: cover;
}

.category-item-header-tag {
  position: absolute;
  top: 12px;
  right: 8px;
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  z-index: 1;
}

.category-item-header-tag.green {
  border: 1px solid green;
  color: green;
}

.category-item-header-tag.red {
  border: 1px solid red;
  color: red;
}

.category-item-header-tag.blue {
  border: 1px solid blue;
  color: blue;
}

.category-item-wrapper-link {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.category-item-img {
  width: 240px;
  height: 240px;
  margin: 25px 0 20px;
}

.category-item-img img {
  width: 100%;
  height: 100%;
}

.category-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-weight: 700;
  line-height: 27px;
  font-size: 18px;
  color: #1d1d1f;
  margin-bottom: 27px;
}

.category-item-price {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.category-item-price .price-old {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: #86868b;
  text-decoration: line-through;
}

.category-item-price .price-new {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #06c;
}

.view-more {
  text-align: center;
}

.view-more-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  padding: 5px 45px;
  border-radius: 8px;
  border: 1px solid #06C;
  color: #06C;
  background-color: transparent;
  vertical-align: middle;
  cursor: pointer;
}

.view-more-btn:hover {
  background-color: #06C;
  color: #fff;
}

/* Related Products Section - Grid Layout Like Home */
.related-products-section {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
  padding: 40px 20px;
}

.related-products-header {
  width: 100%;
  margin-bottom: 32px;
  text-align: center;
}

.related-products-header h4 {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  color: #1d1d1f;
  margin: 0;
}

.related-products-carousel {
  width: 100% !important;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.related-product-item {
  position: relative;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 24px 20px 16px;
  background-color: #FFF;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  margin: 0 5px;
}

.related-product-item:hover {
  border-color: #02010100;
  box-shadow: 1px 1px 28px 0px rgb(0 0 0 / 12%);
}

/* Product Item Styling - Based on Home Page */
.hone-category-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.category-item-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}

.category-item-header-ratio {
  border-radius: 4px;
  padding: 1px 15px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  color: #fff;
  position: absolute;
  top: 0;
  left: -15px;
  background: url(../img/price-ratio.png) left center no-repeat;
  width: auto;
  height: 31px;
  background-size: cover;
}

.category-item-header-tag {
  position: absolute;
  top: 8px;
  right: 0px;
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  z-index: 2;
}

.category-item-header-tag.red {
  border: 1px solid red;
  color: red;
}

.category-item-wrapper-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.category-item-img {
  max-width: 100%;
  max-height: 100%;
  margin: 25px 0 20px;
}

.category-item-img img {
  max-width: 100%;
  max-height: 100%;
}

.category-item-title {
  height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-weight: 700;
  line-height: 27px;
  font-size: 18px;
  color: #1d1d1f;
}

.category-item-price {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.category-item-price .price-old {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  color: #86868b;
  text-decoration: line-through;
}

.category-item-price .price-new {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #06c;
}

/* Responsive Design - Grid Layout */
@media (max-width: 1360px) {
  .related-products-section {
    padding: 30px 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1360px) {
  .related-product-item {
    width: calc(25% - 15px);
  }
}

@media (min-width: 540px) and (max-width: 1023px) {
  .related-products-carousel {
    gap: 15px;
  }
  
  .related-product-item {
    width: calc(33.33% - 13.33px);
  }
}

@media (min-width: 540px) and (max-width: 767px) {
  .related-product-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 539px) {
  .related-products-carousel {
    gap: 10px;
  }
  
  .related-product-item {
    width: calc(50% - 10px);
    padding: 0px;
  }
  
  .category-item-header-tag {
    font-size: 8px;
    line-height: 12px;
  }
  
  .category-item-title {
    padding: 0 15px;
  }
  
  .category-item-price {
    flex-direction: column;
    gap: 0px;
    padding: 0 15px 12px;
  }
  
  .category-item-price .price-old {
    font-size: 10px;
    font-weight: 300;
    line-height: 20px;
    color: #86868b;
    text-decoration: line-through;
  }
  
  .category-item-price .price-new {
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    color: #06c;
  }
}

/* Product Benefits Section */
.product-benefits {
  width: 100%;
  padding: 0 20px;
  /* margin: 20px 0;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e5e5; */
}

.product-benefits-title {
  font-size: 18px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 16px;
  text-align: center;
}

.product-benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.product-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-benefit-item i {
  color: #ff0000 !important;
}

.product-benefit-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06c;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.product-benefit-text {
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1f;
  line-height: 1.4;
  flex: 1;
}

/* Responsive Design for Product Benefits */
@media (max-width: 768px) {
  .product-benefits {
    padding: 16px;
    margin: 16px 0;
  }
  
  .product-benefits-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .product-benefits-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  
  .product-benefit-item {
    padding: 8px 10px;
    gap: 8px;
  }
  
  .product-benefit-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  
  .product-benefit-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .product-benefits {
    padding: 12px;
    margin: 12px 0;
  }
  
  .product-benefits-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .product-benefits-list {
    gap: 6px;
    margin-top: 10px;
  }
  
  .product-benefit-item {
    padding: 6px 8px;
    gap: 6px;
  }
  
  .product-benefit-icon {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
  
  .product-benefit-text {
    font-size: 12px;
  }
}

/* Contact Info & Service Guarantees Section */
.contact-service-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 0;
  display: block !important;
  visibility: visible !important;
}

.contact-service-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px;
  visibility: visible !important;
  opacity: 1 !important;
  text-align: center;
}

/* Hotline Section */
.hotline-section {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hotline-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FF0000;
  text-decoration: none;
}

/* Service Guarantees */
.service-guarantees {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 0;
  visibility: visible !important;
}
/* .service-guarantees {
  display: flex;
  gap: 10px;
  margin-top: 0;
  visibility: visible !important;
} */

.service-guarantee-item {
  display: flex !important;
  align-items: center;
  text-align: left;
  width: 100%;
  gap: 5px;
  padding: 5px;
  transition: all 0.3s ease;
}

.service-guarantee-item i {
  font-size: 24px;
  min-width: 30px;
  text-align: center;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-description {
  font-size: 14px;
  color: #27ae60;
  line-height: 1.4;
}
.service-guarantee-item:first-child .service-description {
  color: #27ae60;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Two Column Layout - Mobile */
  .detail-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .detail-left-column,
  .detail-right-column {
    width: 100%;
  }
  
  .detail-pictures {
    position: static;
  }
  
  .contact-service-wrapper {
    padding: 20px;
    gap: 20px;
    grid-template-columns: 1fr;
  }
  
  .hotline-title {
    font-size: 20px;
  }
  
  .hotline-number {
    font-size: 24px;
  }
  
  .service-guarantees {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-guarantee-item {
    padding: 15px;
    gap: 12px;
  }
  
  .service-title {
    font-size: 14px;
  }
  
  .service-description {
    font-size: 13px;
  }
  
  .service-icon {
    font-size: 20px;
    min-width: 25px;
  }
}

@media (max-width: 480px) {
  .contact-service-section {
    margin: 20px auto;
    padding: 0 10px;
  }
  
  .contact-service-wrapper {
    padding: 15px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .hotline-title {
    font-size: 18px;
  }
  
  .hotline-number {
    font-size: 20px;
  }
  
  .service-guarantee-item {
    padding: 12px;
    gap: 10px;
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.8), 0 0 0 10px rgba(255, 68, 68, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
  }
}

/* Responsive Design for Float Button */
@media (max-width: 768px) {
  .float-hotline-button {
    bottom: 15px;
    right: 15px;
  }
  
  .hotline-button-content {
    padding: 10px 16px;
    min-width: 180px;
  }
  
  .hotline-icon {
    width: 36px;
    height: 36px;
  }
  
  .hotline-icon i {
    font-size: 18px;
  }
  
  .hotline-label {
    font-size: 11px;
  }
  
  .hotline-number {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .float-hotline-button {
    bottom: 10px;
    right: 10px;
  }
  
  .hotline-button-content {
    padding: 8px 14px;
    min-width: 160px;
    border-radius: 40px;
  }
  
  .hotline-icon {
    width: 32px;
    height: 32px;
  }
  
  .hotline-icon i {
    font-size: 16px;
  }
  
  .hotline-label {
    font-size: 10px;
  }
  
  .hotline-number {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .float-hotline-button {
    bottom: 8px;
    right: 8px;
  }
  
  .hotline-button-content {
    padding: 6px 12px;
    min-width: 140px;
    border-radius: 35px;
  }
  
  .hotline-icon {
    width: 28px;
    height: 28px;
  }
  
  .hotline-icon i {
    font-size: 14px;
  }
  
  .hotline-label {
    font-size: 9px;
  }
  
  .hotline-number {
    font-size: 12px;
  }
}

/* Image Navigation Buttons */
.image-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
  z-index: 10;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0.25;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-btn:active {
  transform: scale(0.95);
}

.nav-btn.disabled {
  display: none;
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.nav-btn i {
  font-size: 18px;
  color: #333;
}

.prev-btn {
  margin-right: auto;
}

.next-btn {
  margin-left: auto;
}


/* Mobile responsive for navigation buttons */
@media (max-width: 992px) {
  .nav-btn {
    width: 38px;
    height: 38px;
  }
  
  .nav-btn i {
    font-size: 17px;
  }
  
  .image-navigation {
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  .nav-btn {
    width: 35px;
    height: 35px;
  }
  
  .nav-btn i {
    font-size: 16px;
  }
  
  .image-navigation {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .nav-btn {
    width: 32px;
    height: 32px;
  }
  
  .nav-btn i {
    font-size: 14px;
  }
  
  .image-navigation {
    padding: 0 8px;
  }
}

@media (max-width: 360px) {
  .nav-btn {
    width: 28px;
    height: 28px;
  }
  
  .nav-btn i {
    font-size: 12px;
  }
  
  .image-navigation {
    padding: 0 6px;
  }
}
