/* Szállítás és fizetés oldal */
.szallitas-fizetes {
    padding: 50px 10px;
}
.szallitas-fizetes > div {
    max-width: 1024px;
    margin: 0 auto;
}
.szallitas-fizetes h1 {
    font-size: 34px;
    margin: 20px 0 50px;
    font-weight: 700;
}
.szallitas-fizetes h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
}
.szallitas-fizetes > div > p,
.sf-section > p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* Sections */
.sf-section {
    margin: 0 0 60px;
}

/* Szállítási díj táblázat */
.sf-table {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 20px;
}
.sf-table-header {
    display: flex;
    background: black;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sf-table-header > div {
    padding: 14px 20px;
}
.sf-table-header > div:first-child {
    flex: 1;
}
.sf-table-header > div:last-child {
    width: 160px;
    text-align: right;
}
.sf-table-row {
    display: flex;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}
.sf-table-row > div:first-child {
    flex: 1;
    padding: 16px 20px;
}
.sf-table-row > div:first-child strong {
    display: block;
    font-size: 16px;
    margin: 0 0 4px;
}
.sf-table-row > div:first-child span {
    font-size: 13px;
    color: #888;
}
.sf-price {
    width: 160px;
    text-align: right;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 700;
}

/* Info notice */
.sf-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f5f5f5;
    border-left: 3px solid black;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}
.sf-notice img {
    width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.sf-notice p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Futárszolgálatok */
.sf-carriers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.sf-carrier {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 200ms;
}
.sf-carrier:hover {
    border-color: black;
}
.sf-carrier-icon {
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
}
.sf-carrier h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
}
.sf-carrier > p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 16px;
}
.sf-carrier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sf-carrier ul li {
    font-size: 14px;
    padding: 6px 0;
    border-top: 1px solid #f0f0f0;
    color: #333;
}
.sf-carrier ul li::before {
    content: "✓";
    margin-right: 8px;
    color: #00C853;
    font-weight: 700;
}

/* Fizetési módok */
.sf-payments {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sf-payment {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    transition: border-color 200ms;
}
.sf-payment:hover {
    border-color: black;
}
.sf-payment-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sf-payment h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}
.sf-payment p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* GYIK */
.sf-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.sf-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
.sf-faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}
.sf-faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}
.sf-faq-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .szallitas-fizetes h1 {
        font-size: 28px;
        margin: 16px 0 32px;
    }
    .sf-carriers {
        grid-template-columns: 1fr;
    }
    .sf-table-header > div:last-child,
    .sf-price {
        width: 120px;
        font-size: 16px;
    }
    .sf-table-row > div:first-child span {
        font-size: 12px;
    }
    .sf-payment {
        flex-direction: column;
        gap: 12px;
    }
    .sf-section {
        margin: 0 0 40px;
    }
}
