/* Spacing */
.mt-50 {
  margin-top: 50px;
}

/* Compact Product Card */
.product-card-compact {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card-compact:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Product Content Layout */
.product-compact-content {
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 30px;
}

/* Logo Section */
.product-compact-logo {
  flex-shrink: 0;
}

.product-compact-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card-compact:hover .product-compact-logo img {
  transform: scale(1.05);
}

/* Info Section */
.product-compact-info {
  flex: 1;
}

.product-compact-info h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  margin-top: 0;
}

.product-compact-description {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Compact Button */
.product-compact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #333;
  padding: 8px 20px;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-compact-btn:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
  transform: translateX(3px);
}

.product-compact-btn .icon {
  transition: transform 0.3s ease;
  font-size: 0.85em;
}

.product-compact-btn:hover .icon {
  transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 767px) {
  .product-compact-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }
  
  .product-compact-logo img {
    width: 80px;
  }
  
  .product-compact-info h3 {
    font-size: 1.3em;
  }
  
  .product-compact-description {
    font-size: 0.9em;
  }
  
  .product-compact-btn {
    font-size: 0.85em;
    padding: 7px 18px;
  }
}

@media (max-width: 480px) {
  .product-compact-content {
    padding: 20px 15px;
  }
  
  .product-compact-logo img {
    width: 70px;
  }
  
  .product-compact-info h3 {
    font-size: 1.2em;
  }
}

