/* Enhanced Product Card Styling - Black & Theme Color Design */

/* Main product card container with dark theme */
.card-grid-style-3 {
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.card-grid-style-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Card inner container with dark background */
.card-grid-style-3 .card-grid-inner {
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid #333333;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-grid-style-3:hover .card-grid-inner {
  border-color: #E2B808;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  box-shadow: 0 12px 30px rgba(226, 184, 8, 0.2);
  transition: all 0.3s ease;
}

/* Product image container enhancement */
.card-grid-style-3 .card-grid-inner .image-box {
  position: relative;
  text-align: center;
  width: 100%;
  display: inline-block;
  height: 180px;
  overflow: hidden;
  line-height: 180px;
  margin-bottom: 15px;
  border-radius: 6px;
  background: linear-gradient(45deg, #f8f8f8, #ffffff);
  border: 1px solid #E2B808;
}

.card-grid-style-3 .card-grid-inner .image-box img {
  max-height: 90%;
  max-width: 90%;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.card-grid-style-3:hover .card-grid-inner .image-box img {
  transform: scale(1.05);
}

/* Tools/Action buttons styling */
.card-grid-style-3 .card-grid-inner .tools {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  z-index: 12;
  transition: all 0.3s ease;
}

.card-grid-style-3 .card-grid-inner .tools .btn {
  background: rgba(226, 184, 8, 0.9);
  border: none;
  width: 35px;
  height: 35px;
  margin-bottom: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card-grid-style-3 .card-grid-inner .tools .btn:hover {
  background: #E2B808;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(226, 184, 8, 0.4);
}

/* Product information styling */
.card-grid-style-3 .card-grid-inner .info-right {
  color: #ffffff;
}

.card-grid-style-3 .card-grid-inner .info-right a {
  color: #cccccc !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-grid-style-3 .card-grid-inner .info-right a:hover {
  color: #E2B808 !important;
}

.card-grid-style-3 .card-grid-inner .info-right a.color-brand-3 {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 8px;
  display: block;
}

.card-grid-style-3 .card-grid-inner .info-right a.color-brand-3:hover {
  color: #E2B808 !important;
}

/* Brand text styling */
.card-grid-style-3 .card-grid-inner .info-right a.font-xs {
  color: #E2B808 !important;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Price information styling */
.card-grid-style-3 .card-grid-inner .price-info {
  margin-top: 15px;
  padding: 10px 0;
  border-top: 1px solid #333333;
}

.card-grid-style-3 .card-grid-inner .price-info .price-main {
  color: #E2B808 !important;
  font-size: 20px;
  font-weight: 700;
  margin-right: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* View button styling */
.card-grid-style-3 .card-grid-inner .box-btn-cart {
  margin-top: 15px;
}

.card-grid-style-3 .card-grid-inner .box-btn-cart .btn-cart {
  background: linear-gradient(135deg, #E2B808 0%, #f0c820 100%);
  color: #000000 !important;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 15px rgba(226, 184, 8, 0.3);
}

.card-grid-style-3 .card-grid-inner .box-btn-cart .btn-cart:hover {
  background: linear-gradient(135deg, #f0c820 0%, #E2B808 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 184, 8, 0.4);
  color: #000000 !important;
}

/* Product features list styling */
.card-grid-style-3 .card-grid-inner .list-features {
  padding-left: 0;
  margin: 15px 0 0 0;
  border-top: 1px solid #333333;
  padding-top: 15px;
}

.card-grid-style-3 .card-grid-inner .list-features li {
  color: #cccccc;
  font-size: 11px;
  line-height: 20px;
  list-style: none;
  padding: 2px 0;
  position: relative;
  padding-left: 15px;
}

.card-grid-style-3 .card-grid-inner .list-features li:before {
  content: "•";
  color: #E2B808;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-grid-style-3 .card-grid-inner {
    padding: 15px;
  }
  
  .card-grid-style-3 .card-grid-inner .image-box {
    height: 150px;
    line-height: 150px;
  }
  
  .card-grid-style-3 .card-grid-inner .tools {
    width: 30px;
    top: 15px;
    right: 15px;
  }
  
  .card-grid-style-3 .card-grid-inner .tools .btn {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
}

/* Special effects for premium feel */
.card-grid-style-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(226, 184, 8, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.card-grid-style-3:hover::before {
  opacity: 1;
}

.card-grid-style-3 .card-grid-inner {
  position: relative;
  z-index: 2;
}