#simvox-countries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.popular-destinations-sub {
    background-color: #fff;
    padding: 24px;
    border-radius: 20px;
    overflow: hidden;
}
.popular-destinations-sub h2 {
    font-size: 32px;
    line-height: normal;
    font-weight: 600;
}
.popular-destinations-sub .directions-tabs {
    padding-top: 16px;
    padding-bottom: 28px;
    display: flex;
    justify-content: flex-start;
    overflow-y: auto;
}
.popular-destinations-sub .directions-tabs a {
    height: 40px;
    border-radius: 20px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: .15s;
    color: #0c0c0dbd;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-decoration: unset;
    text-transform: capitalize;
    display: inline-flex;
    gap: 4px;
}
.popular-destinations-sub .directions-tabs a:hover {
    background-color: #907f6f0f;
    color: #0c0c0d;
}
.popular-destinations-sub .directions-tabs a.active {
    background-color: #907f6f1f;
    color: #0c0c0d;
}
.popular-destinations-sub .countriesblock-img-des {
    min-height: 52px;
    transition: .15s;
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 10px 16px;
    background-color: #f6f5f4;
    border-radius: 16px;
}
.popular-destinations-sub .countriesblock-img-des:hover {
    background-color: #907f6f0a;
}
.popular-destinations-sub .countriesblock-list a {
    text-decoration: unset;
    color: unset;
}
.popular-destinations-sub .countriesblock-des h6 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #0c0c0d;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    text-wrap:nowrap;
}
.popular-destinations-sub .countriesblock-des p {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.2px;
    color: #0c0c0d;
}
.popular-destinations-sub .countriesblock-arrow {
    margin-left: auto;
}
.popular-destinations-sub .countriesblock-img-des img {
    width: 32px;
    height: 32px;
    border-radius: 30px;
}
.popular-destinations-sub .countriesblock-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
}
.popular-destinations-sub .countriesblock-list a:first-child {
    grid-column: 1/-1;
}
.popular-destinations-sub .show-country-btn {
    margin-top: 28px;
}
.popular-destinations-sub .show-country-btn a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    color: #0c0c0dbd;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    transition: .15s;
    background-color: #907f6f1a;
    border-radius: 20px;
    text-decoration: unset;
}
.popular-destinations-sub .show-country-btn a:hover {
    background-color: #907f6f1f;
}

.countriesselect-list {
    margin-bottom: 20px;
}

/* .countriesselect-list select {
    width: 100%;
    padding:12px 16px;
    background-color: #f7f8f9;
    border-radius: 16px;
    appearance: none;
    background-image: url(../images/select-dropdown-Icon.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    color: #000;
    font-weight: 500;
    border: unset;
}

.countriesselect-list select:focus {
    outline: unset;
    border: unset;
} */

.plan-select-block a {
    text-decoration: unset;
    color: #0c0c0dbd;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    padding: 10px 15px;
    background-color: #f7f8f9;
    border-radius: 10px;
    display: inline-block;
    transition: 0.5s;
    text-transform: capitalize;
    position: relative;
}

.plan-select-block a.active {
    background-color:#907f6f1f;
    color: #000;
    padding-left: 20px;
}

.plan-select-block a.active::before , .plan-select-block a.active::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    height: 11px;
    width: 2px;
    background-color: #333;
}

.plan-select-block a.active::before {
    transform: translateY(-50%) rotate(45deg);
}

.plan-select-block a.active::after {
    transform: translateY(-50%) rotate(-45deg);
}

.plan-select-block a:hover {
    background-color:#907f6f1f;
    color: #000;
}

.simvox-buy-list-item:hover{
    background-color: #907f6f0a;
}

.plan-block-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.plan-block-inner .plan-data button {
    border-radius: 10px;
    padding: 0;
}
.plan-block-inner .plan-data button a {
    color: #fff !important;
    background-color: transparent !important;
    padding: 10px 16px;
}

.plan-block-inner .plan-data:not(:first-child) {
    margin-left: 20px;
}

.plan-block-inner .plan-data:last-child {
    text-align: right;
}

.plan-select-block {
    display: flex;
    flex-wrap: wrap;
}

.plan-select-block select,.plan-select-block > div:not(:last-child) {
    margin-right: 10px;
}

