/* ===================================
   Gift Guarantee Section
   Unsere Glücks-Garantie
   =================================== */

.gift-guarantee {
    padding: 100px 0;
    background: white;
    position: relative;
}

.gift-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(97, 0, 0, 0.1), transparent);
}

/* Guarantee Card */
.guarantee-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #610000 0%, #FFD700 50%, #610000 100%);
}

/* Guarantee Icon */
.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(97, 0, 0, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 3;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(97, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(97, 0, 0, 0.3);
    }
}

/* Guarantee Title */
.guarantee-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #2a0000;
    margin-bottom: 40px;
}

/* Guarantee Features */
.guarantee-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.guarantee-item:nth-child(1) { animation-delay: 0.2s; }
.guarantee-item:nth-child(2) { animation-delay: 0.4s; }
.guarantee-item:nth-child(3) { animation-delay: 0.6s; }
.guarantee-item:nth-child(4) { animation-delay: 0.8s; }

.guarantee-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.guarantee-item svg {
    width: 24px;
    height: 24px;
    stroke: #4CAF50;
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-item div h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2a0000;
    margin-bottom: 8px;
}

.guarantee-item div p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .gift-guarantee {
        padding: 60px 0;
    }
    
    .guarantee-card {
        margin: 0 20px;
        padding: 40px 20px;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guarantee-item {
        padding: 16px;
    }
    
    .guarantee-item div h3 {
        font-size: 16px;
    }
    
    .guarantee-item div p {
        font-size: 13px;
    }
}
