/* =========================================
   SURVEY WIDGET - CORE VARIABLES & BASE
   ========================================= */
.survey-widget {
    /* Colors */
    --primary-color: #4564ED;
    --primary-color-darker: #3a5fd9;
    --secondary-bg: #f3f3f3;
    
    --text-color-white: #FFFFFF;
    --text-color-dark: #3D3D3D;
    --text-color-light: #666666;
    --text-color-lighter: #888888;
    
    --border-color-light: #e5e5e5;
    --border-color-medium: #e0e0e0;
    --border-color-dark: #cccccc;
    
    --background-light: #F7F7F8;
    --background-white: #ffffff;
    --background-glass: rgba(255, 255, 255, 0.2);
    --background-hover: #f8f9ff;
    --button-disabled-bg: #9ca3af;
    --overlay-color: rgba(128, 55, 0, 0.3);
    
    --ring-color: #63D2F9;
    --gauge-color: #FF730A;
    --needle-color: #B0B0B0;

    /* Border Radius */
    --border-radius-small: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 16px;

    /* Typography */
    --font-size-small: 12px;
    --font-size-medium: 14px;
    --font-size-large: 16px;
    --font-size-xlarge: 20px;
    --font-size-xxlarge: 24px;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Layout */
    position: relative;
    width: 100%;
    padding: 24px 0;
    /* background-image: url('../images/suggest-data/background/upscale_image.png'), url('../images/suggest-data/background/abstract.png'); */
    background-image: url('../images/suggest-data/background/upscale_image.png');
    background-position: center center, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, auto 300px;
    /* Reset base styles for isolation */
    line-height: 1.5;
    font-family: inherit; 
    overflow: hidden;
}

.survey-widget::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-color);
    z-index: 1;
    pointer-events: none;
}
.survey-widget .survey-container {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    /* padding: 16px 24px; */
    padding: 16px 0;
}
/* Isolation: Ensure box-sizing applies to everything inside */
.survey-widget *,
.survey-widget *::before,
.survey-widget *::after {
    box-sizing: border-box;
}

.survey-widget .survey-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

/* Decor Elements */
.survey-widget .survey-decor-img {
    position: absolute;
    top: -44px;
    left: -73px;
    width: 20%;
    max-width: 320px;
    transform: rotate(-45deg);
    z-index: 4;
    pointer-events: none;
}

/* =========================================
   HEADER & STEPS
   ========================================= */
.survey-widget .survey-header {
    position: relative;
    margin-bottom: 60px;
    z-index: 3;
}

/* Scoped specifically to avoid global H2 styles */
.survey-widget .survey-header h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--text-color-white);
    line-height: 1.3;
    text-align: center;
    border: none; /* Reset potential global borders */
}

.survey-widget .step-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
}

.survey-widget .step-indicator.hide-step-4 {
    display: none;
}

.survey-widget .progress-ring__circle {
    transition: stroke-dashoffset 0.7s ease-in-out;
    transform: rotate(-90deg);
    transform-origin: 68px 66px;
}

/* =========================================
   CONTENT AREA
   ========================================= */
.survey-widget .survey-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 40px 25px;
    text-align: center;
    background-color: var(--background-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.survey-widget .step-content[data-step="4"] .survey-content {
    padding-bottom: 40px;
}

.survey-widget .survey-question {
    margin: 0;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--text-color-white);
    line-height: 1.5;
}

.survey-widget .survey-description {
    margin: 0;
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-normal);
    color: var(--text-color-white);
    line-height: 1.5;
}

.survey-widget .survey-note {
    margin-bottom: 24px;
    font-size: var(--font-size-medium);
    color: var(--text-color-white);
    font-style: italic;
}

/* =========================================
   OPTIONS (Cards, Checkboxes, Radios)
   ========================================= */
.survey-widget .survey-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
    padding: 0; /* Reset potential global list/div padding */
    list-style: none;
}

.survey-widget .option-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    min-height: 180px;
    padding: 30px 20px;
    text-align: center;
    background: var(--background-light);
    border: 2.5px solid var(--background-light);
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none; /* Start with no shadow */
}

.survey-widget .option-card.selected {
    background: var(--background-light);
    border-color: var(--primary-color);
    box-shadow: 0 4px 4px -8px rgba(0, 0, 0, 0.03), 
                0 4px 16px 10px rgba(16, 24, 40, 0.02), 
                0 2px 32px -4px rgba(16, 24, 40, 0.04);
}

