/*
.source-sec {
  padding: 40px 0;
}

.deals-banner {
  height: 200px;
  background: linear-gradient(135deg, #4caf50, #81c784);
  margin-bottom: 40px;
  border-radius: 8px;
}

.deals-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px 0;
}
*/

.deals-thumb {
  background: #fff;
  border-radius: 12px;
  padding: 10px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.deals-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.deals-thumb img {
  width: 100%;
  /* height: 200px; */
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.special-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  border-radius: 8px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
}

.placeholder-content {
  text-align: center;
}

.placeholder-text {
  color: #999;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/*
.deals-thumb h3 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #333;
  font-weight: bold;
}

.deals-thumb p {
  color: #666;
  margin: 10px 0;
  font-size: 0.9rem;
}

.special-description {
  color: #555;
  margin: 15px 0;
  line-height: 1.5;
}

.discount-info {
  margin: 15px 0;
}

.discount-badge {
  background: #ff6b35;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
}

.special-terms {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-size: 0.85rem;
  color: #666;
  border-left: 3px solid #4caf50;
}

.promo-code {
  background: #e8f5e8;
  padding: 10px;
  border-radius: 6px;
  margin: 15px 0;
  font-family: monospace;
  border: 2px dashed #4caf50;
}

.shop-deal-btn {
  display: inline-block;
  background: #4caf50;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-deal-btn:hover {
  background: #45a049;
  color: white;
  text-decoration: none;
}

.no-specials {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-specials p {
  font-size: 1.2rem;
}
*/
@media (max-width: 768px) {
  .deals-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .deals-thumb {
    padding: 15px;
  }
  
  .deals-thumb h3 {
    font-size: 1.3rem;
  }
}
