.sod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  padding: 20px;
}

.sod-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: fadeIn 1s ease;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sod-img {
  position: relative;
}
.sod-img img {
  width: 100%;
  height: auto;
  display: block;
}
.sod-ribbon {
  position: absolute;
  top: 10px;
  right: 0;
  background: #014421;
  color: #FFD700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  font-weight: bold;
}

.sod-info {
  padding: 15px;
  text-align: center;
}

.sod-title {
  font-size: 1rem;
  margin: 10px 0;
  color: #222;
  min-height: 44px;
}
.sod-price-old {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.sod-price-new {
  font-weight: bold;
  color: #014421;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.sod-time {
  color: #014421;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.sod-button {
  background-color: #014421;
  color: #FFD700;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.sod-button:hover {
  background-color: #026d3c;
  color: #ffeb7a;
}

@media (max-width: 600px) {
  .sod-grid {
    grid-template-columns: 1fr;
  }
}