.survey-widget .option-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    max-width: 100%; /* Safety */
}

.survey-widget .option-content h4 {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: var(--text-color-dark);
    line-height: 1.4;
}

.survey-widget .option-content p {
    margin: 0;
    align-self: stretch;
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: var(--text-color-dark);
    line-height: 1.4;
    text-align: center;
}

/* Shared styles for Checkbox & Radio */
.survey-widget .option-checkbox,
.survey-widget .option-radio {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--background-white);
    border: 2px solid var(--border-color-light);
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin: 0; /* Reset any global input margins */
}

.survey-widget .option-card.selected .option-checkbox,
.survey-widget .option-card.selected .option-radio {
    border-color: var(--primary-color);
}

/* Specific Checkbox Styles */
.survey-widget .option-checkbox {
    border-radius: 4px;
}

.survey-widget .option-card.selected .option-checkbox {
    background: var(--primary-color);
}

.survey-widget .option-card.selected .option-checkbox::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid var(--background-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Specific Radio Styles */
.survey-widget .option-radio {
    top: 16px;
    right: 16px;
    border-radius: 50%;
}

.survey-widget .option-card.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* =========================================
   ACTIONS (Buttons)
   ========================================= */
.survey-widget .survey-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.survey-widget .survey-actions.multi {
    gap: 12px;
}

/* Base Button Styles inside widget */
.survey-widget .btn-continue,
.survey-widget .btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none; /* Reset links if used as buttons */
    line-height: normal;
}

.survey-widget .btn-continue {
    padding: 13px 24px;
    color: var(--text-color-white);
    background: var(--button-disabled-bg);
    border: none;
    cursor: not-allowed;
}

.survey-widget .btn-continue:not(:disabled) {
    background: var(--primary-color);
    cursor: pointer;
}

.survey-widget .vat-tooltip {
    top: 0;
}

.survey-widget .vat-icon-wrapper .vat-tooltip {
    top: calc(100% + 6px);
    bottom: unset;
}

.survey-widget .vat-icon-wrapper .vat-tooltip::after {
    top: -11px;
    transform: translateX(-50%) rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1680px) {
    .survey-widget {
        padding: 24px 24px;
    }

    .survey-widget .survey-container {
        padding: 16px 0;
    }
}
@media (max-width: 1440px) {
    .survey-widget .survey-container {
        /* padding: 16px 24px; */
    }
}

@media (max-width: 1024px) {
    .survey-widget {
        padding: 24px 16px;
    }

    .survey-widget .survey-container {
        /* padding: 16px 0px; */
    }

    .option-card {
        width: 180px;
        min-height: 170px;
        padding: 28px 18px;
    }
}

@media (max-width: 912px) {
    .option-card {
        width: 250px;
        min-height: 170px;
        padding: 28px 18px;
    }
}

@media (max-width: 768px) {
    .survey-widget .survey-container {
        padding: 16px 16px;
    }

    .survey-decor-img {
        display: none !important;
    }
}

@media (max-width: 820px) {
    .option-card {
        width: 220px;
        min-height: 160px;
        padding: 25px 16px;
    }
}

@media (max-width: 768px) {
    .survey-header h2 {
        font-size: 24px;
    }
    
    .survey-question {
        font-size: 20px;
    }
    
    .survey-content {
        padding: 30px 20px;
    }
    
    .survey-options {
        gap: 16px;
    }
    
    .option-card {
        flex-shrink: 0; /* Prevent cards from shrinking */
        width: 220px;
        max-width: none;
        min-height: 150px;
    }
    
    .survey-widget {
        padding: 40px 0;
    }
}

.survey-widget .btn-back {
    padding: 14px 24px;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid transparent; /* Explicit border definition */
}

.survey-widget .btn-back:hover {
    background: var(--background-hover);
}

.survey-widget .btn-restart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: var(--font-size-medium);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color-white);
    background: transparent;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: normal;
}

.survey-widget .btn-restart svg path {
    stroke: var(--text-color-white);
}

/* =========================================
   RESULTS & PACKAGES
   ========================================= */
