.redirect-foto-section {
  box-sizing: border-box;
  padding: 3.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #fff8e1 0%, #fff3c4 50%, #fff9e6 100%);
}

.redirect-foto-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.redirect-foto-card {
  width: 100%;
  padding: 2.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255,243,205,0.9), rgba(255,242,153,0.95));
  box-shadow: 0 10px 30px rgba(99,102,241,0.06), 0 4px 14px rgba(0,0,0,0.06) inset;
  position: relative;
  overflow: hidden;
  animation: floatIn 750ms cubic-bezier(.22,.9,.3,1) both;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 300ms cubic-bezier(.22,.9,.3,1), box-shadow 300ms ease;
}

.redirect-foto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(99,102,241,0.1), 0 4px 14px rgba(0,0,0,0.06) inset;
}

.card-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://kreativstudioweide.de/gallery/tatto-fashion-os/images/DSC09716.JPG');
  opacity: 0.4;
  z-index: 0;
}

.card-accent-strip {
  position: absolute;
  left: -30%;
  top: -40%;
  width: 160%;
  height: 220%;
  transform: rotate(-18deg);
  background: linear-gradient(90deg, rgba(255,226,89,0.12), rgba(255,196,37,0.14));
  filter: blur(22px);
  z-index: 0;
  animation: slowSpin 18s linear infinite;
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.card-icon-wrap {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #fff, #fff7d6);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  animation: popIn 600ms cubic-bezier(.22,.9,.3,1) 120ms both;
}

.card-icon-svg {
  width: 42px;
  height: 42px;
}

.card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: #4b3b00;
  margin: 0;
}

.card-subtext {
  font-family: Inter, sans-serif;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: rgba(27,27,27,0.68);
  margin: 0;
}

.card-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #ffd93d, #ffb700);
  color: #4b3b00;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255,183,0,0.3);
  transition: all 250ms cubic-bezier(.22,.9,.3,1);
  margin-top: 0.5rem;
}

.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,183,0,0.4);
  background: linear-gradient(135deg, #ffe156, #ffc107);
}

.card-button:active {
  transform: translateY(0);
}

.card-dots {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle at 10px 10px, rgba(0,0,0,0.04) 2px, transparent 2px);
  background-size: 18px 18px;
  transform: rotate(12deg);
  animation: dotsFloat 6s ease-in-out infinite;
  pointer-events: none;
}

/* Responsive */

@media (max-width: 768px) {
  .redirect-foto-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .redirect-foto-card {
    padding: 1.75rem;
  }
}

@media (max-width: 420px) {
  .redirect-foto-section {
    padding: 2rem .75rem;
  }
  .card-icon-wrap {
    width: 64px;
    height: 64px;
  }
  .card-title {
    font-size: 1.2rem;
  }
  .redirect-foto-card {
    padding: 1.25rem;
    border-radius: .75rem;
  }
  .card-button {
    width: 100%;
    justify-content: center;
  }
}

/* Animations */

@keyframes floatIn {
  from { transform: translateY(18px) scale(.995); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(.86); opacity: 0; }
  60% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes slowSpin {
  from { transform: rotate(-18deg); }
  to { transform: rotate(342deg); }
}

@keyframes dotsFloat {
  0%,100% { transform: translateY(0) rotate(12deg); }
  50% { transform: translateY(-8px) rotate(12deg); }
}