.product-detail-container {
  padding: 40px 0;
}

.product-detail-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.product-gallery {
  flex: 0 0 45%;
  max-width: 45%;
  padding: 0 15px;
}

.product-gallery-main {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.product-gallery-thumb {
  width: 80px;
  height: 80px;
  margin: 0 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.product-gallery-thumb.active {
  border-color: #e91e63;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 0 15px;
}

.product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.product-price {
  margin-bottom: 25px;
}

.current-price {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

#csCard {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

#csCard[data-active="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.product-description {
  margin-bottom: 30px;
  line-height: 1.7;
  color: #555;
}

.product-meta {
  margin-bottom: 30px;
}

.product-meta-item {
  margin-bottom: 10px;
  display: flex;
}

.product-meta-label {
  font-weight: 600;
  min-width: 120px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  border: none;
}

.whatsapp-button:hover {
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.whatsapp-button i {
  font-size: 1.3rem;
  margin-right: 10px;
}


.cs-btn {
  text-decoration: none;
  color: white;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #25D366;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.3s ease;
}

.cs-btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
}

.cs-btn .wa-icon {
  font-size: 1.1rem;
  margin-right: 6px;
}

.cs-btn i.fa-whatsapp {
  font-size: 1.1rem;
  margin-right: 6px;
}

.related-products {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.related-products-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  color: #333;
}

.related-products-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #e91e63;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-header {
  margin-bottom: 30px;
}

.breadcrumb {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
}

.breadcrumb a {
  color: #777;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb a:hover {
  color: #238f8c;
}

.breadcrumb span {
  color: #333;
  font-weight: 600;
}

.category-description {
  margin-top: 15px;
  line-height: 1.6;
  color: #666;
}

.no-products-message {
  text-align: center;
  padding: 40px 0;
  color: #777;
  font-size: 18px;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
  margin-bottom: 30px;
}

.filter-button {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.filter-button:hover {
  background-color: #c2185b;
}

@media (max-width: 991px) {

  .product-gallery,
  .product-info {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-info {
    margin-top: 30px;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .product-title {
    font-size: 24px;
  }

  .current-price {
    font-size: 20px;
  }

  .old-price {
    font-size: 16px;
  }

  .product-gallery-thumb {
    width: 60px;
    height: 60px;
  }
}