.survey-widget .package-results {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    max-width: calc((340px * 3) + (16px * 3));
    margin: 0 auto;
    padding: 45px 0 20px 0;
    overflow-x: auto;
    user-select: none;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    overflow-x: scroll;
    overflow-y: visible;
}

.survey-widget .package-results::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.survey-widget .package-results.is-overflowing {
    justify-content: flex-start;
}

.survey-widget .package-card-suggest,
.survey-widget .package-card {
    flex: auto;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 330px;
    max-width: 330px;
    height: auto;
    text-align: left;
    background: var(--background-white);
    border: 1px solid var(--border-color-medium);
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.04);
    cursor: pointer;
    /* overflow: hidden; */
    transition: all 0.3s ease;
    margin: 0; /* Reset global card margins if any */
}

.survey-widget .package-card-suggest:hover,
.survey-widget .package-card:hover {
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.15);
    transform: translateY(-2px);
}

.survey-widget .package-card-suggest .package-body {
    /* flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 20px; */
}

.survey-widget .package-card-suggest .card-body-content {
    /* padding: 0; */
}

.survey-widget .package-title {
    /* margin-bottom: 8px; */
    /* margin-top: 0;
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-weight-bold);
    color: var(--text-color-dark);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left; */
}

.survey-widget .package-description {
    /* margin: 0 0 16px 0;
    font-size: var(--font-size-medium);
    color: var(--text-color-light);
    line-height: 1.4; */
}

.survey-widget .package-price {
    /* display: flex;
    align-items: center;
    gap: 4px; */
    /* margin-bottom: 16px; */
}

.survey-widget .price-amount {
    /* font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1; */
}

.survey-widget .price-period {
    /* font-size: var(--font-size-small);
    color: var(--text-color-dark); */
}

/* Speed Box & Gauge */
.survey-widget .speed-box {
    /* display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--background-light);
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    box-shadow: 0px 0px 8px -2px rgba(16, 24, 40, 0.12),
                0px 2px 4px -4px rgba(16, 24, 40, 0.12); */
}

.survey-widget .speed-info {
    /* display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px; */
}

.survey-widget .speed-info .title {
    /* margin: 0;
    font-size: 14px;
    font-weight: var(--font-weight-normal);
    color: var(--text-color-dark);
    line-height: 24px; */
}

.survey-widget .speed-values {
    /* display: flex;
    gap: 8px;
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    color: var(--text-color-dark);
    line-height: 1.5; */
}

.survey-widget .speed-values span {
    /* display: flex;
    align-items: center;
    gap: 4px; */
}

.survey-widget .speed-values span i {
    /* display: flex;
    width: 16px;
    height: 16px;
    background: url("../images/suggest-data/up-icon.svg") left center/16px no-repeat; */
}

.survey-widget .speed-values span.down i {
    /* transform: rotate(180deg); */
}

.survey-widget .speed-values span b {
    /* margin-left: 2.5px;
    font-weight: var(--font-weight-bold); */
}

.survey-widget .speed-meter, 
.survey-widget .gauge-60 {
    /* position: relative;
    width: 60px;
    height: 30px; */
}

.survey-widget .speed-meter svg, 
.survey-widget .gauge svg {
    /* display: block;
    width: 100%;
    height: 100%; */
}

.survey-widget .gauge svg {
    /* margin-left: 6px; */
}

.survey-widget .speed-gauge {
    /* stroke: var(--gauge-color);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.2, 0.9, 0.2, 1); */
}

.survey-widget .speed-needle, 
.survey-widget .gauge .needle {
    /* fill: var(--needle-color);
    transform-origin: 31px 26px;
    transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.2, 1); */
}

.survey-widget .gauge .progress {
    /* transition: stroke-dashoffset 1.2s cubic-bezier(0.2, 0.9, 0.2, 1); */
}

/* Gauge Sizes */
.survey-widget .gauge-80 { width: 80px; height: 46.7px; }
.survey-widget .gauge-74 { width: 74px; height: 43.2px; }
.survey-widget .gauge-66 { width: 66px; height: 38.5px; }

.survey-widget .percent-badge {
    /* position: absolute;
    left: 50%;
    bottom: 0;
    display: none;
    padding: 2px 6px;
    font-size: 10px;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 999px;
    transform: translate(-50%, 40%); */
}

/* Package Features */
.survey-widget .card-suggest-features-container {
    /* max-height: calc(5 * 1.4em + 22px);
    padding: 0;
    overflow-y: auto;
    line-height: 1.4; */
}

