 
.currency {
    font-size: 16px;      /* Simboli më i vogël se numri */
    font-weight: 800;   /* Extra Bold */
    margin-left: 2px;     /* Pak hapësirë nga numri */ 
  color: #ffffff; 
}
        :root {
            --primary-red: #e63946;
            --bg-pink: #fff0f3;
            --text-gray: #666;
            --border-color: #eee;
        }

    
        .container_esim {
            width: 100%;
            max-width: 400px;  
            border-radius: 20px;
        }

        /* Alert Box */
        .alert-box {
            background-color: #f0f7ff;
            border: 1px solid #d0e3ff;
            padding: 15px;
            border-radius: 12px;
            display: flex;
            gap: 10px;
            font-size: 13px;
            color: #444;
            margin-bottom: 15px;
        }

        /* Device Support Box */
        .support-box {
            border: 1px solid var(--border-color);
            padding: 12px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        /* Tabs */
        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .tab {
            padding: 8px 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            font-weight: bold;
            font-size: 14px;
        }
        .tab.active {
           background-color: #c4a066;
    color: #ffffff;
    border-color: #a48759;
        }

        /* Plan Cards */
        .plan-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom:30px;
        }

        .plan-card {
          border: 1px solid #2c2c2c;
            border-radius: 15px;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: 0.2s;
            position: relative;
			    background: #212121;
        }

        .plan-card.selected {
      border: 1px solid #ffffff;
        }

        .most-wanted {
            position: absolute;
            top: -12px;
            left: 0;
            right: 0;
     background: #ffffff;
    color: #000000;
            text-align: center;
            font-size: 12px;
            padding: 4px 0;
            border-radius: 10px 10px 0 0;
        }

        .plan-card.special {
            margin-top: 10px;
            border-top: none;
            border-radius: 0 0 15px 15px; 
        }

        .plan-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .radio-circle {
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .plan-card.selected .radio-circle {
          border: 2px solid #ffffff;
        }

        .plan-card.selected .radio-circle::after {
            content: "";
            width: 10px;
            height: 10px;
            background: #ffffff;
            border-radius: 50%;
        }

        .data-amount { font-weight: bold; font-size: 18px; }
        .validity { font-size: 11px; color: #b4b4b4; display: block; }

        .price-section { text-align: right; }
        .old-price { font-size: 13px; /* Më i vogël që të mos konkurrojë me të riun */ font-weight: 400; color: rgba(255, 255, 255, 0.4); /* Transparenca e bën të duket "i vjetër" */ text-decoration: line-through;  }
        .new-price { display: block; font-size: 18px; font-weight: 800; color: #ffffff; letter-spacing: -0.5px; }

        /* Button */
        .sticky-footer {
            position: fixed;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 360px;
        }

        .btn-pay {
                background-color: #ffffff !important;
    color: #000000;
            width: 100%;
            padding: 15px;
            border: none;
               border-radius: 9999px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
        }
 
	
	