.ucuzaucak-lounge-widget .pg-text {
    font-size: 18px;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 28px 0;
    text-align: center; 
}

.ucuzaucak-lounge-widget .pg-text strong {
    display: inline-block;
    font-weight: 800;
    font-size: 18px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    padding: 0 2px;
    transform: scale(1.02); 
}

.ucuzaucak-lounge-widget .pg-text strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
    opacity: 0.6;
}

.ucuzaucak-lounge-widget .pg-highlight-wrapper {
    position: relative;
    margin: 0 0 24px 0;
    padding: 15px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #7dd3fc;
    box-shadow: 
        0 6px 24px rgba(14, 165, 233, 0.06), 
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ucuzaucak-lounge-widget .pg-highlight-wrapper:hover {
    transform: translateY(-2px);
    border-color: #38bdf8;
    box-shadow: 
        0 12px 32px rgba(14, 165, 233, 0.12),
        inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.ucuzaucak-lounge-widget .pg-highlight-message {
    font-size: 20px; 
    color: #1e293b; 
    font-weight: 700; 
    flex: 1;
    letter-spacing: -0.5px; 
}

.ucuzaucak-lounge-widget .pg-price-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ucuzaucak-lounge-widget .pg-old-price {
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-color: #fb7185;
    text-decoration-thickness: 2px;
    font-weight: 600;
    font-size: 22px;
}


.ucuzaucak-lounge-widget .pg-new-price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    padding: 12px 18px;
    border-radius: 20px;
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.4);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ucuzaucak-lounge-widget .pg-highlight-wrapper:hover .pg-new-price-badge {
    transform: scale(1.05); 
}

.ucuzaucak-lounge-widget .pg-new-price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 2px;
    font-weight: 600;
    color: #fff;
}

.ucuzaucak-lounge-widget .pg-new-price-amount {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #fff;
}

.ucuzaucak-lounge-widget .pg-global-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: rgba(240, 253, 250, 0.9);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 14px;
    color: #0f766e;
    font-size: 15px;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.ucuzaucak-lounge-widget .pg-global-alert strong {
    color: #115e59;
    font-weight: 800;
}

.ucuzaucak-lounge-widget .pg-global-icon {
    width: 24px;
    height: 24px;
    color: #0d9488;
    flex-shrink: 0;
    animation: pulse-slow 3s infinite ease-in-out;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.ucuzaucak-lounge-widget .pg-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.4);
    color: #0284c7 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 17px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ucuzaucak-lounge-widget .pg-action-btn svg {
    width: 24px; height: 24px;
    transition: transform 0.3s ease;
}