.survey-widget .card-suggest-features-container::-webkit-scrollbar {
    /* width: 8px; */
}
.survey-widget .card-suggest-features-container::-webkit-scrollbar-thumb {
    /* background: #E7E7E7;
    border-radius: 6px; */
}
.survey-widget .card-suggest-features-container::-webkit-scrollbar-track {
    /* background: transparent; */
}

.survey-widget .card-features-wrapper {
    /* display: flex;
    flex-direction: column;
    gap: 4px; */
}

.survey-widget .card-feature-item {
    /* display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--font-size-small);
    color: var(--text-color-dark);
    line-height: 1.4;
    margin: 0; */
}

.survey-widget .card-feature-item .check-icon {
    /* flex-shrink: 0;
    width: 24px;
    height: 24px; */
    /* margin-top: 2px; */
}

.survey-widget .card-feature-item p {
    /* margin: 0;
    font-size: var(--font-size-medium);
    color: var(--text-color-dark); */
}

/* Package Footer & Buttons */
.survey-widget .package-footer {
    /* display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0px 20px 16px; */
}

.survey-widget .btn-primary-speedx,
.survey-widget .btn-secondary-speedx {
    /* display: inline-block;
    width: 100%;
    padding: 13px 24px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: normal; */
}

.survey-widget .btn-primary-speedx {
    /* color: var(--background-white);
    background: var(--primary-color); */
}

.survey-widget .btn-primary-speedx:hover {
    /* background: var(--primary-color-darker);
    transform: translateY(-1px);
    color: var(--background-white);  */
    /* Ensure hover text color sticks */
}

.survey-widget .btn-secondary-speedx {
    /* color: var(--primary-color);
    background: var(--secondary-bg); */
}

.survey-widget .btn-secondary-speedx:hover {
    /* color: var(--background-white);
    background: var(--primary-color); */
}

.survey-widget .recommended-speed {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 32px;
    text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.7), 0 0 1px rgba(255, 255, 255, 0.7);
}

/* =========================================
   STATES (Loading, Error, No Results)
   ========================================= */
.survey-widget .loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.survey-widget .step-content[data-step="4"] .loading-state {
    min-height: 200px;
    padding: 40px 20px;
}

.survey-widget .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--secondary-bg);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: survey-spin 1s linear infinite; /* Renamed animation */
}

@keyframes survey-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.survey-widget .loading-text {
    margin-top: 16px;
    margin-left: 16px;
    font-size: var(--font-size-large);
    color: var(--text-color-white);
}

.survey-widget .no-results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 260px;
}

