.lpt-pro-widget {
    max-width: 480px;
    margin: 30px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}
.lpt-pro-header { text-align: center; margin-bottom: 24px; }
#lpt-title { margin: 0 0 8px 0; font-size: 24px; font-weight: 700; color: #111827; }

/* Blinking Live Date */
@keyframes blink-animation {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.lpt-pro-live-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #047857;
    background: #d1fae5;
    padding: 6px 12px;
    border-radius: 20px;
    animation: blink-animation 2s infinite ease-in-out;
}
.lpt-pro-live-date::before, .lpt-badge-live::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ef4444; /* Red Dot */
    border-radius: 50%;
}

/* Controls */
.lpt-pro-controls { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.lpt-input-group label { display: block; font-size: 14px; font-weight: 500; color: #4b5563; margin-bottom: 6px; }
.lpt-pro-select { width: 100%; padding: 14px; font-size: 16px; border: 1px solid #d1d5db; border-radius: 10px; background-color: #ffffff; color: #1f2937; outline: none; transition: all 0.3s ease; }
.lpt-pro-select:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }
.lpt-pro-select:disabled { background-color: #f3f4f6; color: #9ca3af; cursor: not-allowed; }

.lpt-pro-btn { width: 100%; padding: 14px; font-size: 16px; font-weight: 600; text-align: center; border: none; border-radius: 10px; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-block; box-sizing: border-box; }
.lpt-btn-primary { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2); }
.lpt-btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3); }
.lpt-btn-primary:disabled { background: #9ca3af; box-shadow: none; cursor: not-allowed; }

/* Card */
.lpt-pro-card { background: #ffffff; border-radius: 12px; padding: 20px; border: 1px solid #e5e7eb; box-shadow: 0 4px 6px rgba(0,0,0,0.02); margin-top: 10px; }
.lpt-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px dashed #e5e7eb; }
#lpt-card-location { margin: 0; font-size: 16px; font-weight: 600; color: #374151; }

.lpt-badge-live {
    display: inline-flex; align-items: center; gap: 4px; background: #fee2e2; color: #b91c1c; font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; letter-spacing: 0.5px;
    animation: blink-animation 1.5s infinite ease-in-out;
}

.lpt-price-hero { text-align: center; margin: 20px 0; }
.lpt-currency-symbol { font-size: 24px; font-weight: 600; color: #6b7280; vertical-align: super; }
.lpt-main-price { font-size: 56px; font-weight: 800; color: #111827; line-height: 1; letter-spacing: -1px; }
.lpt-price-unit { display: block; font-size: 15px; color: #6b7280; margin-top: 8px; font-weight: 500; }

.lpt-meta-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; background: #f9fafb; padding: 12px; border-radius: 8px; margin-bottom: 20px; }
.lpt-meta-item { text-align: center; }
.lpt-meta-label { display: block; font-size: 11px; color: #6b7280; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.lpt-meta-value { font-size: 13px; font-weight: 600; color: #111827; }
.lpt-text-green { color: #059669; }
.lpt-text-red { color: #dc2626; }
.lpt-text-gray { color: #4b5563; }

/* Enhanced Social Sharing Row */
.lpt-action-row { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.lpt-social-icons { display: flex; gap: 8px; flex: 1.5; }
.lpt-social-btn {
    display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    border-radius: 10px; color: white !important; transition: transform 0.2s, filter 0.2s;
}
.lpt-social-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.lpt-bg-wa { background-color: #25D366; }
.lpt-bg-fb { background-color: #1877F2; }
.lpt-bg-tg { background-color: #229ED9; }
.lpt-bg-x  { background-color: #000000; }

.lpt-btn-secondary { background-color: #f3f4f6; color: #374151; font-size: 15px; padding: 12px; }
.lpt-btn-secondary:hover { background-color: #e5e7eb; color: #111827; }