.ucuzaucak-lounge-widget .pg-action-btn:hover {
    background: #0ea5e9;
    color: #fff !important;
    border-color: #0ea5e9;
    box-shadow: 0 12px 24px -6px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.ucuzaucak-lounge-widget .pg-action-btn:hover svg {
    transform: translateX(6px);
}

@media (max-width: 640px) {
    .ucuzaucak-lounge-widget .pg-text { font-size: 16px; line-height: 1.5; }
	.ucuzaucak-lounge-widget .pg-action-btn { font-size: 13px !important }
    .ucuzaucak-lounge-widget .pg-text strong { font-size: 20px; }
    .ucuzaucak-lounge-widget .pg-highlight-wrapper { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px; }
    .ucuzaucak-lounge-widget .pg-highlight-message { font-size: 20px; font-weight: 700; color: #1e293b; text-align: center; }
    .ucuzaucak-lounge-widget .pg-price-group { justify-content: center; }
    .ucuzaucak-lounge-widget .pg-new-price-badge { padding: 10px 16px; }
    .ucuzaucak-lounge-widget .pg-new-price-amount { font-size: 24px; }
    .ucuzaucak-lounge-widget .pg-global-alert { padding: 14px 16px; font-size: 14px; }
}



/* */
.ucuzaucak-ticket-widget .coupon-box {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px -5px rgba(16, 185, 129, 0.2);
    margin: 0 0 30px 0;
    position: relative;
    border: 2px dashed #6ee7b7; 
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ucuzaucak-ticket-widget .coupon-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.3);
}

.ucuzaucak-ticket-widget .coupon-left {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 3px dashed rgba(255, 255, 255, 0.4); 
    min-width: 130px;
}

.ucuzaucak-ticket-widget .coupon-amount {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ucuzaucak-ticket-widget .coupon-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 8px;
    text-transform: uppercase;
    opacity: 0.9;
}

.ucuzaucak-ticket-widget .coupon-right {
    padding: 17px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    background-color: #ffffff; 
}

.ucuzaucak-ticket-widget .coupon-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ucuzaucak-ticket-widget .coupon-desc {
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0px; 
}

.ucuzaucak-ticket-widget .pg-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #10b981;
    color: #059669 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 17px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ucuzaucak-ticket-widget .pg-action-btn:hover {
    background: #10b981;
    color: #fff !important;
    box-shadow: 0 12px 24px -6px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.ucuzaucak-ticket-widget .pg-action-btn:hover svg {
    transform: translateX(6px) scale(1.1);
}

@media (max-width: 640px) {
    .ucuzaucak-ticket-widget .coupon-box {
        flex-direction: column; 
    }
    .ucuzaucak-ticket-widget .coupon-left {
        border-right: none;
        border-bottom: 3px dashed rgba(255, 255, 255, 0.4);
        padding: 10px;
    }
    .ucuzaucak-ticket-widget .coupon-right {
        text-align: center;
        align-items: center;
    }

    .ucuzaucak-ticket-widget .pg-action-btn { 
        font-size: 15px; 
        padding: 11px; 
    }
}

/* */

.ucuzaucak-esim-widget .pg-text {
    font-size: 17px;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 32px 0;
    font-weight: 500;
    letter-spacing: -0.2px; 
    text-align: center; 
}

.ucuzaucak-esim-widget .pg-text strong {
    display: inline-block;
    font-weight: 800;
    font-size: 19px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    padding: 0 2px;
    transform: scale(1.02); 
}

.ucuzaucak-esim-widget .pg-text strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    opacity: 0.6;
}

.ucuzaucak-esim-widget .esim-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-align: center;
}

.ucuzaucak-esim-widget .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 25px;
}

.ucuzaucak-esim-widget .plan-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 15px -5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ucuzaucak-esim-widget .plan-card:hover {
    transform: translateY(-4px);
    border-color: #8b5cf6;
    box-shadow: 0 12px 30px -5px rgba(139, 92, 246, 0.2);
}

.ucuzaucak-esim-widget .plan-gb {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1;
}

.ucuzaucak-esim-widget .plan-gb span {
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
}

.ucuzaucak-esim-widget .plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #8b5cf6;
}

.ucuzaucak-esim-widget .plan-card.popular {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.2);
    background: linear-gradient(to bottom, #eff6ff, #ffffff);
    transform: scale(1.05);
    z-index: 2;
}

.ucuzaucak-esim-widget .plan-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.3);
}

.ucuzaucak-esim-widget .plan-card.popular .plan-price {
    color: #3b82f6;
}

.ucuzaucak-esim-widget .popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 0;
}

.ucuzaucak-esim-widget .pg-global-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: rgba(243, 232, 255, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 14px;
    color: #581c87;
    font-size: 15px;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.ucuzaucak-esim-widget .pg-global-alert strong {
    color: #4c1d95;
    font-weight: 800;
}

.ucuzaucak-esim-widget .pg-global-icon {
    width: 24px;
    height: 24px;
    color: #7e22ce;
    flex-shrink: 0;
    animation: pulse-slow 3s infinite ease-in-out;
}
        
@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.ucuzaucak-esim-widget .pg-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #8b5cf6;
    color: #7c3aed !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 17px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ucuzaucak-esim-widget .pg-action-btn svg {
    width: 24px; height: 24px;
    transition: transform 0.3s ease;
}

