@charset "utf-8";

:root {
  --bg-color: #FFF;
  --font-color: #000;
  --white: #FFF;
  --blue: #1D85D0;
  --special-clr: #FF3823;
  --gray: #EBEBEB;
  --form-gray: #C0C0C0;
  --red: #ff4d4d;
  --overlay: rgba(0,0,0,.4);
	
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 40px;
  --space-7: 80px;
	
  --head-height: 85px;
  --footer-height: 260px;
  --radius: 20px;
  --radius-maxi: 42px;
}

@font-face { font-family: "Basic-Regular"; src: url("../assets/fonts/Poppins/Poppins-Regular.ttf"); }
@font-face { font-family: "Basic-Medium"; src: url("../assets/fonts/Poppins/Poppins-Medium.ttf"); }
@font-face { font-family: "Basic-Bold"; src: url("../assets/fonts/Poppins/Poppins-SemiBold.ttf"); }

/* CSS Document */
html, body { height: 100%; }
body { padding: 0; margin: 0; color: var(--font-color); font-family: 'Basic-Regular', sans-serif; font-size: 16px; background: var(--bg-color); }

body>div.packet { height: auto; }
*, :after, :before { box-sizing: border-box; }

/* -------- BASIC CSS -------- */
h1, h2, h3, h4, h5 { font-family: 'Basic-Bold', sans-serif; }
h1 { font-size: 4em; margin: 0; padding: 0; line-height: 1.2em; }
h2 { font-size: 2.75em; margin: 0 0 var(--space-3) 0; padding: 0; }
h3 { font-size: 1.75em; margin: 0 0 var(--space-4) 0; padding: 0; }
h4 { font-size: 1.5em; margin: var(--space-2) 0 0 0; padding: 0; line-height: 1.3em; }
h5 { font-size: 1.25em; padding: 0; margin: var(--space-2) 0 var(--space-3) 0; }
h6 { font-size: 1em; margin: 0; padding: 0; font-family: 'Basic-Medium', sans-serif; font-weight: normal; }

a { color: var(--font-color); text-decoration: underline; cursor: pointer; }
a:hover { text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none;  }

iframe { width: 100% !important; }

.button, .button-inverse { display: inline-block; text-decoration: none; border-radius: var(--radius-maxi); transition: 0.4s all ease; border: 1px solid var(--blue); }
.button { background: var(--blue); color: var(--white); cursor: pointer;  }
.button:hover { background: var(--white); color: var(--blue); text-decoration: none; }
.button-inverse { background: transparent; color: var(--blue); }
.button-inverse:hover { background: var(--blue); color: var(--white); text-decoration: none; }
.button-maxi, .button-cta-cart { padding: var(--space-3) var(--space-5); margin-top: var(--space-4); }
.button-maxi { font-family: 'Basic-Bold', sans-serif; font-size: 1.25em; }
.button-cta-cart { font-family: 'Basic-Medium', sans-serif; font-size: 1em; display: flex; justify-content: center; align-items: center; }

.list { list-style: disc; margin: 0 0 var(--space-3) 0; padding-left: 0.9em; }
.inline-items { display: inline-block; margin-right: var(--space-3); }

.blue { color: var(--blue); text-decoration: none; }
a.blue:hover { text-decoration: underline; }
.strong { font-family: 'Basic-Bold', sans-serif; }

a.blue:has(.a-ico-forward) { display: inline-flex; align-items: center; gap: var(--space-1); }
.a-ico-forward { display: inline-block; width: 20px; height: 20px; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; transition: background-color 0.4s ease; -webkit-mask-image: url("../assets/ico/arrow_forward.svg"); mask-image: url("../assets/ico/arrow_forward.svg"); background-color: var(--blue); }

.transparent-page { padding: var(--space-6) 0 var(--space-6); margin-bottom: var(--space-7); }
.gray-section { background: var(--gray); margin: var(--space-7) 0 var(--space-7) 0; padding: var(--space-7) 0 var(--space-7) 0; }
.gray-section:last-child { margin-bottom: var(--space-6); }
.gray-section-full { background: var(--gray); padding: var(--space-6) 0 var(--space-6); }
.thin-content { max-width: 880px; margin: 0 auto; }
.extra-thin-content { max-width: 680px; }