.survey-widget .no-results-img {
    width: 372px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.survey-widget .no-results-text {
    margin-top: 0;
    font-size: 20px;
    color: var(--text-color-white);
    text-align: center;
}

.survey-widget .error-state {
    padding: 40px 20px;
    text-align: center;
}

.survey-widget .error-state h3,
.survey-widget .error-state p {
    color: var(--text-color-white);
    margin-bottom: 10px;
}
.survey-widget .error-state p {
    margin-bottom: 20px;
}

.survey-widget .btn-retry {
    padding: 10px 20px;
    color: var(--text-color-white);
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.survey-widget .btn-retry:hover {
    background: var(--primary-color-darker);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Large Screens */
@media (min-width: 1920px) {
    .survey-widget .survey-header h2 { font-size: 40px; }
    .survey-widget .survey-content { padding: 48px 122px 32px 122px; }
    .survey-widget .survey-question { font-size: 28px; }
    .survey-widget .survey-description { font-size: var(--font-size-xlarge); line-height: 28px; }
    .survey-widget .survey-note { font-size: var(--font-size-large); line-height: 24px; }
    .survey-widget .survey-options { gap: 24px; }
    .survey-widget .option-card { width: 280px; min-height: 280px; padding: 40px 24px; gap: 10px; }
    .survey-widget .option-card.selected { border-width: 4px; }
    .survey-widget .option-icon img { width: 100px; height: 100px; }
}

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .survey-widget .survey-decor-img { left: -60px; width: 180px; }
    .survey-widget .option-card { width: 180px; min-height: 170px; padding: 28px 18px; }
}

@media (max-width: 912px) {
    .survey-widget .option-card { width: 250px; }
}

@media (max-width: 820px) {
    .survey-widget .option-card { width: 220px; min-height: 160px; padding: 25px 16px; }
}

/* Mobile Landscape / Tablets Portrait */
@media (max-width: 768px) {
    .survey-widget { padding: 40px 0; }
    .survey-widget .survey-decor-img { display: none !important; }
    .survey-widget .survey-header h2 { font-size: 24px; }
    .survey-widget .survey-content { padding: 30px 20px; }
    .survey-widget .survey-question { font-size: 20px; }
    .survey-widget .survey-options { gap: 16px; }
    .survey-widget .option-card { flex-shrink: 0; width: 220px; max-width: none; min-height: 150px; }
    .survey-widget .step-indicator svg {
        width: 100px; 
        height: 100px; 
    }
    /* .survey-widget .card-feature-item .check-icon { width: 20px; height: 20px; } */
}

/* Mobile Portrait */
@media (max-width: 767px) {
    .survey-widget .survey-question {
        font-size: 18px;
    }

    .survey-widget .package-card-suggest .package-body {
        /* padding: 12px 16px; */
    }

    .survey-widget .package-footer {
        /* padding: 0px 16px 16px; */
    }

    .survey-widget .speed-box {
        /* padding: 8px;
        margin-bottom: 12px; */
    }

    .survey-widget .card-features-wrapper {
        /* gap: 4px; */
    }

    .survey-widget .card-feature-item .check-icon {
        /* width: 20px;
        height: 20px;
        margin-top: 0; */
    }

    .survey-widget { padding: 40px 0; }
    .survey-widget .survey-content { padding: 24px 20px; }
    .survey-widget .survey-container { padding: 0px 16px; }
    .survey-widget .survey-header { margin-bottom: 40px; }
    .survey-widget.step-4 .survey-header { margin-bottom: 20px; }
    .survey-widget .package-results { padding: 20px 0 20px 0; }
    .survey-widget .btn-restart { gap: 10px; padding: 11px 16px; font-size: 16px; line-height: 22px; }
}

@media (max-width: 540px) { 
    .survey-widget .package-card-suggest,
    .survey-widget .package-card {
        width: 253px;
        max-width: 253px;
        min-width: unset;
    }
    .survey-widget .package-results { 
        margin-right: -20px;
    }

    .survey-widget .package-card:last-child:not(:only-child),
    .survey-widget .package-card-suggest:last-child:not(:only-child) {
        margin-right: 20px;
    }

    .survey-widget .package-card .speed-item,
    .survey-widget .package-card-suggest .speed-item {
        letter-spacing: -1px;
    }
}

@media (max-width: 480px) {
    /* .survey-widget { padding: 32px 0; } */
    /* .survey-widget .survey-header { margin-bottom: 40px; } */
    .survey-widget .survey-header h2 { font-size: 20px; }
    
    /* .survey-widget .survey-content { padding: 40px 16px; } */
    .survey-widget .survey-question { line-height: 28px; }
    .survey-widget .survey-description { font-size: 14px; line-height: 22px; }
    .survey-widget .survey-note { font-size: 12px; line-height: 16px; }
    .survey-widget .recommended-speed { font-size: 16px; } 

    .survey-widget .survey-options { gap: 12px; }
    .survey-widget .option-card { width: calc(50% - 6px); max-width: 160px; min-height: 120px; padding: 16px 12px; }
    .survey-widget .option-icon img { width: 60px; height: 60px; }
    .survey-widget .option-content h4 { font-size: 12px; }

    .survey-widget .survey-actions.multi { flex-direction: column; align-items: center; }
    .survey-widget .btn-continue, 
    .survey-widget .btn-back { justify-content: center; max-width: 280px; padding: 10px 20px 11px; }

    /* Mobile Package Card Adjustments */
    /* .survey-widget .package-title { font-size: 16px; line-height: 22px; }
    .survey-widget .price-amount { font-size: 20px; }
    .survey-widget .price-period { font-size: 12px; }
    .survey-widget .speed-info .title { font-size: 10px; }
    .survey-widget .speed-values span i { width: 16px; height: 16px; }
    .survey-widget .speed-values span b { font-size: 12px; }
    .survey-widget .btn-primary-speedx, 
    .survey-widget .btn-secondary-speedx { padding: 10px 20px; } */
}