/* 
 * PCF Plugin Styles 
 * Theme: Pink Glassmorphism & SEO Additions
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
    --pcf-primary: #FF1A75;
    --pcf-primary-light: #FF4D8D;
    --pcf-bg: #FFF5F8;
    --pcf-text: #333333;
    --pcf-text-light: #666666;
    --pcf-glass-bg: rgba(255, 255, 255, 0.9);
    --pcf-glass-border: rgba(255, 255, 255, 1);
    --pcf-shadow: 0 8px 32px 0 rgba(255, 26, 117, 0.1);
}

.pcf-container {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    max-width: 1000px;
    margin: 40px auto;
    color: var(--pcf-text);
    box-sizing: border-box;
}

.pcf-container * {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    box-sizing: border-box;
}

/* Typography Overrides */
.pcf-container h2,
.pcf-container h3 {
    margin-top: 0;
    line-height: 1.3;
}

.pcf-container p {
    margin-top: 0;
    line-height: 1.5;
}

/* Top Sections (Cards) */
.pcf-top-sections {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .pcf-top-sections {
        flex-direction: column;
    }
}

.pcf-card {
    flex: 1;
    background: var(--pcf-glass-bg);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--pcf-shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pcf-card-top {
    justify-content: flex-start !important;
}

/* Split Card (Image + Text) */
.pcf-split-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.pcf-image-col {
    flex: 0 0 45%;
}

.pcf-image-col img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.pcf-text-col {
    flex: 1;
}

@media (max-width: 600px) {
    .pcf-split-card {
        flex-direction: column;
    }
}

/* Typography for Cards */
.pcf-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #111 !important;
    margin-bottom: 15px !important;
}

.pcf-title b,
.pcf-title strong {
    color: var(--pcf-primary);
}

.pcf-title-black {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #000 !important;
    margin-bottom: 10px !important;
}

.pcf-title-black b,
.pcf-title-black strong {
    color: var(--pcf-primary);
}

.pcf-desc-long {
    font-size: 13px !important;
    color: #444 !important;
    line-height: 1.6 !important;
}

/* Benefits List */
.pcf-benefits-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 10px;
}

.pcf-benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    font-size: 14px;
    color: #444;
}

.pcf-ben-icon {
    display: flex;
    color: var(--pcf-primary);
}

.pcf-desc-shipping {
    font-size: 14px !important;
    color: var(--pcf-text-light) !important;
    margin-bottom: 20px !important;
}

.pcf-shipping-card {
    justify-content: flex-start;
}

.pcf-flex-grow {
    flex-grow: 1;
    align-content: center;
}

.pcf-shipping-bottom-details {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 26, 117, 0.2);
}

.pcf-shipping-subtitle {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #111 !important;
    margin: 0 0 10px 0 !important;
}

.pcf-carriers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.pcf-carrier-badge {
    background: rgba(255, 26, 117, 0.05);
    border: 1px solid rgba(255, 26, 117, 0.2);
    color: #444;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pcf-carrier-badge .pcf-ben-icon {
    display: flex;
    color: var(--pcf-primary);
}

/* Cities Grid */
.pcf-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pcf-city-badge {
    background: #FFF;
    border: 1px solid rgba(255, 26, 117, 0.2);
    color: var(--pcf-primary-light);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(255, 26, 117, 0.05);
}

.pcf-city-icon {
    display: flex;
}

.pcf-footer-note {
    font-size: 12px !important;
    color: #888 !important;
    margin-bottom: 0 !important;
}

/* Bottom Card (Pink Solid) */
.pcf-bottom-card {
    background: linear-gradient(135deg, #ffd1e3 0%, #ffb6d3 100%);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(255, 26, 117, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Insurance Banner */
.pcf-insurance-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--pcf-primary);
    box-shadow: 0 4px 15px rgba(255, 26, 117, 0.1);
    width: 100%;
}

.pcf-insurance-icon {
    display: flex;
}

/* Credit Options Grid */
.pcf-credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.pcf-credit-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    transition: transform 0.2s;
}

.pcf-credit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.pcf-credit-logo {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

.pcf-logo-addi {
    color: #00C6D2;
}

.pcf-logo-sistecredito {
    color: #1665C1;
}

.pcf-logo-bogota {
    color: #00458B;
}

.pcf-logo-reportados {
    color: var(--pcf-primary);
}

.pcf-credit-item p {
    font-size: 13px !important;
    color: #444 !important;
    margin: 0 !important;
}

/* Action Content (WhatsApp) */
.pcf-action-content {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.pcf-action-title {
    color: #FFF !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

.pcf-action-desc {
    color: #FFF !important;
    font-size: 15px !important;
    margin-bottom: 25px !important;
}

/* WhatsApp Button */
.pcf-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF;
    color: #111 !important;
    text-decoration: none !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.pcf-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #f0f0f0;
}

/* FAQ Section (Lightweight Native Accordion) */
.pcf-faq-section {
    margin-top: 40px;
}

.pcf-faq-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    text-align: center;
    color: #111 !important;
}

.pcf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pcf-faq-item {
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 26, 117, 0.1);
}

.pcf-faq-q {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
    font-size: 16px;
}

.pcf-faq-q::-webkit-details-marker {
    display: none;
}

.pcf-faq-toggle {
    font-size: 24px;
    color: var(--pcf-primary);
    transition: transform 0.3s;
    line-height: 1;
}

.pcf-faq-item[open] .pcf-faq-toggle {
    transform: rotate(45deg);
    /* Turns the + into an x when open */
}

.pcf-faq-a {
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}