/* === COMPARISON TABLE === */
.ebc-compare-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.ebc-compare-link {
    font-size: 12px;
    color: var(--ebc-gray-500);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.ebc-compare-link:hover {
    color: var(--ebc-blue);
}
.ebc-table-wrapper {
    overflow-x: auto;
    margin-top: 0;
}
.ebc-compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--ebc-radius);
    overflow: hidden;
    box-shadow: var(--ebc-shadow);
}
.ebc-compare-table thead {
    background: var(--ebc-gray-100);
}
.ebc-compare-table th {
    padding: 14px 20px;
    text-align: left;
    color: var(--ebc-gray-600);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid var(--ebc-gray-200);
}
.ebc-compare-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--ebc-gray-700);
    border-bottom: 1px solid var(--ebc-gray-200);
}
.ebc-compare-table td small {
    display: block;
    font-size: 11px;
    color: var(--ebc-gray-400);
    margin-top: 2px;
}
.ebc-compare-table tbody tr:hover {
    background: var(--ebc-gray-50);
}
.ebc-compare-table tbody tr:last-child td {
    border-bottom: none;
}
.ebc-table-note {
    font-size: 12px;
    color: var(--ebc-gray-400);
    margin-top: 12px;
    text-align: center;
}

/* === FAQ === */
.ebc-faq-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}
.ebc-faq-intro p {
    font-size: 14px;
    color: var(--ebc-gray-500);
    line-height: 1.7;
    margin-top: 12px;
}
.ebc-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ebc-faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ebc-faq-item {
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.ebc-faq-item:hover {
    border-color: var(--ebc-gray-300);
}
.ebc-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--ebc-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--ebc-navy);
    text-align: left;
    gap: 12px;
}
.ebc-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--ebc-gray-400);
}
.ebc-faq-item.active .ebc-faq-icon {
    transform: rotate(180deg);
}
.ebc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.ebc-faq-item.active .ebc-faq-answer {
    max-height: 300px;
}
.ebc-faq-answer p {
    padding: 0 18px 14px;
    font-size: 14px;
    color: var(--ebc-gray-600);
    line-height: 1.7;
}

/* === CTA === */
.ebc-cta-inner {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    background: #e8edf6;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}
.ebc-cta-shape {
    position: absolute;
    border-radius: 8px;
    background: rgba(30, 64, 175, 0.08);
}
.ebc-cta-shape-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -20px;
    transform: rotate(15deg);
}
.ebc-cta-shape-2 {
    width: 80px;
    height: 180px;
    bottom: -40px;
    left: 60px;
    transform: rotate(-8deg);
}
.ebc-cta-shape-3 {
    width: 160px;
    height: 100px;
    top: -10px;
    right: -30px;
    transform: rotate(12deg);
}
.ebc-cta-inner h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--ebc-navy);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.ebc-cta-inner p {
    color: var(--ebc-gray-500);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.ebc-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* === RELATED TOOLS === */
.ebc-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.ebc-tool-card {
    padding: 24px 20px;
    background: var(--ebc-gray-50);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius);
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}
.ebc-tool-card:hover {
    border-color: var(--ebc-blue-light);
    box-shadow: var(--ebc-shadow-md);
    transform: translateY(-2px);
}
.ebc-tool-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: var(--ebc-navy);
    border-radius: 10px;
    color: var(--ebc-white);
}
.ebc-tool-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--ebc-navy);
    margin-bottom: 0;
}

