.limited-offer-section {
  background: linear-gradient(145deg, #0e0e0e, #101010);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-size: 36px;
  color: #00d8ff;
  margin-bottom: 10px;
  animation: fadeInDown 0.8s ease-out forwards;
}

.section-subtitle {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out forwards;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.offer-card {
  background: rgba(26, 26, 26, 0.95);
  border: 2px solid #00d8ff44;
  border-radius: 16px;
  width: 100%;
  max-width: 320px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: zoomIn 0.8s ease forwards;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  position: relative;
}

.offer-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px #00d8ff55;
}

.offer-card * {
  text-decoration: none !important;
}

.offer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  animation: fadeInRight 1s ease forwards;
}

.offer-content h3 {
  font-size: 20px;
  color: #00d8ff;
  margin-bottom: 8px;
}

.price {
  font-size: 18px;
  color: #00ff99;
  font-weight: bold;
  margin-bottom: 8px;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  font-size: 15px;
  margin-left: 10px;
}

.offer-desc {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 10px;
}

.countdown {
  font-size: 16px;
  font-weight: bold;
  color: #ff4d4d;
  background: #1f1f1f;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  animation: pulse 1s infinite;
  box-shadow: 0 0 10px #ff4d4d88;
}

.ribbon {
  position: absolute;
  top: 12px;
  right: -38px;
  background: #ff4d4d;
  color: #fff;
  padding: 6px 40px;
  font-size: 13px;
  font-weight: bold;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.ribbon::before,
.ribbon::after {
  content: '';
  position: absolute;
  bottom: -2px;
  border: 10px solid transparent;
  z-index: -1;
}

.ribbon::before {
  left: 0;
  border-right-color: #c0392b;
}

.ribbon::after {
  right: 0;
  border-left-color: #c0392b;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px #ff4d4d88; }
  50% { box-shadow: 0 0 20px #ff4d4dff; }
}

/* Responsive */
@media (max-width: 992px) {
  .offer-card { max-width: 45%; }
}
@media (max-width: 600px) {
  .offer-card { max-width: 100%; }
}
