.shadow-pricing {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

/* Color bindings: only border, header, and button */
.border-free {
    border-color: var(--lph-color-grey) !important;
}

.border-basic {
    border-color: var(--lph-color-glacier) !important;
}

.border-unlimited {
    border-color: var(--lph-color-bluewood) !important;
}

.btn-free, .bg-free {
	background-color: var(--lph-color-grey) !important;
}

.btn-basic, .bg-basic {
	background-color: var(--lph-color-glacier) !important;
}

.btn-unlimited, .bg-unlimited {
	background-color: var(--lph-color-bluewood) !important;
}

.btn-free {
	border-color: var(--lph-color-grey) !important;
}

.btn-basic {
	border-color: var(--lph-color-glacier) !important;
}

.btn-unlimited {
	border-color: var(--lph-color-bluewood) !important;
}

.btn-free:hover, .btn-basic:hover, .btn-unlimited:hover {
	filter: brightness(0.95);
}

.billing-toggle {
	display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
}

.billing-toggle .toggle {
	position: relative; 
    width: 50px;
    height: 25px;
    border-radius: 999px;
	background: #eef2f6;
    cursor: pointer;
    transition: background .2s ease;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.billing-toggle .toggle::after {
	content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
	background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    transition: transform .2s ease;
}

.billing-toggle input:checked + .toggle { background: #d7f3e0; }
.billing-toggle input:checked + .toggle::after { transform: translateX(28px); }
.billing-toggle .label-monthly, .billing-toggle .label-yearly { color: #6c757d; }
.billing-toggle input:not(:checked) ~ .label-monthly { color: #212529; }
.billing-toggle input:checked ~ .label-yearly { color: #212529; }

/* Monthly/Yearly visibility */
.billing-yearly .price-monthly {
    display: none !important;
}

.billing-yearly .price-yearly {
    display: block !important;
}

.lph-wp-safari-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

.lph-wp-safari-carousel-layout {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lph-wp-safari-carousel-main {
    flex: 1;
    min-width: 0;
}

.lph-wp-safari-carousel-btn {
    width: 40px;
    height: 40px;
    background-color: #6c757d;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.lph-wp-safari-carousel-btn:hover {
    background-color: #5c636a;
}

.lph-wp-safari-carousel-btn-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.lph-wp-safari-carousel-btn-prev .lph-wp-safari-carousel-btn-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.lph-wp-safari-carousel-btn-next .lph-wp-safari-carousel-btn-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.lph-wp-safari-carousel-btn-desktop {
    display: flex;
}

.lph-wp-safari-carousel-btn-mobile {
    display: none;
}

.lph-wp-safari-window {
    background-color: #1c1c1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid #3a3a3c;
}

.lph-wp-safari-toolbar {
    background: linear-gradient(to bottom, #3a3a3c, #2c2c2e);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #1c1c1e;
}

.lph-wp-safari-traffic-lights {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.lph-wp-safari-traffic-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.lph-wp-safari-traffic-light-close {
    background-color: #ff5f57;
}

.lph-wp-safari-traffic-light-minimize {
    background-color: #febc2e;
}

.lph-wp-safari-traffic-light-maximize {
    background-color: #28c840;
}

.lph-wp-safari-content {
    background-color: #ffffff;
    min-height: 200px;
    padding: 24px;
    font-family: 'Lato', sans-serif;
}

.lph-wp-safari-logo {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 24px;
}

.lph-wp-safari-title {
    text-align: center;
    color: #212529;
    margin-bottom: 32px;
}

.lph-wp-safari-section-title {
    color: #212529;
    margin-bottom: 8px;
}

.lph-wp-safari-section-description {
    color: #495057;
    margin-bottom: 24px;
    font-size: 13px;
}

.lph-wp-safari-table-wrapper {
    overflow-x: auto;
}

.lph-wp-safari-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.lph-wp-safari-table thead th {
    background-color: #f8f9fa;
    font-size: 11px;
    text-transform: uppercase;
    color: #6c757d;
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    vertical-align: bottom;
}

.lph-wp-safari-table thead th:first-child {
    text-align: left;
}

.lph-wp-safari-table tbody td {
    padding: 8px 4px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
    color: #212529;
    font-size: 11px;
    text-align: center;
}

.lph-wp-safari-table tbody td:first-child {
    text-align: left;
    max-width: 180px;
}

.lph-wp-safari-table-merchant-link {
    color: #0d6efd;
    text-decoration: underline;
}

.lph-wp-safari-table-merchant-offer {
    display: block;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lph-wp-safari-table-chart-icon {
    margin-left: 6px;
    text-decoration: none;
}

.lph-wp-safari-table-strength-img {
    width: 42px;
    height: auto;
}

.lph-wp-safari-carousel-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 1em;
}

.lph-wp-safari-carousel-label {
    color: #212529;
    font-family: 'Lato', sans-serif;
    padding: 16px 24px;
    text-align: center;
    flex: 1;
}

.lph-wp-safari-carousel-label-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.lph-wp-safari-carousel-label-description {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 0;
}

.lph-wp-safari-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.lph-wp-safari-carousel-indicator {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background-color: #6c757d;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    opacity: 0.5;
}

.lph-wp-safari-carousel-indicator.active {
    background-color: #6c757d;
    opacity: 1;
}

.lph-wp-safari-blur {
    filter: blur(3px);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.lph-wp-safari-highlight-portal {
    background-color: rgba(var(--lph-color-bluewood-rgb), 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 2px solid var(--lph-color-bluewood);
}

.lph-wp-safari-highlight-category {
    background-color: rgba(var(--lph-color-bluewood-rgb), 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 2px solid var(--lph-color-bluewood);
    display: inline-block;
}

.lph-wp-safari-highlight-offer {
    background-color: rgba(var(--lph-color-bluewood-rgb), 0.1);
    padding: 2px 4px;
    border-radius: 4px;
    border: 2px solid var(--lph-color-bluewood);
}

.lph-wp-safari-highlight-strength {
    background-color: rgba(var(--lph-color-bluewood-rgb), 0.15) !important;
    border: 2px solid var(--lph-color-bluewood);
}

@media (max-width: 767.98px) {
    .lph-wp-safari-carousel-container {
        padding: 16px;
    }

    .lph-wp-safari-carousel-layout {
        display: block;
    }

    .lph-wp-safari-carousel-btn-desktop {
        display: none;
    }

    .lph-wp-safari-carousel-btn-mobile {
        display: flex;
    }

    .lph-wp-safari-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .lph-wp-safari-carousel-btn-icon {
        width: 16px;
        height: 16px;
    }

    .lph-wp-safari-toolbar {
        padding: 10px 12px;
        gap: 12px;
    }

    .lph-wp-safari-traffic-light {
        width: 10px;
        height: 10px;
    }

    .lph-wp-safari-traffic-lights {
        gap: 6px;
    }

    .lph-wp-safari-content {
        padding: 16px;
    }

    .lph-wp-safari-logo {
        max-width: 150px;
        margin-bottom: 16px;
    }

    .lph-wp-safari-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .lph-wp-safari-carousel-label-wrapper {
        margin-top: 1em;
        gap: 8px;
    }

    .lph-wp-safari-carousel-label {
        padding: 12px 8px;
    }

    .lph-wp-safari-carousel-label-title {
        font-size: 18px;
    }

    .lph-wp-safari-carousel-label-description {
        font-size: 14px;
    }

    .lph-wp-safari-table tbody td:first-child {
        max-width: 120px;
    }
}