/* Colored icon variants */
.ebc-icon-blue { background: #dbeafe; color: #1d4ed8; }
.ebc-icon-indigo { background: #e0e7ff; color: #4338ca; }
.ebc-icon-purple { background: #ede9fe; color: #7c3aed; }
.ebc-icon-cyan { background: #cffafe; color: #0891b2; }
.ebc-icon-green { background: #dcfce7; color: #16a34a; }
.ebc-icon-orange { background: #ffedd5; color: #ea580c; }
.ebc-icon-rose { background: #ffe4e6; color: #e11d48; }
.ebc-icon-teal { background: #ccfbf1; color: #0d9488; }

/* === FOOTER === */
.ebc-site-footer {
    background: var(--ebc-navy);
    padding: 60px 0 0;
    color: var(--ebc-gray-400);
}
.ebc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.ebc-footer-logo {
    margin-bottom: 16px;
}
.ebc-footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.ebc-footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.ebc-footer-social {
    display: flex;
    gap: 12px;
}
.ebc-footer-social a {
    color: var(--ebc-gray-400);
    transition: color 0.2s;
}
.ebc-footer-social a:hover {
    color: var(--ebc-white);
}
.ebc-footer-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--ebc-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ebc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ebc-footer-links li {
    margin-bottom: 10px;
}
.ebc-footer-links a {
    color: var(--ebc-gray-400);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.ebc-footer-links a:hover {
    color: var(--ebc-white);
}
.ebc-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--ebc-gray-700);
    font-size: 13px;
}
.ebc-footer-bottom-links {
    display: flex;
    gap: 20px;
}
.ebc-footer-bottom-links a {
    color: var(--ebc-gray-400);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.ebc-footer-bottom-links a:hover {
    color: var(--ebc-white);
}

/* Newsletter */
.ebc-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ebc-newsletter-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--ebc-gray-700);
    border-radius: var(--ebc-radius-sm);
    background: var(--ebc-navy-light);
    color: var(--ebc-white);
    font-size: 13px;
    font-family: var(--ebc-font);
}
.ebc-newsletter-input::placeholder {
    color: var(--ebc-gray-500);
}
.ebc-newsletter-btn {
    width: 100%;
    padding: 10px 14px;
    background: var(--ebc-green);
    color: var(--ebc-white);
    border: none;
    border-radius: var(--ebc-radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--ebc-font);
    cursor: pointer;
    transition: background 0.2s;
}
.ebc-newsletter-btn:hover {
    background: var(--ebc-green-dark);
}

/* Hide GP default footer content but keep wrapper for our custom footer */
.site-footer .footer-widgets-container,
.site-footer .site-info {
    display: none !important;
}

/* ============================================================
   SHARED CONTENT UTILITIES (used by PayPal, eBay country pages)
   ============================================================ */

/* Info grid — 2-col card grid */
.ebc-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 20px 0;
}
.ebc-info-card {
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius);
    padding: 20px;
}
.ebc-info-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--ebc-navy);
    margin-bottom: 8px;
}
.ebc-info-card p,
.ebc-info-card ul {
    font-size: 13px;
    color: var(--ebc-gray-500);
    line-height: 1.65;
    margin: 0;
}
.ebc-info-card ul {
    padding-left: 18px;
}
.ebc-info-card ul li {
    margin-bottom: 4px;
}

/* Content table */
.ebc-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: var(--ebc-radius);
    border: 1px solid var(--ebc-gray-200);
}
.ebc-content-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.ebc-content-table thead {
    background: var(--ebc-gray-50);
}
.ebc-content-table th {
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: var(--ebc-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid var(--ebc-gray-200);
    white-space: nowrap;
}
.ebc-content-table td {
    padding: 10px 16px;
    color: var(--ebc-gray-700);
    border-bottom: 1px solid var(--ebc-gray-100);
}
.ebc-content-table tbody tr:last-child td { border-bottom: none; }
.ebc-content-table tbody tr:hover { background: var(--ebc-gray-50); }

/* Check list */
.ebc-check-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.ebc-check-list li {
    font-size: 14px;
    color: var(--ebc-gray-600);
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
}
.ebc-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ebc-green-dark);
    font-weight: 700;
}

/* Steps ordered list */
.ebc-steps-list {
    padding-left: 22px;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ebc-steps-list li {
    font-size: 14px;
    color: var(--ebc-gray-600);
    line-height: 1.6;
    padding-left: 6px;
}

/* Note block */
.ebc-note-block {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-left: 3px solid #F59E0B;
    border-radius: 0 var(--ebc-radius-sm) var(--ebc-radius-sm) 0;
    padding: 12px 16px;
    margin: 16px 0;
}
.ebc-note-block p {
    font-size: 13px;
    color: #92400E;
    margin: 0;
    line-height: 1.6;
}

/* Note text (inline small note) */
.ebc-note-text {
    font-size: 12px;
    color: var(--ebc-gray-400);
    line-height: 1.5;
}

/* FAQ list (simple accordion variant) */
.ebc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

/* Section title left-aligned variant */
.ebc-section-title.ebc-left {
    text-align: left;
}

/* Alternate section background */
.ebc-bg-alt {
    background: var(--ebc-gray-50);
}

/* Content section padding */
.ebc-content-section {
    padding: 48px 0;
}
.ebc-content-section p {
    font-size: 14px;
    color: var(--ebc-gray-600);
    line-height: 1.75;
    margin-bottom: 12px;
}
.ebc-content-section p:last-child { margin-bottom: 0; }
.ebc-content-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ebc-navy);
    margin: 20px 0 8px;
}
.ebc-content-section ul:not(.ebc-check-list) {
    padding-left: 20px;
    margin: 8px 0;
}
.ebc-content-section ul:not(.ebc-check-list) li {
    font-size: 14px;
    color: var(--ebc-gray-600);
    line-height: 1.7;
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .ebc-info-grid { grid-template-columns: 1fr; }
}

button.ebc-faq-question:hover, button.ebc-faq-question:focus, button.ebc-faq-question:active { background: transparent !important; color: var(--ebc-navy) !important; }