.cleaner { clear: left; }
.align-center { text-align: center; }
.align-right { text-align: right !important; }
.noscroll { overflow: hidden; }
.top-space { padding-top: var(--space-4); }
.big-top-space { padding-top: var(--space-7); }
.full-width { width: 100%; }

.transparent-page h1 { font-size: 3em; }
.perex { font-size: 1.5em; padding-top: var(--space-2); }

/* -------- ALERST -------- */
.alert-success, .alert-warning { width: 100%; padding: var(--space-3) var(--space-3); margin-bottom: var(--space-3); }
.alert-success { background: #e9f6d8; color: var(--font-color); }
.alert-warning { background: #f6d8d8; color: var(--font-color); }

/* -------- MODAL -------- */
.modal-overlay { position: fixed; inset: 0; background: var(--overlay); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.modal-overlay.is-hidden { display: none; }
.modal { position: relative; background: var(--white); border-radius: var(--radius); max-width: 500px; width: 100%; padding: var(--space-4) var(--space-5); margin: var(--space-4); box-shadow: 0 15px 40px rgba(0,0,0,.25);  overflow: hidden; display: flex; flex-direction: column; }
.modal-close { position: absolute; top: 4px; right: 4px; border: none; background: none; font-size: 2em; cursor: pointer; }
.modal-body { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; }

.modal-product-image-wrapper { flex: 0 0 auto; }
.modal-product-image-wrapper img { width: 100px; height: auto; }
.modal-product-info-wrapper { flex: 1 1 100px; }

.modal-footer-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; width: 100%; gap: var(--space-2); margin-top: var(--space-2); }
.modal .button-maxi { margin-top: 0; margin-left: auto; }

.esim-modal { height: 60vh; }
.esim-modal-body { display: grid; grid-template-columns: 130px 1fr; gap: var(--space-3); min-height: 0; flex: 1; margin-bottom: var(--space-2); }
.esim-brands-column { background: var(--gray); padding: var(--space-2); overflow-y: auto; height: 100%; }
.esim-devices-column { padding: var(--space-2); overflow-y: auto; height: 100%; }
.esim-header { display: inline-block; margin-bottom: var(--space-2); font-size: 0.9em; }
.brand-item { cursor: pointer; color: var(--blue); font-family: 'Basic-Medium', sans-serif; }
.brand-is-active { color: var(--font-color); }
.esim-modal-body ul li { line-height: 1.5em; }

/* -------- LAYOUT -------- */
.packet { position: relative; min-height: 100%; height: 100%; margin: 0; padding: 0; }
.head { position: sticky; top: 0; width: 100%; height: var(--head-height); background: var(--white); color: var(--font-color); box-sizing: border-box; font-family: 'Basic-Medium', sans-serif; z-index: 9000; }

.main-body { position: relative; width: 100%; min-height: 200px; margin: 0; padding: 0 0 var(--footer-height) 0; }
.content { background: var(--white); padding: 20px; }
footer { position: absolute; bottom: 0; width: 100%; display: flex; flex-direction: column; align-items: center; }

.wrapper-in, .content-in, .footer-in { box-sizing: border-box; max-width: 1280px; min-height: 10px; margin: 0 auto; padding: 0 var(--space-4);  }
.footer-in { position: relative; padding: 0 var(--space-4); height: var(--footer-height); }
.wrapper-in { position: relative; }

@media (min-width: 1025px) {
	.nav-mobile, .menu-mobile, .mobile-checkout-header { display: none !important; }
}

/* -------- HEAD -------- */
.head a, footer a, .menu-mobile a { text-decoration: none; }
.head a:hover, footer a:hover, .menu-mobile a:hover { text-decoration: underline; }

.head-content { position: relative; display: flex; line-height: var(--head-height); align-items: center; flex-direction: row; padding: 0 0 0 var(--space-4); z-index: 1000; }
.logo { flex: 0 0 200px; }
.menu { flex: 0 0 auto; }
.head-lang { flex: 0 0 120px; margin-left: auto; }
.head-currency { flex: 0 0 90px; }
.head-cart { flex: 0 0 120px; height: var(--head-height); border-radius: 42px 0 0 0; background: var(--blue); }

.logo a { display: block; height: 62px; max-width: 132px; background: url(../assets/logo.svg); background-repeat: no-repeat; background-size: contain; transition: all .2s ease-in-out; cursor: pointer; }
.logo a:hover { transform: scale(1.05); }
.logo a span { display: none; }

nav { display: block; list-style: none; margin: 0; padding: 0; width: 100%; }
nav li { display: inline-block; margin-left: var(--space-6); }
nav li:first-child { margin-left: 0 !important; }

.head-lang, .head-currency, .mobile-settings { font-size: 0.9em; line-height: normal; font-family: 'Basic-Regular', sans-serif; }
.settings-active { font-family: 'Basic-Bold', sans-serif; }
.settings-disabled { color: var(--form-gray); }

.ico-cart { display: block; width: 100%; height: 100%; background: url("../assets/ico/shopping_basket.svg"); background-repeat: no-repeat; background-size: auto 35px; background-position: center; cursor: pointer; position: relative; }
.cart-items { position: absolute; top: 27px; right: 23px; width: 25px; height: 25px; border-radius: 50%; background: var(--special-clr); text-align: center; font-family: 'Basic-Bold', sans-serif; color: var(--white); line-height: normal; }

/* -------- HERO -------- */
.hero { position: relative; overflow: visible; width: 100%; height: 620px; display: flex; align-items: center; margin-bottom: var(--space-6); background-repeat: no-repeat !important; background-size: cover !important; background-position: left !important; }
.hero .wrapper-in { position: relative; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; width: 100%; height: 100%; }
.hero-in { flex: 0 0 50%; color: var(--font-color); }
.hero h1 { color: var(--white); }
.hero h3 { margin-top: var(--space-2); font-size: 1.5em; }
.subheadline { font-size: 1.25em; margin: var(--space-2) 0; }
.hero h1, .hero h3, .hero .subheadline { text-shadow: 0 7px 14px rgba(0, 0, 0, 0.2); }

.hero-visual { position: absolute; right: 0; bottom: -220px; width: 45%; display: flex; justify-content: flex-end; pointer-events: none; z-index: 2; }
.hero-visual img { max-height: 700px; width: auto; }

/* -------- FOOTER -------- */
.footer-logos, .footer-links, .copy { margin: var(--space-4) 0 var(--space-3) 0; }
.footer-logos, .footer-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.footer-logos { column-gap: var(--space-4); }
.footer-logos img { height: 32px; width: auto; }
.footer-links { column-gap: var(--space-3); font-family: 'Basic-Medium', sans-serif; }
.copy { width: 100%; font-size: 0.85em; }

/* -------- GRIDS -------- */
.grid-50, .grid-25, .grid-33, .grid-summary { display: grid; margin-bottom: var(--space-5); }
.grid-50 { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
.grid-25 { grid-template-columns: repeat(4, 1fr); gap: var(--space-1); }
.grid-33 { grid-template-columns: repeat(3, 1fr); gap: var(--space-1); }
.grid-summary { grid-template-columns: 1fr 1fr 1fr 2fr; gap: var(--space-3); }
.grid-support { gap: var(--space-1) !important; margin-top: var(--space-5); }

.white-item { background: var(--white); }
.gray-item { background: var(--gray); padding: var(--space-5) var(--space-3) var(--space-3) var(--space-3); }
.white-item img { width: 100%; }
.gray-item img { height: 40px; width: auto; margin-bottom: var(--space-3); }

.flex-33 { display: flex; justify-content: center; gap: var(--space-1); flex-wrap: wrap; }
.flex-33 .card-item { flex: 0 0 calc((100% - 2 * var(--space-1)) / 3); max-width: calc((100% - 2 * var(--space-1)) / 3); }

/* -------- HOMEPAGE -------- */
.how-list { font-size: 1em; max-width: 50%; }
.how-visual { display: none; }

.ico-services { height: 60px; width: auto; }

.methods-item-text { padding: var(--space-4) var(--space-5); margin: 0 auto; }
.methods-item-text img { height: 40px; width: auto; }

/* -------- PRODUCT -------- */
.products-filter { display: flex; flex-wrap: wrap; gap: var(--space-6); margin-bottom: var(--space-5); }
.filter-group { flex: 0 0 auto; } 
.filter-group-order { margin-left: auto; }

.filter-group span:first-child { font-family: 'Basic-Bold', sans-serif; }

.k-help { display: flex; align-items: center; gap: var(--space-2); }
.filter-info { display: flex; align-items: center; gap: var(--space-1); }

.product-item { position: relative; padding: var(--space-3) var(--space-3) 130px var(--space-3); }
.product-head { display: flex; margin-bottom: var(--space-2); column-gap: var(--space-3); }
.product-head .product-head-item { flex: 1; }
.product-head .product-head-item img { max-height: 150px; width: 100%; aspect-ratio: 129 / 110; object-fit: cover; }
.product-bottom { position: absolute; bottom: 0; left: var(--space-3); right: var(--space-3); }

.price { font-family: 'Basic-Bold', sans-serif; font-size: 1.5em; }

.tag { display: inline-block; color: var(--white); padding: var(--space-1) var(--space-2); margin-left: var(--space-2); }
.tag:first-child { margin-left: 0 !important; }
.tag-esim { background: #8B51F5; }
.tag-sim { background: #648D08; }
.product-flags { display: flex; align-items: center; flex-wrap: wrap; column-gap: var(--space-2); }
.product-flags img { height: 20px; width: auto; }
.product-item .product-flags { margin-top: var(--space-3); }

.buy-form { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-2); }
.qty { position: relative; width: 96px; height: 56px; border-radius: var(--radius-maxi); border: 1px solid var(--form-gray); display: flex; align-items: center; justify-content: center; }
.qty input[type="number"] { width: 40px; font-size: 1.1em; outline: none; border: none; background: transparent; -moz-appearance: textfield; }
.qty input[type="number"]::-webkit-outer-spin-button, .qty input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input[type="number"] { -moz-appearance: textfield; }
.qty-btn { position: absolute; right: 14px; width: 22px; height: 22px; padding: 0; cursor: pointer; border: none; background-color: var(--font-color); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.qty-up { top: 4px; -webkit-mask-image: url("../assets/ico/arrow_up.svg"); mask-image: url("../assets/ico/arrow_up.svg"); }
.qty-down { bottom: 4px; -webkit-mask-image: url("../assets/ico/arrow_down.svg"); mask-image: url("../assets/ico/arrow_down.svg"); }
.qty-btn:hover { background-color: var(--form-gray); }
.qty-btn.disabled { background-color: var(--form-gray) !important; cursor: default; pointer-events: none; }

.btn-cart { height: 56px; display: flex; justify-content: center; align-items: center; flex: 1 1 auto; cursor: pointer; background: var(--white); color: var(--blue); border-radius: var(--radius-maxi); border: 1px solid var(--blue); transition: 0.4s all ease !important; font-family: 'Basic-Medium', sans-serif; font-size: 1em;  }
.btn-cart:hover { background: var(--blue) !important; color: var(--white) !important; }
.btn-cart-icon { display: inline-block; width: 35px; height: 35px; -webkit-mask-image: url("../assets/ico/shopping_basket.svg"); mask-image: url("../assets/ico/shopping_basket.svg"); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; background-color: var(--blue); transition: background-color 0.4s ease; margin-right: var(--space-2); }
.btn-cart:hover .btn-cart-icon { background-color: var(--white); }

/* -------- CART -------- */
.cta-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-3); }
.checkout-title { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.checkout-header { display: flex; justify-content: space-between; }
.checkout-body { width: 100%; background: var(--white); padding: var(--space-3); }

.checkout-steps { display: grid; grid-template-columns: repeat(4, 1fr); width: 70%; gap: var(--space-1); }
.checkout-total { text-align: right; font-size: 0.8em; }
.step { text-decoration: none; color: var(--form-gray); font-family: 'Basic-Medium', sans-serif; padding: var(--space-4) var(--space-3); pointer-events: none; cursor: default; }
.step:hover { text-decoration: none !important; }
.step-is-active { color: var(--font-color); background: var(--white); }
.step-is-done { color: var(--blue); pointer-events: auto; cursor: pointer; }
.checkout-total .price { font-size: 2em; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead th, .cart-table tbody td { padding: var(--space-3) var(--space-1); }
.cart-table thead th { text-align: left; font-family: 'Basic-Medium', sans-serif; font-weight: normal; }
.cart-table tbody td { border-top: 1px dashed var(--gray); vertical-align: middle; }

.cart-table td:nth-child(1), .cart-table th:nth-child(1) { width: 30%; position: sticky; left: 0; background: var(--white); }
.cart-table td:nth-child(2), .cart-table th:nth-child(2) { width: 15%; }
.cart-table td:nth-child(3), .cart-table th:nth-child(3) { width: 23%; }
.cart-table td:nth-child(4), .cart-table th:nth-child(4) { width: 19%; }
.cart-table td:nth-child(5), .cart-table th:nth-child(5) { width: 7%; }
.cart-table td:nth-child(6), .cart-table th:nth-child(6) { width: 6%; text-align: right; }

.cell-flex { display: flex; align-items: center; column-gap: var(--space-1); }
.cart-table img { cursor: pointer; }

.btn-ico-back, .btn-ico-forward { display: inline-block; width: 20px; height: 20px; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; transition: background-color 0.4s ease; }
.btn-ico-back { -webkit-mask-image: url("../assets/ico/arrow_back.svg"); mask-image: url("../assets/ico/arrow_back.svg"); background-color: var(--blue); margin-right: var(--space-2); }
.btn-ico-forward { -webkit-mask-image: url("../assets/ico/arrow_forward.svg"); mask-image: url("../assets/ico/arrow_forward.svg"); background-color: var(--white); margin-left: var(--space-2); }
.button-cta-cart:hover .btn-ico-back { background-color: var(--white); }
.button-cta-cart:hover .btn-ico-forward { background-color: var(--blue); }

.grid-summary h6 { font-family: 'Basic-Regular', sans-serif; font-size: 0.8em; font-weight: normal; }
.grid-summary p { margin: 0 0 var(--space-4) 0; padding: 0; font-family: 'Basic-Bold', sans-serif; }
.grid-summary .price { font-size: 2.25em; }

/* -------- FORMS -------- */
form.basic-form input:not([type="checkbox"]), form.basic-form select, form.basic-form textarea { width: 100%; }
form.basic-form input:not([type="checkbox"]), form.basic-form select, form.basic-form textarea, .voucher-input input { outline: none; border: 1px solid var(--form-gray); padding: var(--space-3) var(--space-2); font-family: 'Basic-Medium', sans-serif; line-height: 1.2; box-sizing: border-box; margin-bottom: var(--space-1); }
form.basic-form select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background: url("../assets/ico/arrow_down.svg") no-repeat right 6px center; background-size: 28px; }
form.basic-form label { display: block; font-size: 0.8em; padding: var(--space-3) 0 var(--space-1) 0; }

form.basic-form .grid-25 { gap: var(--space-3); }

.required-field::after { content: "*"; color: var(--red); margin-left: 4px; font-size: 1em; }

.voucher-input { margin: 0; padding: 0; display: flex; gap: 0; }
.voucher-input input, .voucher-input button { margin: var(--space-4) 0 0 0; background: var(--white); }
.voucher-input input[type="text"] { border-right: none; max-width: 120px; }
.voucher-input button { cursor: pointer; border: 1px solid var(--form-gray); border-left: none; color: var(--blue); font-family: 'Basic-Bold', sans-serif; font-size: 1em; }

.s-space { height: 30px; margin: var(--space-2) 0 0 0; }

/* -------- VALIDATE FORM - ERROR HLÁŠKY -------- */
input.error, select.error, textarea.error { border: 1px solid var(--red) !important; }
label.error { display: flex !important; align-items: center; gap: var(--space-1); color: var(--red); padding: 0 !important; font-size: 0.75em !important; }
label.error::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 0.8em; font-family: 'Basic-Bold', sans-serif; }
label.error:empty::before { display: none; }
.checkbox-row + label.error { margin-left: 30px; }

/* -------- CHECKBOX -------- */
input[type="checkbox"] { margin: 0; }
.checkbox-row { display: flex; align-items: flex-start; margin: var(--space-2) 0 0 0; }
.checkbox, .radio-sort { appearance: none; -webkit-appearance: none; width: 22px; height: 22px; flex: 0 0 22px; border-radius: 2px; border: 2px solid var(--font-color); box-sizing: border-box; cursor: pointer; position: relative; line-height: 1; }
.checkbox:checked::after, .radio-sort:checked::after { content: ""; position: absolute; left: 6px; top: 1px; width: 6px; height: 12px; border-right: 3px solid  var(--white); border-bottom: 3px solid  var(--white); transform: rotate(45deg); }
.checkbox:checked, .radio-sort:checked { background: var(--font-color); }
.checkbox-text { margin-left: var(--space-2); }

/* -------- RADIO -------- */
.method-type { display: block; position: relative; margin-bottom: var(--space-1); cursor: pointer; min-height: 85px; background: var(--gray); }
.method-type:first-of-type { margin-top: var(--space-3); }
.method-type .checkbox { position: absolute; top: var(--space-3); left: var(--space-3); margin: 0; z-index: 2; }
.method-type-content { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-2); padding: var(--space-3) var(--space-3) var(--space-3) 50px; border: 1px solid var(--gray);  }
.method-type:has(.checkbox:checked) .method-type-content { background: var(--white); border-color: var(--gray); min-height: 85px; }
.method-title, .method-right { font-family: 'Basic-Bold', sans-serif; }
.method-info { display: flex; align-items: center; gap: var(--space-3); }
.method-info img { height: 28px; width: auto; }

/* -------- PAGES -------- */
.payment-wrapper { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-3) 0; }
.payment-wrapper-code img { display: block; width: 180px; height: auto; }
.payment-wrapper-info { display: grid; grid-template-columns: auto 1fr;  column-gap: var(--space-3); row-gap: var(--space-1); } 
.payment-row { display: contents; }
.payment-row-value { font-family: 'Basic-Bold', sans-serif; }

details { margin: var(--space-4) 0 var(--space-3) 0; }
details summary { font-family: 'Basic-Bold', sans-serif; font-size: 1.25em; cursor: pointer; position: relative; padding-left: var(--space-4); list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::before { content: "";position: absolute; left: 0; top: calc((1em * 1.4) / 2 - 5px); width: 10px; height: 10px;	border-right: 2px solid var(--font-color); border-bottom: 2px solid var(--font-color); transform: rotate(45deg); transition: transform 0.25s ease; }
details[open] summary::before {	transform: rotate(-135deg); }

.company-review { margin-top: var(--space-3); }
.review-logo { max-height: 70px; max-width: 170px; width: auto; height: auto; object-fit: contain; margin-bottom: var(--space-2); }
.review-image { max-width: 420px; width: 100%; height: auto; display: block; margin: 0 auto var(--space-3) auto; }
.thin-content-grid { max-width: 320px; margin-left: auto; margin-right: auto; }

.support-warning { display: inline-flex; align-items: flex-start; gap: var(--space-1); }

.map-layout { display: flex; margin: var(--space-5) 0 var(--space-7) 0; gap: var(--space-6); }
.map-wrapper { position: relative; flex: 2; }
.map-image { width: 100%; height: 100%; background: url("../assets/img/map.svg") no-repeat center; background-size: contain; aspect-ratio: 16 / 9; }
.map-detail-panel { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.map-detail-panel img { max-width: 150px; height: auto; margin-bottom: var(--space-2); }
.location-detail { max-width: 300px; display: none; }
.location-detail.active { display: block; }
.pin { position: absolute; width: 28px; height: 28px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg) translate(-50%, -50%); border: none; cursor: pointer; background: var(--blue); display: flex; align-items: center; justify-content: center; transition: transform 0.15s ease, background 0.15s ease; }
.pin:hover { transform: rotate(-45deg) translate(-50%, -50%) scale(1.08); }
.pin::after { content: ""; width: 40%; aspect-ratio: 1 / 1; border-radius: 50%; background: var(--gray); }
.pin.active { background: var(--red); }

/* -------- TOOLTIP -------- */
.tooltip { position: relative; display: inline-flex; align-items: center; }
.tooltip-icon { width: 16px; height: 16px; border-radius: 50%; background: var(--form-gray); color: var(--white); font-size: 0.75em; font-weight: bold; display: inline-flex; align-items: center; justify-content: center; cursor: help; }
.tooltip-text { position: absolute; top: 50%; right: calc(100% + 10px); transform: translateY(-50%); background: var(--font-color); color: var(--white); padding: 6px 10px; border-radius: 6px; font-size: 0.75em; width: 240px; white-space: normal; text-align: center; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; z-index: 100; }
.tooltip-text::after { content: ""; position: absolute; top: 50%; left: 100%; transform: translateY(-50%); border-width: 8px; border-style: solid; border-color: transparent transparent transparent #000; }
.tooltip:hover .tooltip-text, .tooltip:focus-within .tooltip-text { opacity: 1; }

/* -------- RESPONSIVITY -------- */
@media (max-width: 1280px) { 
	.logo { flex: 0 0 160px; }
	nav li { margin-left: var(--space-4); }
	.head-lang { flex: 0 0 100px; }
	.head-currency { flex: 0 0 70px; }
	
	.hero-visual { bottom: -220px; }
	.hero-visual img { max-height: 600px; }
}

@media (max-width: 1100px) {
	.grid-25 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) { 
	.nav-mobile { display: flex; flex: 0 0 auto; height: var(--head-height); }
	.menu, .head-lang, .head-currency, .ico-menu span, .ico-menu-close span { display: none; }
	
	.logo { flex: 1 1 auto; }
	.logo a { margin: 0 auto; }
	.head-cart { margin-left: auto;  }
	
	.ico-menu { background: url("../assets/ico/menu.svg"); background-size: auto 50px; width: 50px; }
	.ico-menu-close { display: none; background: url("../assets/ico/close.svg"); background-size: auto 35px; width: 35px; }
	.ico-menu, .ico-menu-close { background-repeat: no-repeat; background-position: left center; cursor: pointer; height: 100%; }
	
	.menu-mobile.active ~ .ico-menu-close { display: block; }
	.menu-mobile.active ~ .ico-menu { display: none; }
	
	.menu-mobile { position: fixed; top: var(--head-height); left: 0; right: 0; height: calc(100vh - var(--head-height)); background: var(--white); z-index: 900; font-family: 'Basic-Medium', sans-serif; overflow-y: auto; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: transform 0.35s ease, opacity 0.35s ease; }
	.menu-mobile.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
	.menu-mobile-content { display: flex; flex-direction: column; align-items: center; justify-content: center; row-gap: var(--space-6); text-align: center; width: 100%; height: 100%; }
	nav li { display: block; margin-left: 0; line-height: 3em; font-family: 'Basic-Bold', sans-serif; font-size: 1.2em; }
	
	.mobile-settings { display: flex; justify-content: center; gap: var(--space-6); text-align: center; }
	.mobile-settings .col { }
	
	.mobile-checkout-header { display: flex; justify-content: flex-end; gap: var(--space-2); }
	.checkout-title { margin-bottom: var(--space-3); }
	.checkout-title h2 { margin-bottom: 0; }
		
	.circle-step { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }	
	.circle-step--active { background-color: var(--font-color); }
	.circle-step--done { background-color: var(--blue); }
	.circle-step--disabled { background-color: var(--form-gray); }
	.circle-step--active, .circle-step--disabled { pointer-events: none; cursor: default; }	
	.step-icon-check, .step-icon-active { width: 30px; height: 30px; display: block; background-color: var(--white); mask-size: contain; mask-position: center; mask-repeat: no-repeat; }
	.step-icon-check { mask-image: url("../assets/ico/check.svg"); }
	.step-icon-active { mask-image: url("../assets/ico/notes.svg"); }
	
	.checkout-steps { grid-template-columns: repeat(1, 1fr); width: 50%; }
	.step { display: none; }
	.step.step-is-active { display: inline-block; }
	
	.table-wrap {  overflow-x: auto; width: 100%; }
	
	.cart-table thead { display: none; }
	.cart-table, .cart-table tbody, .cart-table tr,  .cart-table td { display: block; width: 100% !important; text-align: left !important; }
	.cart-table tr { margin-bottom: var(--space-3); padding-top: var(--space-3); border-top: 1px dashed var(--gray); }
	.cart-table tr:first-child { padding-top: 0; border-top: none; }
	.cart-table td { padding: var(--space-2) 0 !important; margin: var(--space-1) 0; border-top: none !important; }
	.cart-table td::before { content: attr(data-label); display: block; font-size: 0.8em; }
	.cart-table td:nth-child(5)::before { font-family: 'Basic-Regular', sans-serif; }
	.cart-table .cell-flex { display: flex; flex-wrap: wrap; align-items: center; }
	.cart-table .cell-flex img { margin-left: auto; order: 99; }
	
	.map-layout { flex-direction: column; }	
	
	.tooltip-text { top: auto; bottom: calc(100% + 10px); left: 50%; right: auto; transform: translateX(-50%); text-align: center; width: 140px; }
    .tooltip-text::after { top: 100%; left: 50%; transform: translateX(-50%); border-width: 8px; border-style: solid; border-color: #000 transparent transparent transparent; }
}

@media (max-width: 980px) {
	.inline-items { display: block; margin-right: 0; }
	
	.hero .wrapper-in { flex-direction: column; }
	.hero-in { flex: 0 0 auto; width: 100%; }
	
	.hero-visual { bottom: -250px; }
	.hero-visual img { max-height: 500px; }	
	
	.grid-25 { grid-template-columns: repeat(2, 1fr); }
	.grid-33, .grid-summary { grid-template-columns: repeat(1, 1fr); column-gap: 0; }
	.flex-33 .card-item { flex: 0 0 100%; max-width: 100%; }
	
	.products-filter { flex-direction: column; }
	.filter-group-order { margin-left: 0; }	
	.k-help { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) { 
	:root {
	  --footer-height: 500px;
	}
	
	.hero h1 { font-size: 3em; }
	
	.gray-section { margin: var(--space-6) 0 var(--space-6) 0; padding: var(--space-6) 0 var(--space-6) 0; }
	
	.hero-visual { display: none !important; }
	.how-list { max-width: 100% !important; }
	.how-visual { display: block; width: 100%; max-width: 310px; height: auto; margin-bottom: var(--space-3); }
	
	.esim-modal { height: 90vh; }
	
	.main-body { padding: 0 0 var(--footer-height) 0; }
	.footer-in { height: var(--footer-height); }
	
	.grid-25, .grid-50 { grid-template-columns: repeat(1, 1fr); column-gap: 0; }
	
	.footer-links { flex-direction: column; row-gap: var(--space-3); column-gap: 0; }
	
	.s-space:not(:has(.checkbox-row)) { height: 0; margin: 0 0 0 0; }
	.modal-footer-wrapper, .cta-row { flex-direction: column-reverse; }
	
	.payment-wrapper { flex-direction: column; align-items: flex-start; }
	.payment-wrapper-info { grid-template-columns: repeat(1, 1fr); }
	
	.pin { width: 20px; height: 20px; }
}

@media (max-width: 560px) { 
	.method-info { flex-direction: column; align-items: flex-start; }	 
}

@media (max-width: 366px) { 
	.logo { display: none; }
	.head-cart { margin-left: auto; }
	
	.hero h1 { font-size: 2.5em; }
	.transparent-page h1 { font-size: 2em; }	 
}