.ucuzaucak-esim-widget .pg-action-btn:hover {
    background: #8b5cf6;
    color: #fff !important;
    box-shadow: 0 12px 24px -6px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.ucuzaucak-esim-widget .pg-action-btn:hover svg {
    transform: translateX(6px) scale(1.1);
}

@media (max-width: 640px) {
    .ucuzaucak-esim-widget .plans-grid { grid-template-columns: 1fr; gap: 12px; }
    .ucuzaucak-esim-widget .plan-card.popular { transform: scale(1); }
    .ucuzaucak-esim-widget .plan-card.popular:hover { transform: translateY(-4px); }
    .ucuzaucak-esim-widget .pg-text { font-size: 17px; line-height: 1.5; }
    .ucuzaucak-esim-widget .pg-action-btn { font-size: 15px; padding: 10px; text-align:center }
    .ucuzaucak-esim-widget .pg-global-alert { padding: 14px 16px; font-size: 14px; }
}

/* */







.ucuzaucak-car-widget .pg-text {
    font-size: 17px;
    color: #334155;
    line-height: 1.5;
    margin: 0 0 24px 0;
    font-weight: 500;
    text-align: center;
}

.ucuzaucak-car-widget .pg-text strong {
    display: inline-block;
    font-weight: 800;
    font-size: 17px;
    background: linear-gradient(135deg, #ea580c 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    padding: 0 2px;
    transform: scale(1.02); 
}

.ucuzaucak-car-widget .pg-text strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ea580c, transparent);
    opacity: 0.6;
}


.ucuzaucak-car-widget .location-wrapper {
    display: flex;
    gap: 16px;
    margin: 0 0 32px 0;
}

.ucuzaucak-car-widget .location-box {
    flex: 1;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px -5px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.ucuzaucak-car-widget .pg-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: 2px solid #ea580c;
    color: #c2410c !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ucuzaucak-car-widget .pg-action-btn svg {
    width: 24px; height: 24px;
    transition: transform 0.3s ease;
}

.ucuzaucak-car-widget .pg-action-btn:hover {
    background: #ea580c;
    color: #fff !important;
    box-shadow: 0 12px 24px -6px rgba(234, 88, 12, 0.4);
    transform: translateY(-2px);
}

.ucuzaucak-car-widget .pg-action-btn:hover svg {
    transform: translateX(6px) scale(1.1);
}

@media (max-width: 640px) {
    .ucuzaucak-car-widget .location-wrapper { flex-direction: column; gap: 12px; }
    .ucuzaucak-car-widget .pg-text { font-size: 18px; }
    
    .ucuzaucak-car-widget .pg-action-btn { font-size: 14px; padding: 15px; text-align:center;}
}


/* */



.ucuzaucak-hukuk-widget .pg-text {
    font-size: 18px;
    color: #334155;
    line-height: 1.5;
    margin: 0 0 16px 0;
    font-weight: 500;
    text-align: center;
}

.ucuzaucak-hukuk-widget .pg-text strong.bold-red {
    color: #dc2626; 
    font-weight: 800;
}

.ucuzaucak-hukuk-widget .tazminat-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.ucuzaucak-hukuk-widget .tazminat-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #eab308; 
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 12px 30px -10px rgba(234, 179, 8, 0.4);
    transform: scale(1.05); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ucuzaucak-hukuk-widget .tazminat-badge:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(234, 179, 8, 0.5);
}

.ucuzaucak-hukuk-widget .tazminat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ucuzaucak-hukuk-widget .tazminat-label {
    font-size: 13px;
    font-weight: 700;
    color: #713f12; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.ucuzaucak-hukuk-widget .tazminat-amount {
    font-size: 36px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.ucuzaucak-hukuk-widget .tazminat-amount span {
    font-size: 21px;
    font-weight: 700;
    color: #64748b;
    margin-left: 6px;
}

.ucuzaucak-hukuk-widget .pg-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #1e293b, #0f172a); 
    border: none;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 17px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px -5px rgba(15, 23, 42, 0.5);
}

.ucuzaucak-hukuk-widget .pg-action-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.ucuzaucak-hukuk-widget .pg-action-btn:hover {
    background: linear-gradient(135deg, #334155, #1e293b);
    box-shadow: 0 12px 25px -5px rgba(15, 23, 42, 0.6);
    transform: translateY(-2px);
}

.ucuzaucak-hukuk-widget .pg-action-btn:hover i {
    transform: translateX(6px);
}

@media (max-width: 640px) {
    .ucuzaucak-hukuk-widget .tazminat-badge { flex-direction: column; text-align: center; gap: 12px; padding: 20px; transform: scale(1); }
    .ucuzaucak-hukuk-widget .tazminat-amount { justify-content: center; font-size: 34px; }
    .ucuzaucak-hukuk-widget .pg-text { font-size: 18px; }
    .ucuzaucak-hukuk-widget .pg-action-btn { font-size: 15px; padding: 16px; }
}