* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.lbp-container {
    width: 100%;
    margin: 0 auto;
    max-width: 900px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lbp-header {
    background-color: #1E88E5;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lbp-header-content {
    flex: 1;
}

.lbp-header h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.lbp-header h2 svg {
    margin-right: 10px;
}

.lbp-header p {
    font-size: 16px;
    opacity: 0.9;
}

.lbp-luggage-image {
    width: 100px;
    height: 100px;
    margin-left: 20px;
}

.lbp-luggage-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lbp-content {
    padding: 25px;
}

.lbp-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.lbp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lbp-check-icon {
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
}

.lbp-benefit-text {
    font-size: 16px;
    color: #444;
}

.lbp-strong {
    font-weight: 600;
    color: #333;
}

.lbp-options {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.lbp-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    position: relative;
}

.lbp-option:hover {
    background-color: #f5f5f5;
}

.lbp-option.selected {
    background-color: #e3f2fd;
}

.lbp-radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.lbp-radio-selected {
    border-color: #1E88E5;
}

.lbp-radio-selected:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #1E88E5;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lbp-recommended-badge {
    position: absolute;
    top: -10px;
    left: 40px;
    background-color: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
}

.lbp-terms-link {
    color: #1E88E5;
    text-decoration: none;
}

.lbp-terms-link:hover {
    text-decoration: underline;
}

.lbp-price-cents {
    font-size: 80%;
    vertical-align: super;
}

.lbp-per-person {
    font-size: 14px;
    color: #666;
}

/* Popup styles */
.lbp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lbp-popup {
    background-color: white;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lbp-popup-content {
    text-align: center;
}

.lbp-popup-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.lbp-popup-icon {
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.lbp-popup-message {
    font-size: 18px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.4;
}

.lbp-popup-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.lbp-popup-button {
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.lbp-popup-button-decline {
    background-color: #f0f0f0;
    color: #333;
}

.lbp-popup-button-confirm {
    background-color: #1E88E5;
    color: white;
}

@media (max-width: 768px) {
    .lbp-header {
        flex-direction: column;
        text-align: center;
    }
    
    .lbp-luggage-image {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .lbp-popup-buttons {
        flex-direction: column;
    }
}