
.payment-section {
    padding: 80px 0;
}

.payment-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #494cff  0%, #91bcfb  100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.payment-card:hover::before {
    transform: scaleX(1);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(56, 53, 255, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #494cff  0%, #91bcfb  100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(56, 53, 255, 0.3);
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.card-content {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.card-content p {
    margin-bottom: 15px;
}

.highlight {
    color: #494cff ;
    font-weight: 600;
}

.delivery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 80px;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subheading {
    text-align: center;
    color: #494cff ;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.delivery-card {
    background: white;
    border-radius: 15px;
    padding: 35px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.delivery-card:hover {
    border-left-color: #494cff ;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(53, 67, 255, 0.1);
}

.delivery-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.delivery-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.delivery-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #494cff  0%, #91bcfb  100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.method-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.method-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #494cff  0%, #91bcfb  100%);
    color: white;
    box-shadow: 0 10px 30px rgba(56, 53, 255, 0.3);
}

.method-item:hover .method-icon {
    color: white;
}

.method-icon {
    font-size: 40px;
    color: #494cff ;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.method-name {
    font-weight: 600;
    font-size: 15px;
}

.info-banner {
    background: linear-gradient(135deg, #494cff  0%, #91bcfb  100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 20px 60px rgba(56, 53, 255, 0.3);
}

.info-banner h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.info-banner p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 36px;
    }

    .payment-card {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
