 
:root {
    --ios-bg: rgba(28, 28, 30, 0.94);
    --ios-blue: #0A84FF;
}

.ios-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    opacity: 0;
    z-index: 9998;
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
}

.ios-bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0; width: 100%;
    background: var(--ios-bg);
    backdrop-filter: blur(25px) saturate(1.8);
    -webkit-backdrop-filter: blur(25px) saturate(1.8);
    border-radius: 20px 20px 0 0;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), bottom 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding-bottom: env(safe-area-inset-bottom);
    will-change: transform;
}

.ios-bottom-sheet.active {
    bottom: 0;
}

.ios-handle-container {
    width: 100%; height: 32px;
    display: flex; justify-content: center; align-items: center;
    cursor: grab;
}

.ios-handle {
    width: 36px; height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.ios-content { padding: 0 20px 30px 20px; color: white; }

.label-small {
    display: block; text-align: left;
    font-size: 12px; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Karta brenda Modalit */
.plan-card-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px;
}

.plan-info-row { display: flex; align-items: center; gap: 12px; }

.flag-wrapper {
    width: 32px; height: 32px; border-radius: 50%;
   display: flex; align-items: center; justify-content: center;
    overflow: hidden; 
}

.flag-wrapper img { width: 70%; height: 70%; object-fit: cover; border-radius: 50%; }

.plan-text { display: flex; flex-direction: column; text-align: left; }
.plan-name { font-weight: 700; font-size: 16px; }
.plan-gb { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 14px; }
.validity-text { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

.price-row { text-align: right; display: flex; flex-direction: column; }
.old-price { font-size: 12px; text-decoration: line-through; color: rgba(255,255,255,0.3); }
.new-price { font-size: 18px; font-weight: 800; }
.euro-symbol { font-size: 14px; margin-left: 1px; color: rgba(255,255,255,0.8); }

.ios-btn-confirm {
    width: 100%; 
	    background: white !important;
	color: black;
    border: none; padding: 16px; border-radius: 14px;
    font-weight: 700; font-size: 17px; margin-bottom: 12px;
}

.ios-btn-cancel {
    width: 100%; background: transparent; 
    border: none; padding: 10px;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #000; /* Ngjyra e rrotulluesit */
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gjendja e butonit gjatë ngarkimit */
.ios-btn-confirm.loading {
    opacity: 0.8;
    pointer-events: none; /* Ndalon klikimet e përsëritura */
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .max-md\:gap-\[12px\] {
        gap: 3px !important; 
        padding-left: 10px !important;
        padding-bottom: 3px !important; 
    }
}
 