.plan-select-block select, .plan-select-block > div {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
   .popular-destinations-sub .countriesblock-list {
        display: block;
   }
   .popular-destinations-sub .countriesblock-img-des {
        background-color: unset;
   }
   .popular-destinations-sub {
        padding: 15px;
   }
    .popular-destinations-sub h2 {
        font-size: 20px;
   }
   .popular-destinations-sub .countriesblock-img-des {
        padding: 10px;
   }
}

@media (max-width: 575px) {
    .plan-block-inner .plan-data:last-child {
        text-align: left;
        margin-left: 0;
        margin-top: 10px;
    }
    .plan-block-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 375px) {
   .popular-destinations-sub .countriesblock-des h6 {
        width: 170px;
   }
}
.esim-turkey-sec {
    padding-top: 100px;
}
.esim-turkey-des-sec {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.esim-turkey-des-sec .esim-turkey-rating a {
    text-decoration: unset;
    display: flex;
    column-gap: 12px;
}
.esim-turkey-des-sec .esim-turkey-rating p {
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: white;
}
.esim-turkey-des-sec .esim-turkey-rating .stars-rating , .esim-turkey-des-sec .esim-turkey-rating .trust-logo {
    width: 94px;
    height: 18px;
}
.esim-turkey-des-sec .tr-img , .esim-turkey-des-sec .esim-turkey-overlap {
    position: absolute;
    width: 100%;
    height: calc(100% + 24px);
    object-fit: cover;
    display: block;
    top: 0;
    background-color: rgba(0,0,0,.5);
}
.esim-turkey-des-sec .esim-turkey-overlap {
    z-index: 1;
}
.esim-turkey-des-sec .esim-turkey-des {
    position: relative;
    z-index: 2;
    padding: 0px 24px;
    padding-top: 20px;
}
.esim-turkey-des-sec .esim-turkey-heading h2 {
    font-size: 34px;
    line-height: 40px;
    font-weight: 700;
    color: #fff;
}
.esim-turkey-des-sec .esim-turkey-heading span {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    font-weight: 400;
}
.esim-turkey-des-sec .esim-turkey-flag img {
    width: 32px;
    height: 32px;
    border-radius: 30px;
}
.esim-turkey-des-sec .esim-turkey-heading-flag {
    padding: 32px 0px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.prepaid-data-paln-sec {
    padding:20px 16px;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    top: -15px;
    z-index: 1;
}

.prepaid-data-paln-sec h6 {
    font-size: 14px;
    font-weight: 600;
    color: #0c0c0d75;
    line-height: 18px;
    text-transform: uppercase;
    padding-bottom: 12px;
    padding-top: 20px;
}
.prepaid-data-paln-sec .plan-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.prepaid-data-paln-sec .plan-block a {
    text-decoration: unset;
    background-color: #907f6f14;
    width: 100%;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.prepaid-data-paln-sec .plan-block a:last-child {
    margin-bottom: 0px;
}

.prepaid-data-paln-sec .plan-block a:hover {
    background-color: #907f6f1f;
}

.plan-select-block  select {
    border-radius: 16px;
    appearance: none;
    background-image: url(../images/select-dropdown-Icon.svg);
    background-repeat: no-repeat;
    background-position: right 2px center;
    color:#0c0c0dbd;
    font-weight: 500;
    border: unset;
    background-color: #f7f8f9;
    font-size: 14px;
    padding: 10px 15px;
}


.plan-select-block  select:hover {
    outline: unset;
    border: unset;
}

.prepaid-data-paln-sec .plan-block a .plan-block-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    padding: 10px 16px !important;
    border-radius: 16px !important;
    grid-gap: 4px;
    gap: 4px;
    align-items: center;
}
.prepaid-data-paln-sec .plan-data p {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 24px;
    color: #0c0c0d;
    margin-bottom: 0px;
}
.prepaid-data-paln-sec .plan-data p sup {
    font-size: 14px;
    line-height: 18px;
}
.prepaid-data-paln-sec .plan-data p sub {
    font-size: 12px;
    line-height: 18px;
    color: #0c0c0dbd;
}
.prepaid-data-paln-sec .plan-data span {
    font-size: 12px;
    letter-spacing: 0.2px;
    line-height: 18px;
    font-weight: 400;
    color: #0c0c0dbd;
}
.prepaid-data-paln-sec .plan-discount {
    justify-self: end;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.prepaid-data-paln-sec .plan-discount img {
    width: 54px;
    height: 20px;
    object-fit: fill;
}
.prepaid-data-paln-sec .plan-discount-content {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 2px;
    position: absolute;
    justify-content: center;
    align-items: center;
}
.prepaid-data-paln-sec .plan-discount-content p {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.1px;
    line-height: 18px;
}
.esim-turkey-des-sec .esim-turkey-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0px;
    display: none;
}
.esim-turkey-des-sec .esim-turkey-navbar a svg {
    color: #fff;
}
.esim-turkey-des-sec .esim-turkey-navbar a {
    display: inline-block;
}
.esim-turkey-des-sec .esim-turkey-navbar a:first-child {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.esim-turkey-des-sec .esim-turkey-navbar a:first-child:hover {
    background-color: #ffffff0f;
}
@media (max-width: 767px) {
   .esim-turkey-des-sec .esim-turkey-navbar {
        display:flex;
   }
}

/* Make sure eSIM table is responsive */
@media screen and (max-width: 768px) {
    .simvox-esim-details th,
    .simvox-esim-details td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .simvox-esim-details th {
        padding-bottom: 0;
    }
    
    .simvox-esim-details td {
        padding-top: 5px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .simvox-esim-details tr:last-child td {
        border-bottom: none;
    }
} 


.simvox-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.simvox-country-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.simvox-country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.simvox-country-card h3 {
    margin: 0;
    font-size: 1.2em;
}

.simvox-country-header {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.simvox-back-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.simvox-back-link:hover {
    text-decoration: underline;
}

.simvox-country-header h2 {
    margin: 0;
    font-size: 1.8em;
}

.simvox-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.simvox-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.simvox-product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.2s ease;
}

.simvox-product-card:hover {
    transform: translateY(-5px);
}

.simvox-product-card h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 1.2em;
}

.simvox-product-details {
    margin-bottom: 15px;
}

.simvox-product-details p {
    margin: 5px 0;
    color: #666;
}

.simvox-product-price {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3338;
    margin: 15px 0;
}


.simvox-buy-list-item {
    width: 100%;
    padding: 10px 16px;
    background: #f6f5f4;
    color: #000000;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

/* 
.simvox-buy-button {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.simvox-buy-button:hover {
    background: #005177;
} */

.simvox-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
} 


/* Select2 Modern Custom Styles */
.countriesselect-list select:not(.select2-hidden-accessible) {
    width: 100% !important;
}
.countriesselect-list .select2-container {
    width: 100% !important;
}
.countriesselect-list .select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}
.select2-container {
    width: auto !important;
    margin-bottom: 20px;
}

.select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #907f6f;
    box-shadow: 0 4px 12px rgba(144, 127, 111, 0.1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding-left: 16px;
    padding-right: 40px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    width: 40px;
    right: 0;
    position: absolute;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #907f6f transparent transparent transparent;
    border-width: 6px 6px 0 6px;
    margin-left: -6px;
    margin-top: -3px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #907f6f transparent;
    border-width: 0 6px 6px 6px;
}

.select2-dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 4px;
    overflow: hidden;
}

.select2-container--default .select2-search--dropdown {
    padding: 12px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #907f6f;
    box-shadow: 0 0 0 3px rgba(144, 127, 111, 0.1);
}

.select2-container--default .select2-results__option {
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
}

.select2-container--default .select2-results__option .country-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered .country-flag {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f8f7f6;
    color: #333;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f0eeec;
    color: #333;
}

.select2-country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered .select2-country-option {
    gap: 12px;
    width: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__rendered .country-name {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select2-container--default .select2-results__option .country-name {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .select2-container--default .select2-selection--single {
        height: 44px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: normal;
        font-size: 14px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered .country-flag {
        width: 20px;
        height: 20px;
    }

    .select2-container--default .select2-results__option {
        padding: 10px 12px;
        min-height: 44px;
    }

    .select2-container--default .select2-results__option .country-flag {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 480px) {
    .select2-container--default .select2-selection--single {
        height: 40px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: normal;
        font-size: 13px;
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered .country-flag {
        width: 18px;
        height: 18px;
    }

    .select2-container--default .select2-results__option {
        padding: 8px 10px;
        min-height: 40px;
    }

    .select2-container--default .select2-results__option .country-flag {
        width: 18px;
        height: 18px;
    }
} 